Jenkins一鍵發(fā)布 ipa 到蒲公英

什么是 Jenkins

Jenkins是一個(gè)持續(xù)集成工具宽菜,它可以在設(shè)定的某個(gè)時(shí)間點(diǎn)(或者代碼有更新等情況)自動(dòng)去構(gòu)建安裝包愉老,同時(shí)可以將安裝包上傳到第三方平臺(tái)密任,比如:Bugly刁岸、蒲公英独郎,這樣測(cè)試人員可以通過微信液南、QQ掃一掃直接安裝(Bugly的鏈接可以直接在微信內(nèi)打開壳猜,這是我選擇它的原因)。

附上下載地址 :Jenkins

建議下載 <code>.war</code>文件 配合<code>Tomcat</code>環(huán)境使用.

直接下載了<code>.war</code>文件滑凉,這個(gè)文件是直接放在<code>Tomcat</code>下<code>webapps</code>目錄下.

優(yōu)點(diǎn):它的權(quán)限就是當(dāng)前用戶.

開始安裝Tomcat

附上下載地址 :Tomcat

把下載好的<code> Tomcat </code>文件夾 放到你想放的目錄

然后把 <code>.war</code> 文件放入 <code>Tomcat</code>文件夾下的 <code>webapps</code> 目錄下

運(yùn)行Jenkins

命令行進(jìn)入<code>Tomcat</code>安裝目錄.

<pre>
cd /Users/ooops/apache-tomcat-7.0.75/bin
</pre>
可能會(huì)報(bào) <code>-bash: /Users/ooops/apache-tomcat-7.0.75/bin/startup.sh: Permission denied</code>錯(cuò)誤,這是因?yàn)閷?duì)該文件沒有執(zhí)行權(quán)限造成的.

執(zhí)行如下命令:
<pre>
chmod +x *.sh
</pre>
然后執(zhí)行
<pre>
sh startup.sh
</pre>
打開瀏覽器輸入 localhost:8080 看到 <code>Tomcat</code>啟動(dòng)頁面,表示<code>Tomcat</code>安裝成功


<code>盜來的圖</code>

進(jìn)入<code>Tomcat</code>目錄下 <code>conf</code>打開 <code>tomcat-users.xml</code>文件,在文件根節(jié)點(diǎn)結(jié)束之前添加如下配置.


使用如下命令重啟Tomcat
<pre>
cd /Users/ooops/apache-tomcat-7.0.75/bin
sh shutdown.sh
sh startup.sh
</pre>
再次登錄<code>Tomcat</code>,選擇下圖<code>Jenkins</code>


輸入如下命令查看Jenkins初始密碼
<pre>
open /Users/ooops/.jenkins/secrets/initialAdminPassword
</pre>



粘貼初始密碼,點(diǎn)擊繼續(xù),等待片刻


選擇<code>Install suggested plugins </code>

推薦的插件安裝完畢,還有我們自己需要的插件安裝.
首先進(jìn)入插件管理器界面


然后在可選插件中搜索我們需要的插件,進(jìn)行安裝.


GIT 環(huán)境下我們需要安裝的插件有 三 個(gè).操作步驟參見上圖.

  • <code>Gitlab Hook Plugin </code> 因?yàn)槲覀冇玫氖荊itLab來管理源代碼蓖谢,Jenkins本身并沒有自帶GitLab插件
  • <code>Xcode</code> Xcode環(huán)境插件.
  • <code>Keychains and Provisioning Profiles Management</code> 鑰匙串和證書配置.

配置GIT

私鑰文件位置 家目錄下的 <code>.ssh</code> 文件夾下

配置<code>GIT</code> 私鑰




點(diǎn)擊OK完成GIT私鑰配置.

鑰匙串和證書配置

鑰匙串文件路徑 : <code> /Users/用戶名(your user name)/Library/Keychains/login.keychain</code>

上傳<code>鑰匙串 keychain </code>和 <code>證書描述文件 Provisioning Profile</code>
上傳之后的要是串和證書描述文件會(huì)被<code>Jenkins</code>保存在<code>/Users/改成你的(your user name)/.jenkins/kpp_upload</code>目錄下

配置對(duì)應(yīng)的鑰匙串中的<code>開發(fā)(調(diào)試)</code> <code>生產(chǎn)(發(fā)布)</code> 證書

首先打開鑰匙串,進(jìn)行如下操作.

其次 獲取證書的常用名稱


我們將證書的常用名稱點(diǎn)入 鑰匙串的配置中,具體配置參考下圖

上圖目錄配置有問題,改為/Users/改成你的(your user name)/.jenkins/kpp_upload.偷個(gè)懶 不補(bǔ)圖了.

點(diǎn)擊確定完成配置.

系統(tǒng)全局配置

Jenkins 主頁 -> 系統(tǒng)管理 -> 系統(tǒng)設(shè)置 -> 全局屬性 -> 勾選<code>Keychains and Provisioning Profiles Management</code> 填入上傳到 Jenkins 的證書和描述文件目錄
<code>/Users/ooops/.jenkins/kpp_upload</code>

下面開始構(gòu)建通用項(xiàng)目配置.

參數(shù)可根據(jù)自己的實(shí)際需求更改

點(diǎn)擊確定

General 參數(shù)

源碼管理 參數(shù)

構(gòu)建觸發(fā)器設(shè)置

這里是設(shè)置自動(dòng)化測(cè)試的地方。
涉及的內(nèi)容很多譬涡,
暫時(shí)我也沒有深入研究闪幽,這里暫時(shí)先不設(shè)置。
有自動(dòng)化測(cè)試需求的可以 研究研究這里的設(shè)置涡匀。

不過這里兩個(gè)配置還是需要是設(shè)置的

<code>Poll SCM (poll source code management)</code> 輪詢?cè)创a管理

需要設(shè)置源碼的路徑才能起到輪詢的效果盯腌。

一般設(shè)置為類似結(jié)果: 0/5 每5分鐘輪詢一次

<code>Build periodically</code> (定時(shí)構(gòu)建)

一般設(shè)置為類似: 00 20 * 每天 20點(diǎn)執(zhí)行定時(shí)構(gòu)建

格式如下 (具體可以參考后面的小問號(hào)??) 嘿嘿

分鐘(0-59) 小時(shí)(0-23) 日期(1-31) 月(1-12) 周幾(0-7,0和7都是周日)

設(shè)置之后文本輸入域下面會(huì)有你填寫格式的翻譯.

參數(shù)配置參考:

http://blog.csdn.net/xueyingqi/article/details/53216506

http://blog.csdn.net/yezicjj/article/details/52763700

構(gòu)建環(huán)境 參數(shù)

參考下圖設(shè)置

如果這里沒有可選擇的鑰匙串和描述文件,請(qǐng)參考 鑰匙串和證書配置 中關(guān)于鑰匙串的配置.

構(gòu)建 設(shè)置

<pre>

工程名

APP_NAME="你的項(xiàng)目名稱"

證書

CODE_SIGN_DISTRIBUTION="iPhone Developer: XXXXXXX"

CODE_SIGN_DISTRIBUTION="iPhone Distribution: XXXXXXXXXX"

info.plist路徑

project_infoplist_path="./${APP_NAME}/Info.plist"

取版本號(hào)

bundleShortVersion=$(/usr/libexec/PlistBuddy -c "print CFBundleShortVersionString" "${project_infoplist_path}")

取build值

bundleVersion=$(/usr/libexec/PlistBuddy -c "print CFBundleVersion" "${project_infoplist_path}")

DATE="$(date +%Y%m%d)"
IPANAME="${APP_NAME}V${bundleShortVersion}${DATE}.ipa"

IPANAME="${APP_NAME}.ipa"

要上傳的ipa文件路徑

IPA_PATH="$HOME/${IPANAME}"
echo ${IPA_PATH}
echo "${IPA_PATH}">> text.txt

下面2行是沒有Cocopods的用法

echo "=================clean================="
xcodebuild -target "${APP_NAME}" -configuration 'Release' clean

echo "+++++++++++++++++build+++++++++++++++++"
xcodebuild -target "${APP_NAME}" -sdk iphoneos -configuration 'Release' CODE_SIGN_IDENTITY="${CODE_SIGN_DISTRIBUTION}" SYMROOT='$(PWD)'

//下面2行是集成有Cocopods的用法

echo "=================clean================="

xcodebuild -workspace "${APP_NAME}.xcworkspace" -scheme "${APP_NAME}" -configuration 'Release' clean

echo "+++++++++++++++++build+++++++++++++++++"

xcodebuild -workspace "${APP_NAME}.xcworkspace" -scheme "${APP_NAME}" -sdk iphoneos -configuration 'Release' CODE_SIGN_IDENTITY="${CODE_SIGN_DISTRIBUTION}" SYMROOT='$(PWD)'

xcrun -sdk iphoneos PackageApplication "./Release-iphoneos/${APP_NAME}.app" -o ~/"${IPANAME}"

蒲公英上的User Key

uKey="9b0aa78a32a......4e1ca68bdbf"

蒲公英上的API Key

apiKey="ac75fcf38.....7b9f19f2e4b23"

要上傳的ipa文件路徑

IPA_PATH=$(cat text.txt)

rm -rf text.txt

執(zhí)行上傳至蒲公英的命令

echo "++++++++++++++upload+++++++++++++"
curl -F "file=@${IPA_PATH}" -F "uKey=${uKey}" -F "_api_key=${apiKey}" http://www.pgyer.com/apiv1/app/upload
</pre>

構(gòu)建項(xiàng)目

以下是一次成功構(gòu)建的輸出信息

<pre>
Started by user ooops
Building in workspace /Users/ooops/.jenkins/workspace/test

git rev-parse --is-inside-work-tree # timeout=10
Fetching changes from the remote Git repository //拉取GIT倉庫
git config remote.origin.url git@github.com:xxxxx/jenkinsTest.git # timeout=10
Fetching upstream changes from git@github.com:xxxxx/jenkinsTest.git
git --version # timeout=10
git fetch --tags --progress git@github.com:xxxxx/jenkinsTest.git +refs/heads/:refs/remotes/origin/
git rev-parse refs/remotes/origin/master^{commit} # timeout=10
git rev-parse refs/remotes/origin/origin/master^{commit} # timeout=10
Checking out Revision 1f023f0132273ddc4d3d98a8283e3a15bbe254aa (refs/remotes/origin/master)
git config core.sparsecheckout # timeout=10
git checkout -f 1f023f0132273ddc4d3d98a8283e3a15bbe254aa
git rev-list 1f023f0132273ddc4d3d98a8283e3a15bbe254aa # timeout=10
[test] $ /bin/sh -xe /Users/ooops/apache-tomcat-7.0.75/temp/hudson6997647762219224773.sh

  • APP_NAME=jenkinsTest
  • CODE_SIGN_DISTRIBUTION='iPhone Developer: xxxxx'
  • project_infoplist_path=./jenkinsTest/Info.plist
    ++ /usr/libexec/PlistBuddy -c 'print CFBundleShortVersionString' ./jenkinsTest/Info.plist
  • bundleShortVersion=1.0
    ++ /usr/libexec/PlistBuddy -c 'print CFBundleVersion' ./jenkinsTest/Info.plist
  • bundleVersion=1
    ++ date +%Y%m%d
  • DATE=20170312
  • IPANAME=jenkinsTest_V1.0_20170312.ipa
  • IPA_PATH=/Users/ooops/jenkinsTest_V1.0_20170312.ipa
  • echo /Users/ooops/jenkinsTest_V1.0_20170312.ipa
    /Users/ooops/jenkinsTest_V1.0_20170312.ipa
  • echo /Users/ooops/jenkinsTest_V1.0_20170312.ipa
  • echo =================clean=================
    =================clean=================
  • xcodebuild -target jenkinsTest -configuration Release clean
    2017-03-12 12:56:15.278 xcodebuild[12363:1935879] [MT] PluginLoading: Required plug-in compatibility UUID DAxxxD8-C509-4xB-8xx5-84xxxxxxx701 for plug-in at path '~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/VVDocumenter-Xcode.xcplugin' not present in DVTPlugInCompatibilityUUIDs
    2017-03-12 12:56:15.279 xcodebuild[12363:1935879] [MT] PluginLoading: Required plug-in compatibility UUID DAxxxD8-C509-4xB-8xx5-84xxxxxxx701 for plug-in at path '~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/HOStringSense.xcplugin' not present in DVTPlugInCompatibilityUUIDs
    2017-03-12 12:56:15.280 xcodebuild[12363:1935879] [MT] PluginLoading: Required plug-in compatibility UUID DAxxxD8-C509-4xB-8xx5-84xxxxxxx701 for plug-in at path '~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/ESJsonFormat.xcplugin' not present in DVTPlugInCompatibilityUUIDs
    2017-03-12 12:56:15.280 xcodebuild[12363:1935879] [MT] PluginLoading: Required plug-in compatibility UUID DAxxxD8-C509-4xB-8xx5-84xxxxxxx701 for plug-in at path '~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/Auto-Importer.xcplugin' not present in DVTPlugInCompatibilityUUIDs
    === CLEAN TARGET jenkinsTest OF PROJECT jenkinsTest WITH CONFIGURATION Release ===

Check dependencies

Create product structure
/bin/mkdir -p /Users/ooops/.jenkins/workspace/test/build/Release-iphoneos/jenkinsTest.app

Clean.Remove clean build/jenkinsTest.build/Release-iphoneos/jenkinsTest.build
builtin-rm -rf /Users/ooops/.jenkins/workspace/test/build/jenkinsTest.build/Release-iphoneos/jenkinsTest.build

Clean.Remove clean build/Release-iphoneos/jenkinsTest.app
builtin-rm -rf /Users/ooops/.jenkins/workspace/test/build/Release-iphoneos/jenkinsTest.app

Clean.Remove clean build/Release-iphoneos/jenkinsTest.app.dSYM
builtin-rm -rf /Users/ooops/.jenkins/workspace/test/build/Release-iphoneos/jenkinsTest.app.dSYM

** CLEAN SUCCEEDED **

  • echo +++++++++++++++++build+++++++++++++++++
    +++++++++++++++++build+++++++++++++++++
  • xcodebuild -target jenkinsTest -sdk iphoneos -configuration Release 'CODE_SIGN_IDENTITY=iPhone Developer: xxxxxxxxxxxxxxxx' 'SYMROOT=$(PWD)'
    2017-03-12 12:56:16.118 xcodebuild[12376:1936105] [MT] PluginLoading: Required plug-in compatibility UUID DAxxxx8-C509-4xxB-8B55-84AxxxxxE701 for plug-in at path '~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/VVDocumenter-Xcode.xcplugin' not present in DVTPlugInCompatibilityUUIDs
    2017-03-12 12:56:16.119 xcodebuild[12376:1936105] [MT] PluginLoading: Required plug-in compatibility UUID DAxxxxD8-C509-4D8B-8xxxx-84Axxxx01 for plug-in at path '~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/HOStringSense.xcplugin' not present in DVTPlugInCompatibilityUUIDs
    2017-03-12 12:56:16.119 xcodebuild[12376:1936105] [MT] PluginLoading: Required plug-in compatibility UUID DA4xxx8-C509-4Dxx-8xx5-84AxxxE701 for plug-in at path '~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/ESJsonFormat.xcplugin' not present in DVTPlugInCompatibilityUUIDs
    2017-03-12 12:56:16.120 xcodebuild[12376:1936105] [MT] PluginLoading: Required plug-in compatibility UUID Dxxxx8-C509-xx-8B55-84xxxxxAE701 for plug-in at path '~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/Auto-Importer.xcplugin' not present in DVTPlugInCompatibilityUUIDs
    Build settings from command line:
    CODE_SIGN_IDENTITY = iPhone Developer: qiang zhang (36XGYU49EQ)
    SDKROOT = iphoneos10.1
    SYMROOT = $(PWD)

=== BUILD TARGET jenkinsTest OF PROJECT jenkinsTest WITH CONFIGURATION Release ===

Check dependencies

Validate Release-iphoneos/jenkinsTest.app
cd /Users/ooops/.jenkins/workspace/test
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/ooops/.rvm/gems/ruby-2.2.2/bin:/Users/ooops/.rvm/gems/ruby-2.2.2@global/bin:/Users/ooops/.rvm/rubies/ruby-2.2.2/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Users/ooops/.rvm/bin:/Users/ooops/.rvm/bin"
export PRODUCT_TYPE=com.apple.product-type.application
builtin-validationUtility /Users/ooops/.jenkins/workspace/test/Release-iphoneos/jenkinsTest.app -validate-for-store

** BUILD SUCCEEDED **

  • xcrun -sdk iphoneos PackageApplication ./Release-iphoneos/jenkinsTest.app -o /Users/ooops/jenkinsTest_V1.0_20170312.ipa

warning: PackageApplication is deprecated, use xcodebuild -exportArchive instead.

//這里是上傳蒲公英的配置.

  • uKey=9b0aa78a32........64e1ca68bdbf

  • apiKey=ac75fcf3..........a47b9f19f2e4b23
    ++ cat text.txt

  • IPA_PATH=/Users/ooops/jenkinsTest_V1.0_20170312.ipa

  • rm -rf text.txt

  • echo ++++++++++++++upload+++++++++++++
    ++++++++++++++upload+++++++++++++

  • curl -F file=@/Users/ooops/jenkinsTest_V1.0_20170312.ipa -F uKey=9b0aa78a32...af26..4e1ca68bdbf -F _api_key=ac75fcf38f2.........19f2e4b23 http://www.pgyer.com/apiv1/app/upload
    % Total % Received % Xferd Average Speed Time Time Time Current
    Dload Upload Total Spent Left Speed

    0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
    0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
    100 32843 0 0 100 32843 0 21213 0:00:01 0:00:01 --:--:-- 21202
    100 32843 0 0 100 32843 0 12862 0:00:02 0:00:02 --:--:-- 12859
    100 33438 100 595 100 32843 220 12149 0:00:02 0:00:02 --:--:-- 12146
    {"code":0,"message":"","data":{"appKey":"dd580f5...........0305ac671","userKey":"9b0aa78a.........e1ca68bdbf","appType":"1","appIsLastest":"1","appFileSize":"32368","appName":"jenkinsTest","appVersion":"1.0","appVersionNo":"1","appBuildVersion":"2","appIdentifier":"com.ooops.pull","appIcon":"","appDescription":"","appUpdateDescription":"","appScreenshots":"","appShortcutUrl":"nZwg","appCreated":"2017-03-12 12:56:18","appUpdated":"2017-03-12 12:56:18","appQRCodeURL":"http://static.pgyer.com/app/qrcodeHistory/ea895709d0e57a4a8e4c8f57811838b2ce985322a94f9443e64a0937c6d29e30"}}Finished: SUCCESS
    </pre>

上傳到蒲公英

END

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市陨瘩,隨后出現(xiàn)的幾起案子腕够,更是在濱河造成了極大的恐慌,老刑警劉巖舌劳,帶你破解...
    沈念sama閱讀 217,509評(píng)論 6 504
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件帚湘,死亡現(xiàn)場離奇詭異,居然都是意外死亡甚淡,警方通過查閱死者的電腦和手機(jī)大诸,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 92,806評(píng)論 3 394
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來贯卦,“玉大人资柔,你說我怎么就攤上這事∧旄睿” “怎么了贿堰?”我有些...
    開封第一講書人閱讀 163,875評(píng)論 0 354
  • 文/不壞的土叔 我叫張陵,是天一觀的道長啡彬。 經(jīng)常有香客問我羹与,道長故硅,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 58,441評(píng)論 1 293
  • 正文 為了忘掉前任纵搁,我火速辦了婚禮契吉,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘诡渴。我一直安慰自己,他們只是感情好菲语,可當(dāng)我...
    茶點(diǎn)故事閱讀 67,488評(píng)論 6 392
  • 文/花漫 我一把揭開白布妄辩。 她就那樣靜靜地躺著,像睡著了一般山上。 火紅的嫁衣襯著肌膚如雪眼耀。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 51,365評(píng)論 1 302
  • 那天佩憾,我揣著相機(jī)與錄音哮伟,去河邊找鬼。 笑死妄帘,一個(gè)胖子當(dāng)著我的面吹牛楞黄,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播抡驼,決...
    沈念sama閱讀 40,190評(píng)論 3 418
  • 文/蒼蘭香墨 我猛地睜開眼鬼廓,長吁一口氣:“原來是場噩夢(mèng)啊……” “哼!你這毒婦竟也來了致盟?” 一聲冷哼從身側(cè)響起碎税,我...
    開封第一講書人閱讀 39,062評(píng)論 0 276
  • 序言:老撾萬榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎馏锡,沒想到半個(gè)月后雷蹂,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 45,500評(píng)論 1 314
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡杯道,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 37,706評(píng)論 3 335
  • 正文 我和宋清朗相戀三年匪煌,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片党巾。...
    茶點(diǎn)故事閱讀 39,834評(píng)論 1 347
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡虐杯,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出昧港,到底是詐尸還是另有隱情擎椰,我是刑警寧澤,帶...
    沈念sama閱讀 35,559評(píng)論 5 345
  • 正文 年R本政府宣布创肥,位于F島的核電站达舒,受9級(jí)特大地震影響值朋,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜巩搏,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 41,167評(píng)論 3 328
  • 文/蒙蒙 一昨登、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧贯底,春花似錦丰辣、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 31,779評(píng)論 0 22
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至胚想,卻和暖如春琐凭,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背浊服。 一陣腳步聲響...
    開封第一講書人閱讀 32,912評(píng)論 1 269
  • 我被黑心中介騙來泰國打工统屈, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人牙躺。 一個(gè)月前我還...
    沈念sama閱讀 47,958評(píng)論 2 370
  • 正文 我出身青樓愁憔,卻偏偏與公主長得像,于是被迫代替她去往敵國和親孽拷。 傳聞我的和親對(duì)象是個(gè)殘疾皇子惩淳,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 44,779評(píng)論 2 354

推薦閱讀更多精彩內(nèi)容