ChapterController.php 70 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818
  1. <?php
  2. namespace App\Http\Controllers\Wap\Book;
  3. use App\Console\Commands\YqBook;
  4. use App\Modules\Book\Models\DataAnalysisBookConfig;
  5. use App\Modules\Book\Services\BookService;
  6. use App\Modules\Book\Services\ChapterCommentsService;
  7. use App\Modules\Book\Services\ChapterShareWechatConfigService;
  8. use App\Modules\Statistic\Models\DataAnalysisSelectUser;
  9. use App\Modules\Statistic\Services\AdVisitStatService;
  10. use App\Modules\Statistic\Services\DataAnalysisChapterService;
  11. use App\Modules\Statistic\Services\DataAnalysisSelectUserService;
  12. use App\Modules\Statistic\Services\WapVisitStatService;
  13. use App\Modules\Subscribe\Services\OrderService;
  14. use App\Modules\User\Services\ReadRecordStatsService;
  15. use App\Modules\YunQi\Services\BookUserService;
  16. use Illuminate\Http\Request;
  17. use App\Http\Controllers\Wap\BaseController;
  18. use Cookie;
  19. use Redis;
  20. use App\Modules\Book\Services\ChapterService;
  21. use App\Modules\User\Services\ReadRecordService;
  22. use App\Http\Controllers\Wap\Book\Transformers\ChapterTransformer;
  23. use App\Modules\Book\Services\BookConfigService;
  24. use App\Http\Controllers\Wap\Book\Transformers\ChapterListTransformer;
  25. use App\Modules\Subscribe\Services\BookOrderService;
  26. use App\Modules\Subscribe\Services\ChapterOrderService;
  27. use App\Modules\Subscribe\Services\YearOrderService;
  28. use App\Modules\OfficialAccount\Services\ForceSubscribeService;
  29. use App\Modules\Subscribe\Services\ChapterReminderService;
  30. use App\Modules\OfficialAccount\Services\OfficialAccountService;
  31. use Hashids;
  32. use GuzzleHttp\Client;
  33. use Log;
  34. use DB;
  35. use App\Modules\User\Services\UserSignService;
  36. use App\Modules\SendOrder\Services\SendOrderService;
  37. use App\Modules\User\Services\UserDeepReadTagService;
  38. use App\Modules\Book\Services\BookSubscribleChapterService;
  39. use App\Modules\Channel\Services\ChannelSubscribeSettingService;
  40. class ChapterController extends BaseController
  41. {
  42. /**
  43. * @apiDefine Chapter 章节
  44. */
  45. //用户是否强关
  46. private $is_had_subscribe = false;
  47. //章节是否需要强关
  48. private $is_need_subscribe;
  49. //用户信息
  50. private $user;
  51. //图书信息
  52. private $book_info;
  53. //cid
  54. private $cid;
  55. //加密的bid
  56. private $en_bid;
  57. //章节信息
  58. private $chapter;
  59. //强关时间
  60. private $force_subscribe_time = null;
  61. /**
  62. * @apiVersion 1.0.0
  63. * @apiDescription 章节列表不分页
  64. * @api {get} books/{bid}/allcatalog 章节列表不分页
  65. * @apiGroup Chapter
  66. * @apiName getCatalog
  67. * @apiSuccess {int} code 状态码
  68. * @apiSuccess {String} msg 信息
  69. * @apiSuccess {object} data 结果集
  70. * @apiSuccess {Array} data.list 分页结果集
  71. * @apiSuccess {Int} data.list.bid bid
  72. * @apiSuccess {Int} data.list.chapter_id 章节id
  73. * @apiSuccess {String} data.list.chapter_name 章节名称
  74. * @apiSuccess {Int} data.list.chapter_sequence 序号
  75. * @apiSuccess {Int} data.list.chapter_is_vip 是否vip
  76. * @apiSuccess {Int} data.list.chapter_size 章节大小
  77. * @apiSuccess {Int} data.list.prev_cid 上一章节id
  78. * @apiSuccess {Int} data.list.next_cid 下一章节
  79. * @apiSuccess {String} data.list.recent_update_at 更新时间
  80. * @apiSuccess {String} data.list.is_need_subscirbe 是否强制关注
  81. * @apiSuccess {String} data.list.is_show_price 是否显示价格
  82. * @apiSuccess {String} data.list.price 价格
  83. * @apiSuccess {object} data.meta 分页信息
  84. * @apiSuccess {Int} data.meta.total 总条数
  85. * @apiSuccess {Int} data.meta.per_page 每页条数
  86. * @apiSuccess {Int} data.meta.current_page 当前页
  87. * @apiSuccess {Int} data.meta.last_page 最后页
  88. * @apiSuccess {String} data.meta.next_page_url 下一页
  89. * @apiSuccess {String} data.meta.prev_page_url 上一页
  90. * @apiSuccessExample {json} Success-Response:
  91. * HTTP/1.1 200 OK
  92. * {
  93. * code: 0,
  94. * msg: "",
  95. * data:
  96. * [
  97. * {
  98. * bid: 5,
  99. * chapter_id: 5,
  100. * chapter_name: "第1240章 不是我",
  101. * chapter_sequence: 1239,
  102. * chapter_is_vip: 1,
  103. * chapter_size: 2422,
  104. * prev_cid: 0,
  105. * next_cid: 0,
  106. * recent_update_at: 2017-11-20 15:01:56,
  107. * is_need_subscirbe: 1,
  108. * },
  109. * {
  110. * bid: 5,
  111. * chapter_id: 5,
  112. * chapter_name: "第1240章 不是我",
  113. * chapter_sequence: 1239,
  114. * chapter_is_vip: 1,
  115. * chapter_size: 2422,
  116. * prev_cid: 0,
  117. * next_cid: 0,
  118. * recent_update_at: 2017-11-20 15:01:56,
  119. * is_need_subscirbe: 1,
  120. * },
  121. * ]
  122. * }
  123. */
  124. public function getCatalog(Request $request, $t, $domain, $bid)
  125. {
  126. if (!$this->checkUid()) {
  127. return response()->error('WAP_NOT_LOGIN');
  128. }
  129. $this->en_bid = $bid;
  130. $bid = Hashids::decode($bid)[0];
  131. $lists = ChapterService::getChapterLists($bid);
  132. $book_info = BookConfigService::getBookById($bid);
  133. if (!$book_info) {
  134. return response()->error('PARAM_ERROR');
  135. }
  136. $this->book_info = $book_info;
  137. $is_show_price = $this->showChapterPrice($bid, $book_info->charge_type);
  138. foreach ($lists as $v) {
  139. $v->is_show_price = $is_show_price;
  140. $v->price = '';
  141. if ($is_show_price) {
  142. $v->price = $this->getPrice($book_info, $v);
  143. }
  144. }
  145. return response()->collection(new ChapterListTransformer, $lists);
  146. }
  147. /**
  148. * @apiVersion 1.0.0
  149. * @apiDescription 章节列表分页
  150. * @api {get} books/{bid}/catalog 章节列表分页
  151. * @apiGroup Chapter
  152. * @apiName getCatalogPerPage
  153. * @apiParam {Int} page_size 分页大小(默认15)
  154. * @apiParam {Int} page 页码(默认1)
  155. * @apiSuccess {int} code 状态码
  156. * @apiSuccess {String} msg 信息
  157. * @apiSuccess {object} data 结果集
  158. * @apiSuccess {Array} data.list 分页结果集
  159. * @apiSuccess {Int} data.list.bid bid
  160. * @apiSuccess {Int} data.list.chapter_id 章节id
  161. * @apiSuccess {String} data.list.chapter_name 章节名称
  162. * @apiSuccess {Int} data.list.chapter_sequence 序号
  163. * @apiSuccess {Int} data.list.chapter_is_vip 是否vip
  164. * @apiSuccess {Int} data.list.chapter_size 章节大小
  165. * @apiSuccess {Int} data.list.prev_cid 上一章节id
  166. * @apiSuccess {Int} data.list.next_cid 下一章节
  167. * @apiSuccess {String} data.list.recent_update_at 更新时间
  168. * @apiSuccess {String} data.list.is_need_subscirbe 是否强制关注
  169. * @apiSuccess {String} data.list.is_show_price 是否显示价格
  170. * @apiSuccess {String} data.list.price 价格
  171. * @apiSuccess {object} data.meta 分页信息
  172. * @apiSuccess {Int} data.meta.total 总条数
  173. * @apiSuccess {Int} data.meta.per_page 每页条数
  174. * @apiSuccess {Int} data.meta.current_page 当前页
  175. * @apiSuccess {Int} data.meta.last_page 最后页
  176. * @apiSuccess {String} data.meta.next_page_url 下一页
  177. * @apiSuccess {String} data.meta.prev_page_url 上一页
  178. * @apiSuccessExample {json} Success-Response:
  179. * HTTP/1.1 200 OK
  180. * {
  181. * code: 0,
  182. * msg: "",
  183. * data:
  184. * list:[
  185. * {
  186. * bid: 5,
  187. * chapter_id: 5,
  188. * chapter_name: "第1240章 不是我",
  189. * chapter_sequence: 1239,
  190. * chapter_is_vip: 1,
  191. * chapter_size: 2422,
  192. * prev_cid: 0,
  193. * next_cid: 0,
  194. * recent_update_at: 2017-11-20 15:01:56,
  195. * is_need_subscirbe: 1,
  196. * },
  197. * {
  198. * bid: 5,
  199. * chapter_id: 5,
  200. * chapter_name: "第1240章 不是我",
  201. * chapter_sequence: 1239,
  202. * chapter_is_vip: 1,
  203. * chapter_size: 2422,
  204. * prev_cid: 0,
  205. * next_cid: 0,
  206. * recent_update_at: 2017-11-20 15:01:56,
  207. * is_need_subscirbe: 1,
  208. * },
  209. * ]
  210. * meta:{
  211. * total: 1253,
  212. * per_page: 15,
  213. * current_page: 1,
  214. * last_page: 84,
  215. * next_page_url: "http://myapi.cn/api/books/1/chapter?page=2",
  216. * prev_page_url: ""
  217. * }
  218. * }
  219. */
  220. public function getCatalogPerPage(Request $request, $t, $domain, $bid)
  221. {
  222. if (!$this->checkUid()) {
  223. return response()->error('WAP_NOT_LOGIN');
  224. }
  225. $this->en_bid = $bid;
  226. $bid_array = Hashids::decode($bid);
  227. if (isset($bid_array[0])) {
  228. $bid = $bid_array[0];
  229. } else {
  230. return response()->error('PARAM_ERROR');
  231. }
  232. $book_info = BookConfigService::getBookById($bid);
  233. if (!$book_info) {
  234. return response()->error('PARAM_ERROR');
  235. }
  236. $this->book_info = $book_info;
  237. $page_size = $request->input('page_size', 15);
  238. if($page_size>=100) $page_size=100;
  239. $res = ChapterService::getChapterListsPage($bid, $page_size);
  240. $is_show_price = $this->showChapterPrice($bid, $book_info->charge_type);
  241. foreach ($res as $v) {
  242. $v->is_show_price = $is_show_price;
  243. $v->price = '';
  244. if ($is_show_price) {
  245. $v->price = $this->getPrice($book_info, $v);
  246. }
  247. }
  248. return response()->pagination(new ChapterListTransformer, $res);
  249. }
  250. /**
  251. * @apiVersion 1.0.0
  252. * @apiDescription 章节内容
  253. * @api {get} books/{bid}/chapters/{chapter_id} 章节内容
  254. * @apiGroup Chapter
  255. * @apiName index
  256. * @apiSuccess {int} code 状态码
  257. * @apiSuccess {String} msg 信息
  258. * @apiSuccess {object} data 结果集
  259. * @apiSuccess {Int} data.chapter_id 章节id
  260. * @apiSuccess {String} data.chapter_name 章节名称
  261. * @apiSuccess {Int} data.chapter_sequence 序号
  262. * @apiSuccess {Int} data.chapter_is_vip 是否vip
  263. * @apiSuccess {Int} data.chapter_size 章节大小
  264. * @apiSuccess {Int} data.prev_cid 上一章节id
  265. * @apiSuccess {Int} data.next_cid 下一章节
  266. * @apiSuccess {String} data.recent_update_at 更新时间
  267. * @apiSuccess {String} data.chapter_content 章节内容
  268. * @apiSuccess {Int} data.is_need_subscirbe 是否强制关注(删除)
  269. * @apiSuccess {Int} data.is_show_subscribe_link 是否显示底部强关链接
  270. * @apiSuccessExample {json} Success-Response:
  271. * HTTP/1.1 200 OK
  272. * {
  273. * code: 0,
  274. * msg: "",
  275. * data: {
  276. * chapter_id: 5,
  277. * chapter_name: "第1240章 不是我",
  278. * chapter_sequence: 1239,
  279. * chapter_is_vip: 1,
  280. * chapter_size: 2422,
  281. * prev_cid: 0,
  282. * next_cid: 0,
  283. * recent_update_at: 2017-11-20 15:01:56,
  284. * chapter_content: "叶妩被司行霈的阴阳怪气一吓,思路偏得太远了。 她张口结舌,忘记了自己要说什么。",
  285. * }
  286. * }
  287. */
  288. public function index(Request $request, $t, $domain, $bid, $cid)
  289. {
  290. $special_user_log = env('SPECIAL_USER_LOG');
  291. //注意:内部约定用 有此参数不需要强关
  292. $inter_not_need_sub = $request->has('inter_not_need_sub') ? true : false;
  293. $ad_status = $request->get('ad_status');
  294. //$ad_status = 0;
  295. $has_force_show_qrcode_cookie = Cookie::get('force_show_qrcode');
  296. Cookie::queue('force_show_qrcode', 1, -1);
  297. if (!$this->checkUid()) {
  298. myLog('special')->info('chapter index controller---$this->checkUid() fail-------');
  299. return response()->error('WAP_NOT_LOGIN');
  300. }
  301. if($special_user_log && $special_user_log == $this->uid){
  302. $my_log = myLog('special');
  303. $my_log->info('in chapters--------------------------');
  304. $my_log->info('param is');
  305. $my_log->info($request->all());
  306. $my_log->info('$t is: '.$t);
  307. $my_log->info('$domain is: '.$domain);
  308. $my_log->info('$bid is: '.$bid);
  309. $my_log->info('$cid is: '.$cid);
  310. $my_log->info('$uri is: '. $request->path());
  311. }
  312. $this->en_bid = $bid;
  313. $bid = explode(',',$bid)[0];
  314. $bid = Hashids::decode($bid)[0];
  315. if($special_user_log && $special_user_log == $this->uid){
  316. myLog('special')->info('decode bid is: '.$bid);
  317. }
  318. //获取图书信息
  319. $book_info = BookConfigService::getBookById($bid);
  320. if($special_user_log && $special_user_log == $this->uid){
  321. $my_log = myLog('special');
  322. $my_log->info('book_info is ');
  323. $my_log->info($book_info);
  324. }
  325. //是否开启全站按章模式
  326. $global_charge_by_chapter_channels = explode(',',env('GLOBAL_CHARGE_BY_CHAPTER_CHANNEL'));
  327. if(in_array($this->distribution_channel_id,$global_charge_by_chapter_channels))
  328. {
  329. $book_info->charge_type = 'CHAPTER';
  330. }
  331. if (empty($book_info)) return response()->error('WAP_SYS_ERROR');
  332. if($special_user_log && $special_user_log == $this->uid){
  333. $my_log = myLog('special');
  334. $my_log->info('book info ok--------------------------');
  335. }
  336. $this->book_info = $book_info;
  337. $this->cid = $cid;
  338. //下架图书不能看
  339. if ($this->isOffShelf()) {
  340. return response()->error('WAP_OFF_SHELF');
  341. }
  342. if($special_user_log && $special_user_log == $this->uid){
  343. $my_log = myLog('special');
  344. $my_log->info('on shelf ok--------------------------');
  345. }
  346. //获取章节信息
  347. $chapter = ChapterService::getChapterNameById($cid, $bid);
  348. $this->chapter = $chapter;
  349. if($special_user_log && $special_user_log == $this->uid){
  350. $my_log = myLog('special');
  351. $my_log->info('chapters-info--is-----------------------');
  352. $my_log->info($chapter);
  353. }
  354. //章节被删除
  355. if (($is_delete = $this->chapterNotExists())) {
  356. if($special_user_log && $special_user_log == $this->uid){
  357. $my_log = myLog('special');
  358. $my_log->info('chapters-----delete---------------------');
  359. }
  360. return response()->error('WAP_DOMAIN_NOT_MATCH', [
  361. 'url' => $is_delete
  362. ]);
  363. }
  364. if($special_user_log && $special_user_log == $this->uid){
  365. $my_log = myLog('special');
  366. $my_log->info('chapters-----ok---------------------');
  367. }
  368. //获取强关章节数
  369. $subscribe_seq = $this->getSubscribeChapterNum($book_info);
  370. //章节是否需要强关 TRUE:不需要,false:需要
  371. $force_subscribe = $subscribe_seq > $chapter->sequence;
  372. $this->is_need_subscribe = !$force_subscribe;
  373. //图书域名,book_configs表的promotion_domain 要跟当前的主机名匹配 在强关章节后3章
  374. if ($chapter->sequence > $subscribe_seq + 3 && $this->isVisitDomainEqualBookDomain($domain)) {
  375. if($special_user_log && $special_user_log == $this->uid){
  376. $my_log = myLog('special');
  377. $my_log->info('book domain not match------------------------');
  378. }
  379. return response()->error('WAP_DOMAIN_NOT_MATCH', [
  380. 'url' => $this->getCorrespondBookUrl()
  381. ]);
  382. }
  383. if($special_user_log && $special_user_log == $this->uid){
  384. $my_log = myLog('special');
  385. $my_log->info('book domain jump--------------------------');
  386. }
  387. $user_info = $this->_user_info;
  388. $this->user = $user_info;
  389. //用户是否强关
  390. $this->is_had_subscribe = $is_had_subscribe = $inter_not_need_sub ? true : $this->getSubscribe();
  391. //阅读记录
  392. ReadRecordService::addReadRecord(['uid' => $this->uid, 'bid' => $bid, 'book_name' => $book_info->book_name,
  393. 'cid' => $cid, 'chapter_name' => $chapter->name]);
  394. //判断当前是否有强制显示服务号信息的cookie、已经关注 跳转到服务号信息引导页
  395. if($has_force_show_qrcode_cookie && $is_had_subscribe)
  396. {
  397. if($special_user_log && $special_user_log == $this->uid){
  398. $my_log = myLog('special');
  399. $my_log->info('do not have force show qrcode cookie-------------------------');
  400. }
  401. $force_read_url = '/subscribe/getFromUser';//服务号信息引导页
  402. $force_read_data = ['src' => $force_read_url];
  403. return response()->error('WAP_NOT_SUBSCRIBE', $force_read_data);
  404. }
  405. if($special_user_log && $special_user_log == $this->uid){
  406. $my_log = myLog('special');
  407. $my_log->info('has force show qrcode cookie-ok-------------------------');
  408. }
  409. if ($force_subscribe || $chapter->is_vip == 0) {
  410. //vip前一张和枪管前一张的访问统计
  411. $this->beforeForceSubAndBeforeVipUvAndPv($book_info, $subscribe_seq, $chapter);
  412. }
  413. //不用关注且不是vip章节
  414. if ($force_subscribe && $chapter->is_vip == 0) {
  415. //获取公共号
  416. $officialAccount = $this->getOfficialAccount();
  417. $this->chapter->is_show_subscribe_link = 0;
  418. //非强关,但是设置了弱关,阅读页底部显示强关链接
  419. if ($officialAccount && isset($officialAccount->appid) && !empty($officialAccount->appid)) {
  420. $sub_type = $this->getSubscribeType($officialAccount->appid, $bid);
  421. if (in_array(2, $sub_type['type']) && !$is_had_subscribe) {
  422. $this->chapter->is_show_subscribe_link = 1;
  423. }
  424. }
  425. if($special_user_log && $special_user_log == $this->uid){
  426. $my_log = myLog('special');
  427. $my_log->info('do not force subscribe-and is not vip-------------------------');
  428. }
  429. $this->getChapter();
  430. return response()->item(new ChapterTransformer, $this->chapter);
  431. }
  432. if($special_user_log && $special_user_log == $this->uid){
  433. $my_log = myLog('special');
  434. $my_log->info('11111111111111111111111111111111111111111');
  435. }
  436. //需要强制关注 不是vip章节 已经关注了
  437. if (!$force_subscribe && $chapter->is_vip == 0 && $is_had_subscribe) {
  438. $this->getChapter();
  439. return response()->item(new ChapterTransformer, $this->chapter);
  440. }
  441. if($special_user_log && $special_user_log == $this->uid){
  442. $my_log = myLog('special');
  443. $my_log->info('222222222222222222222222222222222222222');
  444. }
  445. //需要强制关注 没关注
  446. if ((!$force_subscribe) && !$is_had_subscribe) {
  447. $force_data = $this->forceSubscribe();
  448. if ($force_data) {
  449. $this->subscribeStats();
  450. if($special_user_log && $special_user_log == $this->uid){
  451. $my_log = myLog('special');
  452. $my_log->info('need subscribe-------------------------');
  453. }
  454. return response()->error($force_data['error_type'], $force_data['data']);
  455. }
  456. //取不到公众号则不用强关
  457. if ($chapter->is_vip == 0) {
  458. $this->getChapter();
  459. if($special_user_log && $special_user_log == $this->uid){
  460. $my_log = myLog('special');
  461. $my_log->info('official fail--------------------------');
  462. }
  463. return response()->item(new ChapterTransformer, $this->chapter);
  464. }
  465. }
  466. if($special_user_log && $special_user_log == $this->uid){
  467. $my_log = myLog('special');
  468. $my_log->info('33333333333333333333333333333333333333333');
  469. }
  470. //已经付费
  471. if ($this->getOrderRecord($bid, $cid)) {
  472. $this->getChapter();
  473. if($special_user_log && $special_user_log == $this->uid){
  474. $my_log = myLog('special');
  475. $my_log->info('had order order record--------------------------');
  476. }
  477. return response()->item(new ChapterTransformer, $this->chapter);
  478. }
  479. if($special_user_log && $special_user_log == $this->uid){
  480. $my_log = myLog('special');
  481. $my_log->info('4444444444444444444444444444444444444444444');
  482. }
  483. //获取价格
  484. $fee = $this->getPrice($book_info, $chapter);
  485. //广告
  486. if($this->isUserInAdSample() && $ad_status && $ad_status == 1 && $user_info->balance < $fee){
  487. $this->getChapter();
  488. if($special_user_log && $special_user_log == $this->uid){
  489. $my_log = myLog('special');
  490. $my_log->info('ad-----in--------------------');
  491. }
  492. //广告解锁2张
  493. if($this->chapter->next_cid){
  494. $next_chapter = ChapterService::getChapterNameById($this->chapter->next_cid, $bid);
  495. if($next_chapter){
  496. $next_chapter_name = $next_chapter->name;
  497. $this->bookOrderOrChapterOrder($book_info, $this->chapter->next_cid, 0, $next_chapter_name, 1);
  498. AdVisitStatService::create($this->uid,$this->book_info->bid,$this->chapter->next_cid,'UNLOCK_2');
  499. }
  500. }
  501. $this->chapter->is_show_ad = 0;
  502. $this->bookOrderOrChapterOrder($book_info, $cid, 0, $chapter->name, 1);
  503. return response()->item(new ChapterTransformer, $this->chapter);
  504. }
  505. if($special_user_log && $special_user_log == $this->uid){
  506. $my_log = myLog('special');
  507. $my_log->info('5555555555555555555555555555555555');
  508. }
  509. //以上都是不用付费的情况******************************************************
  510. //未付费
  511. //返回的价格信息
  512. $data = [
  513. 'book_id' => $this->en_bid,
  514. 'book_name' => $book_info->book_name,
  515. 'chapter_name' => $chapter->name,
  516. 'chapter_id' => $cid,
  517. 'pay_type' => $book_info->charge_type,
  518. 'fee' => $fee,
  519. 'user_balance' => $user_info->balance,
  520. 'product_id' => $book_info->product_id,
  521. 'uid' => $this->uid,
  522. 'distribution_channel_id' => $this->distribution_channel_id,
  523. 'is_discount' => 0,
  524. 'discount_fee' => '',
  525. 'discount' => ''
  526. ];
  527. if($special_user_log && $special_user_log == $this->uid){
  528. $my_log = myLog('special');
  529. $my_log->info('data is:');
  530. $my_log->info($data);
  531. }
  532. //余额不足 弹窗提醒
  533. if ($user_info['balance'] < $fee) {
  534. if($special_user_log && $special_user_log == $this->uid){
  535. $my_log = myLog('special');
  536. $my_log->info('balance is lack');
  537. $my_log->info('user balance is: '.$user_info['balance']);
  538. $my_log->info('fee is: '.$fee);
  539. }
  540. $this->smartPushTestBookPayPageUv($bid);
  541. //$this->sendOrderPayPageUv($bid);
  542. //除了单本订购 其他的都不提醒,直接跳转到充值页面
  543. if ($book_info->charge_type == 'CHAPTER') {
  544. if($special_user_log && $special_user_log == $this->uid){
  545. $my_log = myLog('special');
  546. $my_log->info('chapter order balance lack');
  547. }
  548. return response()->error('WAP_CHAPTER_SECOND_BALANCE_PAY', $data);
  549. }
  550. //需要提箱
  551. if ($this->isOrderRemind($bid)) {
  552. if($special_user_log && $special_user_log == $this->uid){
  553. $my_log = myLog('special');
  554. $my_log->info('balance lack remind');
  555. }
  556. return response()->error('WAP_BOOK_BALANCE_PAY', $data);
  557. } else {
  558. if($special_user_log && $special_user_log == $this->uid){
  559. $my_log = myLog('special');
  560. $my_log->info('balance lack not remind');
  561. }
  562. return response()->error('WAP_BOOK_SECOND_BALANCE_PAY', $data);
  563. }
  564. }
  565. if($special_user_log && $special_user_log == $this->uid){
  566. $my_log = myLog('special');
  567. $my_log->info('6666666666666666666666666666666666666');
  568. }
  569. //余额充足 单本弹窗提醒,章节直接扣费
  570. if ($this->isOrderRemind($bid) && $book_info->charge_type == 'BOOK') {
  571. if($special_user_log && $special_user_log == $this->uid){
  572. $my_log = myLog('special');
  573. $my_log->info('balance enough remind');
  574. }
  575. return response()->error('WAP_BOOK_BUY', $data);
  576. }
  577. if($special_user_log && $special_user_log == $this->uid){
  578. $my_log = myLog('special');
  579. $my_log->info('77777777777777777777777777777');
  580. }
  581. //付费 不提醒
  582. if ($this->balancePay($book_info, $chapter, 0)) {
  583. if($special_user_log && $special_user_log == $this->uid){
  584. $my_log = myLog('special');
  585. $my_log->info('balance pay ok-----');
  586. }
  587. $this->getChapter();
  588. return response()->item(new ChapterTransformer, $this->chapter);
  589. } else {
  590. if($special_user_log && $special_user_log == $this->uid){
  591. $my_log = myLog('special');
  592. $my_log->info('balance pay fails!!!!!!!!!!!!!!!!');
  593. }
  594. //付费 异常
  595. return response()->error('WAP_SYS_ERROR');
  596. }
  597. }
  598. /**
  599. * @apiVersion 1.0.0
  600. * @apiDescription 余额支付
  601. * @api {get} books/{bid}/balance/chapterOrders/{cid} 余额支付
  602. * @apiGroup Chapter
  603. * @apiName pay
  604. * @apiParam (Int) remind 提醒
  605. * @apiSuccess {int} code 状态码
  606. * @apiSuccess {String} msg 信息
  607. * @apiSuccess {object} data 结果集
  608. * @apiSuccess {Int} data.chapter_id 章节id
  609. * @apiSuccess {String} data.chapter_name 章节名称
  610. * @apiSuccess {Int} data.chapter_sequence 序号
  611. * @apiSuccess {Int} data.chapter_is_vip 是否vip
  612. * @apiSuccess {Int} data.chapter_size 章节大小
  613. * @apiSuccess {Int} data.prev_cid 上一章节id
  614. * @apiSuccess {Int} data.next_cid 下一章节
  615. * @apiSuccess {String} data.recent_update_at 更新时间
  616. * @apiSuccess {String} data.chapter_content 章节内容
  617. * @apiSuccess {Int} data.is_need_subscirbe 是否强制关注(删除)
  618. * @apiSuccessExample {json} Success-Response:
  619. * HTTP/1.1 200 OK
  620. * {
  621. * code: 0,
  622. * msg: "",
  623. * data: {
  624. * chapter_id: 5,
  625. * chapter_name: "第1240章 不是我",
  626. * chapter_sequence: 1239,
  627. * chapter_is_vip: 1,
  628. * chapter_size: 2422,
  629. * prev_cid: 0,
  630. * next_cid: 0,
  631. * recent_update_at: 2017-11-20 15:01:56,
  632. * chapter_content: "叶妩被司行霈的阴阳怪气一吓,思路偏得太远了。 她张口结舌,忘记了自己要说什么。",
  633. * }
  634. * }
  635. */
  636. public function pay(Request $request, $t, $domain, $bid, $cid)
  637. {
  638. if (!$this->checkUid()) {
  639. return response()->error('NOT_LOGIN');
  640. }
  641. $remind = (int)$request->input('remind');
  642. $this->en_bid = $bid;
  643. $oldbid = $bid;
  644. $bid = Hashids::decode($bid)[0];
  645. $book_info = BookConfigService::getBookById($bid);;
  646. if (empty($book_info)) response()->error('WAP_SYS_ERROR');
  647. //获取章节
  648. $chapter = ChapterService::getChapterNameById($cid, $bid);
  649. if (!$chapter) {
  650. return response()->error('WAP_SYS_ERROR');
  651. }
  652. $this->chapter = $chapter;
  653. $this->book_info = $book_info;
  654. $this->cid = $cid;
  655. if ($this->balancePay($book_info, $chapter, $remind)) {
  656. ReadRecordService::addReadRecord(['uid' => $this->uid, 'bid' => $bid, 'book_name' => $book_info->book_name,
  657. 'cid' => $cid, 'chapter_name' => $chapter->name]);
  658. $this->getChapter();
  659. return response()->item(new ChapterTransformer, $this->chapter);
  660. } else {
  661. $fee = $this->getPrice($book_info, $chapter);
  662. $data = [
  663. 'book_id' => $oldbid,
  664. 'book_name' => $book_info->book_name,
  665. 'chapter_name' => $chapter->name,
  666. 'chapter_id' => $cid,
  667. 'pay_type' => $book_info->charge_type,
  668. 'fee' => $fee,
  669. 'user_balance' => $this->_user_info['balance'],
  670. 'product_id' => $book_info->product_id,
  671. 'uid' => $this->uid,
  672. 'distribution_channel_id' => $this->distribution_channel_id,
  673. 'is_discount' => 0,
  674. 'discount_fee' => '',
  675. 'discount' => ''
  676. ];
  677. //不需要提醒
  678. if ($book_info->charge_type == 'BOOK') {
  679. return response()->error('WAP_BOOK_SECOND_BALANCE_PAY', $data);
  680. } elseif ($book_info->charge_type == 'CHAPTER') {
  681. return response()->error('WAP_CHAPTER_SECOND_BALANCE_PAY', $data);
  682. } else {
  683. return response()->error('WAP_SYS_ERROR');
  684. }
  685. }
  686. }
  687. /**
  688. * 余额支付
  689. * @param $book_info
  690. * @param $chapter_id
  691. * @param $chapter_size
  692. * @return bool
  693. */
  694. protected function balancePay($book_info, $chapter, $is_remind)
  695. {
  696. $fee = $this->getPrice($book_info, $chapter);
  697. if ((int)$this->_user_info['balance'] >= $fee) {
  698. if ($this->bookOrderOrChapterOrder($book_info, $chapter->id, $fee, $chapter->name, $is_remind)) {
  699. $this->chapterOrderStats($fee);
  700. if($this->user){
  701. $this->user->balance -= $fee;
  702. }
  703. return true;
  704. }
  705. }
  706. return false;
  707. }
  708. /**
  709. * 获取章节内容
  710. * @param $bid
  711. * @param $cid
  712. * @return bool|mixed
  713. */
  714. private function getChapter()
  715. {
  716. //初始化 默认字段
  717. $this->initChapterDefaultField();
  718. //章节内容
  719. $chapter_content = ChapterService::getChapter($this->book_info->bid, $this->cid);
  720. $this->chapter->content = str_replace($chapter_content->name, '', $chapter_content->content);
  721. //统计
  722. $this->chapterStats();
  723. //123特殊强关
  724. $this->specialSubscribeFlag();
  725. //签到奖励
  726. $this->sign();
  727. //#短篇推送长篇需求#
  728. //$this->shortPushLong();
  729. //#短推长、短推短对比
  730. $this->shortPushshort();
  731. //阅读器分享
  732. $this->share();
  733. //广告
  734. $this->isShowAd();
  735. //完整阅读纪录 阅读纪录
  736. $this->readRecordOther();
  737. }
  738. /**
  739. * 章节阅读接口需要配置返回的字段
  740. */
  741. private function initChapterDefaultField()
  742. {
  743. if (!$this->chapter) {
  744. return;
  745. }
  746. //内容
  747. $this->chapter->content = '';
  748. //签到默认字段
  749. $this->chapter->sign_days = 1;
  750. $this->chapter->sign_status = 0;
  751. $this->chapter->sign_reard = 0;
  752. //#短篇推送长篇需求#
  753. $this->chapter->next_jump = 0;
  754. $this->chapter->next_jump_url = '';
  755. $this->chapter->show_push_title = 0;
  756. $this->chapter->push_title_url = '';
  757. $this->chapter->push_title = [];
  758. //分享
  759. $this->chapter->is_show_share_button = 0;
  760. //阅读底部强关图片 只有123有
  761. $this->chapter->is_had_subscribe = 0;
  762. //广告
  763. $this->chapter->is_show_ad = 0;
  764. }
  765. private function sign()
  766. {
  767. //渠道123 未关注的签到放到强关前一章
  768. if ($this->distribution_channel_id == 123 && !$this->is_had_subscribe) {
  769. if ($this->book_info->force_subscribe_chapter_seq - 1 == $this->chapter->sequence) {
  770. $sign_status = $this->userSign($this->uid);
  771. //$sign_status = 0;
  772. $this->chapter->sign_status = $sign_status ? 1 : 0;
  773. $this->chapter->sign_reard = $sign_status;
  774. $this->chapter->sign_days = ReadRecordService::getSignCount($this->uid);
  775. }
  776. } else {
  777. $sign_status = $this->userSign($this->uid);
  778. //$sign_status =0;
  779. $this->chapter->sign_status = $sign_status ? 1 : 0;
  780. $this->chapter->sign_reard = $sign_status;
  781. $this->chapter->sign_days = ReadRecordService::getSignCount($this->uid);
  782. }
  783. }
  784. private function forceSubscribe()
  785. {
  786. //获取公众号信息
  787. $officialAccount = $this->getOfficialAccount();
  788. if (!$officialAccount || empty($officialAccount->appid)) {
  789. return false;
  790. }
  791. //如果是链接强关,则跳转
  792. $sub_type = $this->getSubscribeType($officialAccount->appid, $this->book_info->bid);
  793. if (in_array(3, $sub_type['type']) && $sub_type['url']) {
  794. return ['error_type' => 'WAP_LINK_SUBSCRIBE', 'data' => ['url' => $sub_type['url']]];
  795. }
  796. //普通强关
  797. if (in_array(1, $sub_type['type'])) {
  798. $src = $this->getRcodeInfo(['appid' => $officialAccount->appid], $this->book_info->bid);
  799. if (empty($src)) return false;
  800. if ($officialAccount->head_img) {
  801. $url = '/subscribe/qrcode?img=' . urlencode($src) . '&title=' . $officialAccount->nickname . '&head_img=' . urlencode($officialAccount->head_img) . '&uid=' . $this->uid;
  802. } else {
  803. $url = '/subscribe/qrcode?img=' . urlencode($src) . '&title=' . $officialAccount->nickname . '&uid=' . $this->uid;
  804. }
  805. return ['error_type' => 'WAP_NOT_SUBSCRIBE', 'data' => ['src' => $url, 'head_img' => $officialAccount->head_img]];
  806. }
  807. return false;
  808. }
  809. private function getOfficialAccountForceReadNotice()
  810. {
  811. }
  812. //强关页面的统计
  813. private function subscribeStats()
  814. {
  815. if ($this->send_order_id) {
  816. //$this->sendOrderSubscribePageUv($this->book_info->bid);
  817. //强关页面的uv
  818. /*try {
  819. Redis::sadd('subscribe_page_uv' . $this->send_order_id, $this->uid);
  820. Redis::sadd('subscribe_page_uv_send_order_ids', $this->send_order_id);
  821. } catch (\Exception $e) {
  822. }*/
  823. }
  824. }
  825. /**
  826. * 短推长
  827. */
  828. private function shortPushLong()
  829. {
  830. if ($this->book_info->charge_type = 'CHAPTER') return;
  831. $is_has_book_order = BookOrderService::isHasBookOrder($this->uid);
  832. if ($this->chapter->is_vip && $is_has_book_order) {
  833. $this->chapter->show_push_title = 1;
  834. $this->chapter->push_title = DataAnalysisBookConfig::getUserReaderPagePushBook($this->uid, $this->distribution_channel_id);
  835. }
  836. if (!$this->chapter->next_cid && $is_has_book_order) {
  837. $link = DataAnalysisBookConfig::getUserReaderPagePushBook($this->uid, $this->distribution_channel_id, 1);
  838. if ($link && isset($link['link']) && !empty($link['link'])) {
  839. $this->chapter->next_jump = 1;
  840. $this->chapter->next_jump_url = $link['link'];
  841. }
  842. }
  843. }
  844. /**
  845. * 短推长、短推短对比需求
  846. * 目标用户:全站短篇进入新注册且订阅短篇的付费用户
  847. * 方式:根据uid奇偶取用,奇:测试用户1 偶:测试用户2
  848. * 测试用户1:底部链接+完本推荐 均使用短篇小说
  849. * 测试用户2:底部链接+完本推荐 均使用长篇小说
  850. * 目标用户:全站短篇进入新注册且订阅短篇的付费用户
  851. */
  852. private function shortPushshort()
  853. {
  854. //新用户 注册时间大于某个值
  855. if(!$this->user){
  856. return ;
  857. }
  858. if(!env('SHORT_PUSH_SHORT_START_TIME') || strtotime($this->user->created_at) < env('SHORT_PUSH_SHORT_START_TIME')){
  859. return ;
  860. }
  861. //没有派单
  862. if(!$this->user->send_order_id) return ;
  863. //只在vip章节底部显示
  864. if(!$this->chapter->is_vip){
  865. return ;
  866. }
  867. //强关
  868. if(!$this->is_had_subscribe){
  869. return ;
  870. }
  871. //短篇进入
  872. $send_order_info = SendOrderService::getById($this->user->send_order_id);
  873. if(!$send_order_info || $send_order_info->charge_type != 'BOOK'){
  874. return ;
  875. }
  876. //订阅短篇的付费用户
  877. $is_has_book_order = BookOrderService::isHasBookOrder($this->uid);
  878. if(!$is_has_book_order) return ;
  879. //是否付费用户
  880. if(!OrderService::isPaidUser($this->uid)) return ;
  881. $type = $this->uid %2 == 1? 'BOOK':'CHAPTER';
  882. $result = DataAnalysisSelectUserService::create($this->uid, $this->distribution_channel_id, $type, 500, $attach = 'short2s2l');
  883. if(!$result) return ;
  884. //底部链接
  885. $this->chapter->show_push_title = 1;
  886. $this->chapter->push_title = DataAnalysisBookConfig::getUserReaderPagePushBookV2($this->uid, $this->distribution_channel_id,$type);
  887. //完本推荐
  888. if (!$this->chapter->next_cid ) {
  889. $link = DataAnalysisBookConfig::getUserReaderPagePushBookV2($this->uid, $this->distribution_channel_id,$type, 1);
  890. if($link && $link['link']){
  891. $this->chapter->next_jump = 1;
  892. $this->chapter->next_jump_url = $link['link'];
  893. }
  894. }
  895. }
  896. private function share()
  897. {
  898. if ($this->is_had_subscribe && in_array($this->distribution_channel_id, [2, 14, 211,4025,4147,691,123]) && $this->user) {//,4147,691,123,4025
  899. $this->chapter->is_show_share_button = 1;
  900. }
  901. }
  902. /**
  903. * 123 渠道阅读底部强关图片
  904. */
  905. private function specialSubscribeFlag()
  906. {
  907. if ($this->distribution_channel_id == 123 && !$this->is_had_subscribe) {
  908. $this->chapter->is_had_subscribe = 1;
  909. }
  910. }
  911. //订阅统计
  912. private function chapterOrderStats($fee)
  913. {
  914. $day = date('Y--m-d');
  915. try {
  916. Redis::hincrby('wap:chapterandbookorder:bid:' . $this->book_info->bid, $day, $fee);
  917. } catch (\Exception $e) {
  918. }
  919. $this->smartPushTestBook($this->book_info->bid, $fee);
  920. $specialChannelIdStats = env('SPECIAL_CHANNEL_STATS', 211);
  921. if (in_array($this->distribution_channel_id, explode(',', $specialChannelIdStats))) {
  922. WapVisitStatService::specialChannelIdStatsSave($this->uid, $this->book_info->bid, $fee);
  923. }
  924. }
  925. /**
  926. * 签到
  927. * @param $uid
  928. * @return int
  929. */
  930. protected function userSign($uid)
  931. {
  932. if (UserSignService::isSign($uid)) {
  933. //签过到了
  934. return 0;
  935. }
  936. if ($res = UserSignService::signToday($uid)) {
  937. //$sign_key = 'leyuee:wap:usersigni';
  938. //Redis::hset($sign_key, $uid, $res);
  939. return $res;
  940. }
  941. return 0;
  942. }
  943. /**
  944. * 添加订购记录
  945. * @param $book_info
  946. * @param $chapter_id
  947. * @param $fee
  948. * @return bool
  949. */
  950. protected function bookOrderOrChapterOrder($book_info, $chapter_id, $fee, $chapter_name, $is_remind)
  951. {
  952. if ($book_info['charge_type'] == 'BOOK') {
  953. $data = [
  954. 'uid' => $this->uid,
  955. 'fee' => $fee,
  956. 'u' => Cookie::get('send_order_id'),
  957. 'distribution_channel_id' => $this->distribution_channel_id,
  958. 'bid' => $book_info->bid,
  959. 'book_name' => $book_info->book_name,
  960. 'send_order_id' => Cookie::get('send_order_id') ? Cookie::get('send_order_id') : 0,
  961. ];
  962. return BookOrderService::addOrderRecodeAndDecrUserBalance($data, $this->uid);
  963. } else {
  964. $data = [
  965. 'uid' => $this->uid,
  966. 'fee' => $fee,
  967. 'cid' => $chapter_id,
  968. 'bid' => $book_info->bid,
  969. 'distribution_channel_id' => $this->distribution_channel_id,
  970. 'book_name' => $book_info->book_name,
  971. 'chapter_name' => $chapter_name,
  972. 'send_order_id' => Cookie::get('send_order_id') ? Cookie::get('send_order_id') : 0,
  973. 'is_remind' => $is_remind
  974. ];
  975. //print_r($data);
  976. if ($is_remind) {
  977. $this->addOrderRemind($book_info->bid);
  978. }
  979. return ChapterOrderService::addOrderAndDecrUserBalance($data, $this->uid);
  980. }
  981. }
  982. protected function addOrderRemind($bid)
  983. {
  984. if (ChapterReminderService::checkIsNoReminder($this->uid, $bid)) {
  985. return true;
  986. } else {
  987. ChapterReminderService::add($this->uid, $bid);
  988. return true;
  989. }
  990. }
  991. /**
  992. * 是否订购提醒
  993. * @param $chapter_id
  994. * @return bool
  995. */
  996. protected function isOrderRemind($bid)
  997. {
  998. $is_no_reminder = ChapterReminderService::checkIsNoReminder($this->uid, $bid) ? 1 : 0;
  999. return $is_no_reminder == 0;
  1000. }
  1001. /**
  1002. * 用户是否关注
  1003. * @param $uid
  1004. * @return bool
  1005. */
  1006. protected function getSubscribe()
  1007. {
  1008. $res = ForceSubscribeService::forceSubscribeUsersByUid(['uid' => $this->uid]);
  1009. if ($res) {
  1010. $this->force_subscribe_time = isset($res->created_at)?$res->created_at:null;
  1011. return true;
  1012. }
  1013. return false;
  1014. }
  1015. /**
  1016. * 获取公众号信息
  1017. * @param $distribution_channel_id
  1018. */
  1019. protected function getOfficialAccount()
  1020. {
  1021. $distribution_channel_id = $this->distribution_channel_id;
  1022. $res = OfficialAccountService::canUseOfficialAccountByChannelId(compact('distribution_channel_id'));
  1023. if (isset($res->nickname) && !empty($res->nickname)) {
  1024. Cookie::queue('force_subscribe_name', $res->nickname, env('U_COOKIE_EXPIRE'));
  1025. }
  1026. return $res;
  1027. }
  1028. /**
  1029. * 获取二维码
  1030. * @param $param
  1031. * @return bool
  1032. */
  1033. private function getRcodeInfo($param, $bid)
  1034. {
  1035. //return "https://mp.weixin.qq.com/cgi-bin/showqrcode?ticket=gQGI8DwAAAAAAAAAAS5odHRwOi8vd2VpeGluLnFxLmNvbS9xLzAyZEZ0T0ZoSHljM2kxOTUwQU5zY08AAgRF8-xbAwQAjScA";
  1036. $param_need = [
  1037. 'gzh_app_id' => $param['appid'],
  1038. 'scene_id' => $this->uid,
  1039. 'timestamp' => time(),
  1040. ];
  1041. $param_need['sign'] = $this->getSign($param_need);
  1042. $client = new Client(['timeout' => 3.0,]);
  1043. try {
  1044. Log::info('get qrcode url is:' . 'https://zsyauth.aizhuishu.com/api/get_qrcode_url?' . http_build_query($param_need));
  1045. $qrcode_url_res = $client->request('get', 'https://zsyauth.aizhuishu.com/api/get_qrcode_url?' . http_build_query($param_need))->getBody()->getContents();
  1046. if ($qrcode_url_res) {
  1047. $qrcode_url = json_decode($qrcode_url_res, true);
  1048. if ($qrcode_url['code'] == 1) {
  1049. //保存强关时的bid
  1050. if (isset($qrcode_url['data']) && !empty($qrcode_url['data'])) {
  1051. Redis::hset('force_subscribe_from_bid', $param['appid'] . '_' . $this->uid, $bid);
  1052. $send_order_id = Cookie::get('send_order_id') ? Cookie::get('send_order_id') : 0;
  1053. Redis::hset('force_subscribe_from_send_order_id', $param['appid'] . '_' . $this->uid, $send_order_id);
  1054. Log::info('uid is' . $this->uid . '--qrcode is:' . $qrcode_url['data']);
  1055. return $qrcode_url['data'];
  1056. }
  1057. }
  1058. }
  1059. } catch (\Exception $e) {
  1060. //\Log::info($e);
  1061. //Redis::sadd('force_subscribe_qrcode:error', $param['appid'] . '_' . time());
  1062. }
  1063. return false;
  1064. }
  1065. /**
  1066. * 获取订购记录
  1067. * @param $book_info
  1068. * @param $chapter_id
  1069. * @return bool
  1070. */
  1071. private function getOrderRecord($bid, $chapter_id)
  1072. {
  1073. //包年记录
  1074. $uid = $this->uid;
  1075. $res = YearOrderService::getRecord($uid);
  1076. if ($res) return true;
  1077. $res = null;
  1078. //单本订购记录
  1079. $res = BookOrderService::getRecordByuidBid($uid, $bid);
  1080. if ($res) return true;
  1081. $res = null;
  1082. //章节订购记录
  1083. $chapterOrder = new ChapterOrderService();
  1084. if ($chapterOrder->checkIsOrdered($uid, $bid, $chapter_id)) return true;
  1085. return false;
  1086. }
  1087. /**
  1088. * 计算价格
  1089. * @param $book_info
  1090. * @param $chapter_size
  1091. * @return float
  1092. */
  1093. private function getPrice($book_info, $chapter)
  1094. {
  1095. if ($book_info->charge_type == 'BOOK') {
  1096. $fee = $book_info->price * 100;
  1097. } else {
  1098. //$fee = ceil($chapter->size/100);
  1099. //$channel_fee = BookService::getChapterPrice()
  1100. $channel_fee = BookService::getChapterPrice($this->distribution_channel_id);
  1101. if ($channel_fee) {
  1102. $price_rate = $channel_fee / 100;
  1103. } else {
  1104. //$price_rate = 0.012;
  1105. $price_rate = env('DEFAULT_CHAPTER_PRICE', 0.015);
  1106. }
  1107. //Log::info($price_rate);
  1108. $fee = ceil($chapter->size * $price_rate);
  1109. /*if($this->isRaisePrice()){
  1110. $fee = round($chapter->size * 0.018);
  1111. }*/
  1112. }
  1113. //首个计费章节书币价格以35书币为基准,低于35提升至35,原价高于35书币,维持原价
  1114. if (isset($chapter->sequence) && isset($book_info->vip_seq)) {
  1115. if ($chapter->sequence == $book_info->vip_seq) {
  1116. if ($fee < 35) {
  1117. $fee = 35;
  1118. }
  1119. }
  1120. }
  1121. return $fee;
  1122. }
  1123. //降低付费用户书币价值
  1124. private function isRaisePrice(){
  1125. if(!$this->uid)
  1126. return false;
  1127. if(!$this->user)
  1128. return false;
  1129. if($this->user->balance < 100){
  1130. return false;
  1131. }
  1132. if(!in_array($this->distribution_channel_id,[211,123])){
  1133. return false;
  1134. }
  1135. if(DataAnalysisSelectUserService::getByUidAndType($this->uid,'RAISE')){
  1136. return true;
  1137. }
  1138. return false;
  1139. }
  1140. /**
  1141. * 获取强关章节数
  1142. * @param $book
  1143. * @return int
  1144. */
  1145. private function getSubscribeChapterNum($book)
  1146. {
  1147. $hour = date('G');
  1148. if($this->send_order_id && $hour <=5 && in_array($this->send_order_id,[392216,392218,415200,415212,415163])){
  1149. return 1;
  1150. }
  1151. if($this->send_order_id && $hour <=5 && time()>1552233600 && in_array($this->send_order_id,[424454,424453,424452,424451,424450,424449,424448,424447,424446,424445,424444,424443,424442,424441,424440,424439,424438,424437,424436,424435,424434,424433,424432,424431,424430])){
  1152. return 1;
  1153. }
  1154. //派单强关
  1155. if ($this->send_order_id) {
  1156. $send_order_info = SendOrderService::getById($this->send_order_id);
  1157. if ($send_order_info && $send_order_info->book_id == $book->bid && $send_order_info->subscribe_chapter_seq) {
  1158. return $send_order_info->subscribe_chapter_seq;
  1159. }
  1160. }
  1161. $subscribe = BookSubscribleChapterService::getSubcribleChapter($book->bid, $this->distribution_channel_id);
  1162. if ($subscribe) {
  1163. return (isset($subscribe->subscribe_chapter_id) && $subscribe->subscribe_chapter_id > 0) ? $subscribe->subscribe_chapter_id : $book->force_subscribe_chapter_seq;
  1164. }
  1165. return $book->force_subscribe_chapter_seq;
  1166. }
  1167. /**
  1168. * 判断访问的域名和数据库指定的域名是否一致,一致返回false ,不一致 true
  1169. * @param $domain 当前访问的doain
  1170. * @return bool
  1171. */
  1172. private function isVisitDomainEqualBookDomain($domain)
  1173. {
  1174. $book_domain = $this->book_info->promotion_domain;
  1175. if ($domain == 'zhuishuyun' && stripos($book_domain, 'leyuee') !== false) {
  1176. return false;
  1177. }
  1178. return stripos($book_domain, $domain) === false;
  1179. }
  1180. //获取对当前图书对应域名的链接
  1181. private function getCorrespondBookUrl()
  1182. {
  1183. $url = sprintf(
  1184. 'https://site%s.%s/reader?bid=%s&cid=%s&send_order_id=%s&fromtype=%s&stats=2',
  1185. $this->en_distribution_channel_id,
  1186. $this->book_info->promotion_domain,
  1187. $this->en_bid,
  1188. $this->cid,
  1189. $this->send_order_id,
  1190. $this->from_type
  1191. );
  1192. return $url;
  1193. }
  1194. /**
  1195. * 用户添加标签
  1196. * @param $book_info
  1197. */
  1198. private function addTag($book_info)
  1199. {
  1200. if (!UserDeepReadTagService::isAddTag($this->uid, $book_info->bid)) {
  1201. try {
  1202. UserDeepReadTagService::addTag([
  1203. 'uid' => $this->uid,
  1204. 'bid' => $book_info->bid,
  1205. 'book_name' => $book_info->book_name,
  1206. 'category_id' => $book_info->category_id,
  1207. 'category_name' => $book_info->category_name,
  1208. 'sex_preference' => $book_info->channel_name ? $book_info->channel_name : '',
  1209. 'distribution_channel_id' => $this->distribution_channel_id ? $this->distribution_channel_id : '0',
  1210. 'send_order_id' => Cookie::get('send_order_id') ? Cookie::get('send_order_id') : 0,
  1211. ]);
  1212. } catch (\Exception $e) {
  1213. }
  1214. }
  1215. }
  1216. private function newUserRewardRead()
  1217. {
  1218. $count = ChapterOrderService::getUserRecordCount($this->uid);
  1219. return $count > 2;
  1220. }
  1221. private function isBookOrdered($bid)
  1222. {
  1223. $chapter_order = ChapterOrderService::checkBookIsOrdered($this->uid, $bid);
  1224. if ($chapter_order) return true;
  1225. $res = BookOrderService::getRecordByuidBid($this->uid, $bid);
  1226. if ($res) return true;
  1227. return false;
  1228. }
  1229. private function beforeForceSubAndBeforeVipUvAndPv($book, $book_force_seq, $chapter)
  1230. {
  1231. $send_order_id = Cookie::get('send_order_id') ? Cookie::get('send_order_id') : 14;
  1232. $prev_sub_seq = 0;
  1233. if ($book_force_seq) {
  1234. $prev_sub_seq = $book_force_seq - 1;
  1235. }
  1236. $prev_vip_seq = 0;
  1237. $date = date('Y-m-d');
  1238. if (isset($book->vip_seq) && !empty($book->vip_seq)) {
  1239. $prev_vip_seq = $book->vip_seq - 1;
  1240. }
  1241. if ($chapter->sequence == $prev_vip_seq) {
  1242. $uv_key = 'book:' . $book->bid . ':beforevip:uv:date:' . $date . ':send_order_id:' . $send_order_id;
  1243. $pv_key = 'book:' . $book->bid . ':beforevip:pv:send_order_id:' . $send_order_id;
  1244. Redis::hincrby($pv_key, $date, 1);
  1245. Redis::hincrby($pv_key, 'total', 1);
  1246. Redis::sadd($uv_key, $this->uid);
  1247. Redis::sadd('beforevip' . $date, $book->bid . '-' . $send_order_id);
  1248. }
  1249. if ($chapter->sequence == $prev_sub_seq) {
  1250. $uv_key = 'book:' . $book->bid . ':beforeforcesub:uv:date:' . $date . ':send_order_id:' . $send_order_id;
  1251. $pv_key = 'book:' . $book->bid . ':beforeforcesub::pvsend_order_id:' . $send_order_id;
  1252. Redis::hincrby($pv_key, $date, 1);
  1253. Redis::hincrby($pv_key, 'total', 1);
  1254. Redis::sadd($uv_key, $this->uid);
  1255. Redis::sadd('beforeforcesub' . $date, $book->bid . '-' . $send_order_id);
  1256. }
  1257. }
  1258. private function readRecordOther()
  1259. {
  1260. $bid = $this->book_info->bid;
  1261. $cid = $this->cid;
  1262. $distribution_channel_id = $this->distribution_channel_id;
  1263. $send_order_id = $this->send_order_id;
  1264. $from = $this->from_type;
  1265. $sequence = $this->chapter->sequence;
  1266. ReadRecordStatsService::record($this->uid,$bid,$cid,$distribution_channel_id,$send_order_id,$from,$sequence);
  1267. /*$chapter = $this->chapter;
  1268. try {
  1269. $data = [];
  1270. $data['uid'] = $this->uid;
  1271. $data['bid'] = $chapter->bid;
  1272. $data['cid'] = $chapter->id;
  1273. $data['is_vip'] = $chapter->is_vip;
  1274. $data['seq'] = $chapter->sequence;
  1275. $data['created_at'] = date('Y-m-d H:i:s');
  1276. $data['updated_at'] = date('Y-m-d H:i:s');
  1277. DB::table('read_records')->insert($data);
  1278. } catch (\Exception $e) {
  1279. }*/
  1280. }
  1281. /**
  1282. * 下架图书 true:下架不能阅读了, false:可以正常阅读
  1283. * @return bool
  1284. */
  1285. private function isOffShelf()
  1286. {
  1287. $book_info = $this->book_info;
  1288. if ($book_info->is_on_shelf == 0 || $book_info->is_on_shelf == 3) {
  1289. return true;
  1290. }
  1291. //屏蔽一本书1042 2626
  1292. if (in_array($book_info->bid, [1042, 2626]) && $this->distribution_channel_id == 123) {
  1293. return true;
  1294. }
  1295. if ($book_info->is_on_shelf == 4) {
  1296. //版权到期,有阅读记录还可以继续阅读,订购
  1297. /*if (!ReadRecordService::getRecordByUidBid($this->uid, $book_info->bid)) {
  1298. return true;
  1299. }*/
  1300. //版权到期,有包年可以继续阅读
  1301. $year_order = YearOrderService::getRecord($this->uid);
  1302. if($year_order){
  1303. return false;
  1304. }
  1305. //版权到期,有订购记录还可以继续阅读,订购
  1306. $chapter_order = ChapterOrderService::checkBookIsOrdered($this->uid, $book_info->bid);
  1307. if (!$chapter_order) return true;
  1308. }
  1309. if($book_info->is_on_shelf == 10){
  1310. //Log::info('ddddddddddddddddddddddddddd');
  1311. $yq_book_user = BookUserService::selectUser($this->uid);
  1312. //Log::info($yq_book_user);
  1313. if($yq_book_user && $yq_book_user->type == 'ENABLE'){
  1314. return false;
  1315. }
  1316. return true;
  1317. }
  1318. return false;
  1319. }
  1320. //章节被删除的情况
  1321. private function chapterNotExists()
  1322. {
  1323. $chapter = $this->chapter;
  1324. $cid = $this->cid;
  1325. if ($chapter) return false;
  1326. //章节不存在的情况
  1327. $no_check = ChapterService::getChapterNameByIdNoCheck($cid);
  1328. $h5_scheme = 'https';
  1329. if (!$no_check) {
  1330. //章节真正不存在的情况
  1331. $url = $h5_scheme . '://' . _domain() . '/catalog?id=' . $this->en_bid;
  1332. return $url;
  1333. }
  1334. //章节被删除的情况
  1335. if ($no_check->next_cid) {
  1336. $url = $h5_scheme . '://' . _domain() . '/reader?bid=' . $this->en_bid . '&cid=' . $no_check->next_cid;
  1337. return $url;
  1338. }
  1339. //章节被删除的是最后一章的情况
  1340. $url = $h5_scheme . '://' . _domain() . '/catalog?id=' . $this->en_bid . '&sequence=' . $no_check->sequence;
  1341. return $url;
  1342. }
  1343. /**
  1344. * 深度阅读
  1345. * @param $chapter
  1346. */
  1347. private function deepReadRecord()
  1348. {
  1349. if (!env('ON_BOOK_UV_PV', false)) {
  1350. return;
  1351. }
  1352. $chapter = $this->chapter;
  1353. $key = 'book:' . $chapter->bid . ':deepread:uv';
  1354. $chapter_key = 'book:' . $chapter->bid . ':chapterseq:' . $chapter->sequence;
  1355. if (Redis::scard($key) > 50000) {
  1356. if (Redis::Sismember($key, $this->uid)) {
  1357. Redis::sadd($chapter_key, $this->uid);
  1358. }
  1359. } else {
  1360. Redis::sadd($key, $this->uid);
  1361. Redis::sadd($chapter_key, $this->uid);
  1362. }
  1363. }
  1364. /**
  1365. * 强关类型
  1366. * @param $appid
  1367. * @return array
  1368. */
  1369. private function getSubscribeType($appid, $bid)
  1370. {
  1371. $send_order_id = Cookie::get('send_order_id') ? Cookie::get('send_order_id') : 0;
  1372. $sub_setting = ChannelSubscribeSettingService::getSubscribeTypeByAppId($appid);
  1373. if (!$sub_setting) return ['type' => [1], 'url' => ''];
  1374. $types = explode(',', $sub_setting->force_subscribe_type);
  1375. $url = '';
  1376. if (in_array(3, $types) && !empty($sub_setting->resource_url)) {
  1377. $h5_scheme = env('H5_SCHEME', 'https');
  1378. $url = $h5_scheme . '://' . _domain() . '/subscribeauth/?uid=' . $this->uid . '&distribution_channel_id=' . $this->distribution_channel_id . '&appid=' . $appid . '&bid=' . $bid . '&send_order_id=' . $send_order_id;
  1379. }
  1380. return ['type' => $types, 'url' => $url];
  1381. }
  1382. private function showChapterPrice($bid, $charge_type)
  1383. {
  1384. if ($charge_type == 'BOOK') {
  1385. return false;
  1386. }
  1387. $show_chapter_price_bid = env('SHOW_CHAPTER_PRICE_BID', 'all');
  1388. if ($show_chapter_price_bid != 'all') {
  1389. $show_chapter_price_bid_array = explode(',', $show_chapter_price_bid);
  1390. if (!in_array($bid, $show_chapter_price_bid_array)) {
  1391. return false;
  1392. }
  1393. }
  1394. $show_chapter_price_channel = env('SHOW_CHAPTER_PRICE_CHANNEL', '');
  1395. if (!$show_chapter_price_channel) {
  1396. return false;
  1397. }
  1398. if ($show_chapter_price_channel == 'all') {
  1399. return true;
  1400. }
  1401. $show_chapter_price_channel_array = explode(',', $show_chapter_price_channel);
  1402. if (in_array($this->distribution_channel_id, $show_chapter_price_channel_array)) {
  1403. return true;
  1404. }
  1405. return false;
  1406. }
  1407. /**
  1408. * 阅读统计
  1409. */
  1410. private function chapterStats()
  1411. {
  1412. $chapter = $this->chapter;
  1413. $bid = $this->book_info->bid;
  1414. //派单精确统计
  1415. if ($chapter->sequence <= 30) {
  1416. //$this->sendOrderChapterUv($bid, $chapter->sequence);
  1417. }
  1418. //智能推送 测书统计章节uv
  1419. if ($chapter->sequence <= 60) {
  1420. //测书数据 由30改到60 2018-11-26 18:00
  1421. $this->smartPushTestBookChapterUv($bid, $chapter->sequence);
  1422. }
  1423. //智能推送 测书统计第二章 uv
  1424. if ($chapter->sequence == 2) {
  1425. $this->smartPushTestBookSecondChapterUv($bid);
  1426. }
  1427. // 统计前5张uv 会放在book_five_chapter_uv表中,脚本在 \App\Console\Commands\BookTest::data1里面
  1428. // 作用早忘记了
  1429. $field = date('Y-m-d');
  1430. /*
  1431. if ($chapter->sequence <= 5 && $this->send_order_id) {
  1432. try {
  1433. Redis::sadd(sprintf('book_before_five_uv_%s_%s_%s', $field, $bid, $chapter->sequence), $this->uid);
  1434. Redis::sadd('book_before_five_uvs', sprintf('%s_%s_%s', $field, $bid, $chapter->sequence));
  1435. } catch (\Exception $e) {
  1436. }
  1437. }*/
  1438. //统计点击率
  1439. $key = 'book_click_num_bid_' . $bid;
  1440. try {
  1441. Redis::HINCRBY($key, $field, 1);
  1442. } catch (\Exception $e) {
  1443. }
  1444. //阅读页面pvuv
  1445. $this->recordReaderUvAndPv();
  1446. }
  1447. private function smartPushTestBook($bid, $balance)
  1448. {
  1449. $smart_bid = ReadRecordService::getSmartPush($this->uid);
  1450. if ($smart_bid && in_array($bid, $smart_bid)) {
  1451. $field = sprintf('%s_amount', $bid);
  1452. try {
  1453. Redis::HINCRBY('smart_push_test_book', $field, $balance);
  1454. Redis::sadd('smart_push_test_book_user_count' . $bid, $this->uid);
  1455. } catch (\Exception $e) {
  1456. }
  1457. }
  1458. }
  1459. private function smartPushTestBookSecondChapterUv($bid)
  1460. {
  1461. $smart_bid = ReadRecordService::getSmartPush($this->uid);
  1462. if ($smart_bid && in_array($bid, $smart_bid)) {
  1463. try {
  1464. Redis::sadd('smart_push_test_book_second_uv' . $bid, $this->uid);
  1465. } catch (\Exception $e) {
  1466. }
  1467. }
  1468. }
  1469. private function smartPushTestBookChapterUv($bid, $sequence)
  1470. {
  1471. $smart_bid = ReadRecordService::getSmartPush($this->uid);
  1472. if ($smart_bid && in_array($bid, $smart_bid)) {
  1473. try {
  1474. $key = 'smartPushTestBookChapterUv:bid:%s:seq:%s';
  1475. Redis::sadd(sprintf($key, $bid, $sequence), $this->uid);
  1476. } catch (\Exception $e) {
  1477. }
  1478. }
  1479. }
  1480. /**
  1481. * 测书 智能推送统计
  1482. * @param $bid
  1483. */
  1484. private function smartPushTestBookPayPageUv($bid)
  1485. {
  1486. $smart_bid = ReadRecordService::getSmartPush($this->uid);
  1487. if ($smart_bid && in_array($bid, $smart_bid)) {
  1488. try {
  1489. $key = 'smartPushTestBookPayPageUv:bid:%s';
  1490. Redis::sadd(sprintf($key, $bid), $this->uid);
  1491. } catch (\Exception $e) {
  1492. }
  1493. }
  1494. }
  1495. /**
  1496. * 派单精确统计--章节
  1497. * @param $bid
  1498. * @param $sequence
  1499. */
  1500. private function sendOrderChapterUv($bid, $sequence)
  1501. {
  1502. if ($this->send_order_id) {
  1503. $send_order_bid = Redis::hget('sendOrderIdToBid', $this->send_order_id);
  1504. if (!$send_order_bid) {
  1505. $send_order_info = SendOrderService::getById($this->send_order_id);
  1506. if ($send_order_info) {
  1507. $send_order_bid = $send_order_info->book_id;
  1508. Redis::hset('sendOrderIdToBid', $this->send_order_id, $send_order_bid . '-' . time());
  1509. }
  1510. } else {
  1511. $send_order_bid_arr = explode('-', $send_order_bid);
  1512. $send_order_bid = $send_order_bid_arr[0];
  1513. }
  1514. if ($send_order_bid && $send_order_bid == $bid) {
  1515. try {
  1516. $key = 'accurateSendOrderChapterUv:bid:%s:seq:%s:sendorderid:' . $this->send_order_id;
  1517. Redis::sadd(sprintf($key, $bid, $sequence), $this->uid);
  1518. } catch (\Exception $e) {
  1519. }
  1520. }
  1521. }
  1522. }
  1523. /**
  1524. * 派单精确统计--强关页面uv
  1525. * @param $bid
  1526. */
  1527. private function sendOrderSubscribePageUv($bid)
  1528. {
  1529. if ($this->send_order_id) {
  1530. $send_order_bid = Redis::hget('sendOrderIdToBid', $this->send_order_id);
  1531. if (!$send_order_bid) {
  1532. $send_order_info = SendOrderService::getById($this->send_order_id);
  1533. if ($send_order_info) {
  1534. $send_order_bid = $send_order_info->book_id;
  1535. Redis::hset('sendOrderIdToBid', $this->send_order_id, $send_order_bid . '-' . time());
  1536. }
  1537. } else {
  1538. $send_order_bid_arr = explode('-', $send_order_bid);
  1539. $send_order_bid = $send_order_bid_arr[0];
  1540. }
  1541. if ($send_order_bid && $send_order_bid == $bid) {
  1542. try {
  1543. $key = 'accurateSendOrderSubscribePageUv:bid:%s:sendorderid:' . $this->send_order_id;
  1544. Redis::sadd(sprintf($key, $bid), $this->uid);
  1545. } catch (\Exception $e) {
  1546. }
  1547. }
  1548. }
  1549. }
  1550. /**
  1551. * 派单精确统计--支付页面uv
  1552. * @param $bid
  1553. */
  1554. private function sendOrderPayPageUv($bid)
  1555. {
  1556. if ($this->send_order_id) {
  1557. $send_order_bid = Redis::hget('sendOrderIdToBid', $this->send_order_id);
  1558. if (!$send_order_bid) {
  1559. $send_order_info = SendOrderService::getById($this->send_order_id);
  1560. if ($send_order_info) {
  1561. $send_order_bid = $send_order_info->book_id;
  1562. Redis::hset('sendOrderIdToBid', $this->send_order_id, $send_order_bid . '-' . time());
  1563. }
  1564. } else {
  1565. $send_order_bid_arr = explode('-', $send_order_bid);
  1566. $send_order_bid = $send_order_bid_arr[0];
  1567. }
  1568. if ($send_order_bid && $send_order_bid == $bid) {
  1569. try {
  1570. $key = 'accurateSendOrderPayPageUv:bid:%s:send_order_id:' . $this->send_order_id;
  1571. Redis::sadd(sprintf($key, $bid), $this->uid);
  1572. } catch (\Exception $e) {
  1573. }
  1574. }
  1575. }
  1576. }
  1577. private function recordReaderUvAndPv()
  1578. {
  1579. WapVisitStatService::recordReaderUvAndPv($this->uid, $this->distribution_channel_id);
  1580. }
  1581. //用户是否在广告样本中
  1582. private function isUserInAdSample(){
  1583. $res = DataAnalysisSelectUserService::getByUidAndType($this->uid,'AD_V2');
  1584. if($res){
  1585. return true;
  1586. }else{
  1587. return false;
  1588. }
  1589. }
  1590. //阅读页面底部是否显示广告
  1591. private function isShowAd(){
  1592. $ad_status = env('AD_STATUS',1);
  1593. if(!$ad_status){
  1594. return ;
  1595. }
  1596. if(!in_array($this->distribution_channel_id,[2,5,14,8,123,146,148,155,160,196,202,211,255,256,266,271,273,318,691,722,4053,4236,4237,4241,4334,4364,4427,4487,4488])){
  1597. return ;
  1598. }
  1599. //按章付费才显示
  1600. if($this->book_info->charge_type != 'CHAPTER'){
  1601. return ;
  1602. }
  1603. //用户是否在广告样本中
  1604. if(!$this->isUserInAdSample()) return ;
  1605. $cid = 0;
  1606. if($this->chapter && $this->chapter->next_cid){
  1607. $cid = $this->chapter->next_cid;
  1608. }
  1609. if(!$cid){
  1610. return ;
  1611. }
  1612. //付费用户没有广告
  1613. if(OrderService::isPaidUser($this->uid)) return ;
  1614. //如果下一张已经付费,广告不显示
  1615. if($this->getOrderRecord($this->book_info->bid, $cid)){
  1616. return ;
  1617. }
  1618. $next_chapter = ChapterService::getChapterNameById($cid, $this->book_info->bid);
  1619. //下一章事vip的话 才显示广告
  1620. if(!$next_chapter || !$next_chapter->is_vip){
  1621. return ;
  1622. }
  1623. $price = $this->getPrice($this->book_info,$next_chapter);
  1624. $flag = $price > $this->user->balance;
  1625. if( $flag ){
  1626. $this->chapter->is_show_ad = 1;
  1627. AdVisitStatService::create($this->uid,$this->book_info->bid,$this->cid,'EXPOSURE');
  1628. }
  1629. }
  1630. public function getWechatJsConfig(Request $request)
  1631. {
  1632. //try {
  1633. // $chapter->is_show_share_button = 1;
  1634. $bid = $request->input('bid', '');
  1635. $cid = $request->input('cid', '');
  1636. $url = $request->input('url', '');
  1637. $url = urldecode($url);
  1638. \Log::info('url:' . ($this->uid) . $url);
  1639. if (empty($bid) || empty($cid) || empty($url)) {
  1640. return response()->error('PARAM_EMPTY');
  1641. }
  1642. $share_url = 'https://'._domain().'/detail?fromtype=readershare&id='.$bid.'&fromflag='.($this->uid).'&fromcid='.$cid;
  1643. //$js_config = ChapterShareWechatConfigService::getConfig($url);
  1644. $app_hash = array(
  1645. 4025=>['appid'=>'wx80b618c9dcc940f7','appsecret'=>'255a2de8db51e4084b5e9087d26d4ecb'],
  1646. 4147=>['appid'=>'wx2a99699cd9572812','appsecret'=>'0e0d57f94eeba50abb3af6883df05a5c'],
  1647. 691=>['appid'=>'wx5cefcd251dc40693','appsecret'=>'755f64c85173dad21f20870e38f59d8a'],
  1648. 123=>['appid'=>'wx983808610aa9dcc5','appsecret'=>'91002999590b79f3c7be35fd73c04049'],
  1649. 211=>['appid'=>'wx39338e374cc2055b','appsecret'=>'1a4c2039be271b3811182be5bb53eb34'],
  1650. );
  1651. $appId = $app_hash[$this->distribution_channel_id]['appid'];
  1652. $appSecret = $app_hash[$this->distribution_channel_id]['appsecret'];
  1653. $js_config = (new ChapterShareWechatConfigService($appId,$appSecret))->getSignPackage($url);
  1654. /*$appid = DB::table('official_accounts')->where('distribution_channel_id',$this->distribution_channel_id)->first();//(['distribution_channel_id'=>$this->distribution_channel_id]);
  1655. $appid = $appid->appid;
  1656. //\Log::info('get_appid:'.($appid));
  1657. $js_config = (new ChapterShareWechatConfigService($appid))->getSignPackage($url);
  1658. //$chapter->js_config = $js_config;
  1659. //$chapter->share_url = $share_url;
  1660. $book = BookService::getBookById(Hashids::decode($bid)[0]);
  1661. $first_cid = $book->first_cid;
  1662. $share_url = 'https://site' . encodeDistributionChannelId($this->distribution_channel_id) . '.' . env('SHARE_DOMAIN') . '/reader?fromtype=readershare&bid=' . $bid . '&cid=' . ($first_cid) . '&fromflag=' . ($this->uid) . '&fromcid=' . $cid;
  1663. /*if (in_array($this->uid, explode(',', env('TEST_SHARE_UIDS')))) {
  1664. $share_url = 'https://site5017zqeyzwgyx9n8.zhuishuyun.com/reader?fromtype=readershare&bid=' . $bid . '&fromflag=' . ($this->uid) . '&fromcid=' . $cid;
  1665. }*/
  1666. $book = BookService::getBookById(Hashids::decode($bid)[0]);
  1667. $first_cid = $book->first_cid;
  1668. $share_url = 'https://site' . encodeDistributionChannelId($this->distribution_channel_id) . '.' . env('SHARE_DOMAIN') . '/reader?fromtype=readershare&bid=' . $bid . '&cid=' . ($first_cid) . '&fromflag=' . ($this->uid) . '&fromcid=' . $cid;
  1669. if (in_array($this->distribution_channel_id, [2, 14])) {
  1670. $js_config = ChapterShareWechatConfigService::getConfig($url);
  1671. $share_url = 'https://site' . ($this->distribution_channel_id) . '.' . env('SHARE_DOMAIN') . '/reader?fromtype=readershare&bid=' . $bid . '&cid=' . ($first_cid) . '&fromflag=' . ($this->uid) . '&fromcid=' . $cid;
  1672. }
  1673. $js_config['share_url'] = $share_url;
  1674. /*} catch (\Exception $e) {
  1675. \Log::error($e->getMessage());
  1676. }*/
  1677. //\Log::info($js_config);
  1678. return response()->success($js_config);
  1679. }
  1680. }