BookUpdate.php 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234
  1. <?php
  2. namespace App\Console\Commands;
  3. use Illuminate\Console\Command;
  4. use GuzzleHttp\Client;
  5. use App\Modules\Book\Models\Book;
  6. use App\Modules\Book\Models\Chapter;
  7. use Log;
  8. use App\Modules\Book\Services\BookConfigService;
  9. class BookUpdate extends Command
  10. {
  11. /**
  12. * The name and signature of the console command.
  13. *
  14. * @var string
  15. */
  16. protected $signature = 'book:update';
  17. /**
  18. * The console command description.
  19. *
  20. * @var string
  21. */
  22. protected $description = '更新所有图书章节内容';
  23. private $client;
  24. /**
  25. * Create a new command instance.
  26. *
  27. * @return void
  28. */
  29. public function __construct()
  30. {
  31. parent::__construct();
  32. $this->client = new Client(['timeout' => 10.0, 'allow_redirects' => true]);
  33. }
  34. /**
  35. * Execute the console command.
  36. *
  37. * @return mixed
  38. */
  39. public function handle()
  40. {
  41. $this->updateAll();
  42. }
  43. /**
  44. * 更新所有书的章节
  45. */
  46. public function updateAll()
  47. {
  48. set_time_limit(0);
  49. $exist_book = Book::where('ly_bid', '!=', '0')->where('status', 0)->select('id', 'ly_bid')->get();
  50. foreach ($exist_book as $v) {
  51. //Log::info('updateAll bid is: '.$v->id.'$ly_bid is :'.$v->ly_bid.'----------------------------');
  52. $this->updateOne($v->id, $v->ly_bid);
  53. }
  54. }
  55. /**
  56. * 更新章节内容 一本书的
  57. * @param $bid
  58. * @return int|string
  59. */
  60. public function updateOne($bid, $ly_bid)
  61. {
  62. set_time_limit(0);
  63. //$max_sequence = Chapter::where('bid', $bid)->max('sequence');
  64. //$max_sequence = $max_sequence ? $max_sequence : -1;
  65. //$max_sequence_chapter = Chapter::where('bid', $bid)->where('sequence', $max_sequence)->select('id')->first();
  66. //$max_sequence_chapter_id = isset($max_sequence_chapter->id) ? $max_sequence_chapter->id : 0;
  67. $this->bookStatus($bid, $ly_bid);
  68. $last_chapter = Chapter::where('bid', $bid)
  69. ->select('id', 'name', 'sequence', 'prev_cid', 'next_cid')
  70. ->orderBy('sequence', 'desc')
  71. ->first();
  72. $last_chapter_from_third = Chapter::where('bid', $bid)
  73. ->where('ly_chapter_id', '>', 0)
  74. ->select('id', 'name', 'sequence', 'prev_cid', 'next_cid', 'ly_chapter_id')
  75. ->orderBy('sequence', 'desc')
  76. ->first();
  77. $max_sequence_chapter_id = isset($last_chapter->id) ? $last_chapter->id : 0;
  78. $max_sequence = isset($last_chapter->sequence) ? $last_chapter->sequence : 0;
  79. $book_config_info = DB::table('book_configs')->where('bid',$bid)->first();
  80. try {
  81. $chapter_list_fromat = "http://www.leyuee.com/services/zwfx.aspx?method=chapterlist&bid=%s&token=sefaf23h7face";
  82. $res = $this->client->get(sprintf($chapter_list_fromat, $ly_bid));
  83. $res = $res->getBody()->getContents();
  84. } catch (\Exception $e) {
  85. Log::info($e);
  86. return '';
  87. }
  88. if (!$res) return '';
  89. $res = json_decode($res, true);
  90. if ($res && isset($res['code']) && $res['code'] == 200) {
  91. } else {
  92. return '';
  93. }
  94. $j = 0;
  95. if (isset($res['data']) && $res['data'] && is_array($res['data'])) {
  96. } else {
  97. return '';
  98. }
  99. $local_count = Chapter::where('bid', $bid)->where('ly_chapter_id', '>', 0)->count();
  100. $remote_count = 0;
  101. foreach ($res['data'] as $item1) {
  102. $remote_count += count($item1['chapters']);
  103. $item1 = null;
  104. }
  105. Log::info('$remote_count is: ' . $remote_count . '====$local_count :' . $local_count . '----');
  106. if ($remote_count <= $local_count) return '';
  107. Log::info('$bid =: ' . $bid . '---is lack---');
  108. $start = false;
  109. if (!$last_chapter) {
  110. $start = true;
  111. }
  112. $ly_last_chapter_id = 0;
  113. if ($last_chapter_from_third && isset($last_chapter_from_third->ly_chapter_id)) {
  114. $ly_last_chapter_id = $last_chapter_from_third->ly_chapter_id;
  115. }
  116. $size = 0;
  117. foreach ($res['data'] as $v1) {
  118. foreach ($v1['chapters'] as $v) {
  119. /*if ($v['chapter_order_number'] <= $max_sequence-1) {
  120. continue;
  121. }
  122. if (Chapter::where('bid', $bid)->where('ly_chapter_id', $v['chapter_id'])->count()) {
  123. continue;
  124. }*/
  125. if (!$start) {
  126. if ($v['chapter_id'] != $ly_last_chapter_id) {
  127. continue;
  128. } else {
  129. \Log::info($v);
  130. $start = true;
  131. continue;
  132. }
  133. }
  134. Log::info('bid: ' . $bid . '----ly_chapter_id: ' . $v['chapter_id']);
  135. $chapter_fromat = "http://www.leyuee.com/services/zwfx.aspx?method=chapter&bid=%s&cid=%s&token=sefaf23h7face";
  136. $cahpter_content_res = $this->client->get(sprintf($chapter_fromat, $ly_bid, $v['chapter_id']));
  137. $cahpter_content = $cahpter_content_res->getBody()->getContents();
  138. $temp = [
  139. 'bid' => $bid,
  140. 'name' => $v['chapter_name'],
  141. 'sequence' => ++$max_sequence,
  142. 'is_vip' => $v['chapter_need_pay'],
  143. 'prev_cid' => $max_sequence_chapter_id,
  144. 'next_cid' => '',
  145. 'recent_update_at' => date('Y-m-d H:i:s', $v['chapter_last_update_time']),
  146. 'ly_chapter_id' => $v['chapter_id']
  147. ];
  148. if ($cahpter_content) {
  149. $cahpter_content = json_decode($cahpter_content, true);
  150. $temp['size'] = ceil(strlen($cahpter_content['data']['chapter_content']) / 3);
  151. $temp['content'] = $cahpter_content['data']['chapter_content'];
  152. $size += $temp['size'];
  153. }
  154. $insert_res = Chapter::create($temp);
  155. Chapter::where('id', $max_sequence_chapter_id)->update(['next_cid' => $insert_res->id]);
  156. $max_sequence_chapter_id = $insert_res->id;
  157. $temp = null;
  158. $j++;
  159. }
  160. }
  161. $chapter_count = Chapter::where('bid', $bid)->count();
  162. $chapter_size = Chapter::where('bid', $bid)->sum('size');
  163. if ($j > 0) {
  164. Book::where('id', $bid)->update(['chapter_count' => $chapter_count, 'last_cid' => $max_sequence_chapter_id, 'size' => $chapter_size, 'last_chapter' => $v['chapter_name']]);
  165. $book_info = Book::find($bid);
  166. $this->recordUpdateInfo($bid,[
  167. 'book_name'=>$book_config_info->book_name,
  168. 'update_chapter_count'=>$j,
  169. 'update_words'=>$size,
  170. 'update_type'=>'add_chapter',
  171. 'channel_name'=>$book_info->category_id >=13 ? '女频':'男频'
  172. ]);
  173. }
  174. return $j;
  175. }
  176. private function bookStatus($bid, $ly_bid)
  177. {
  178. $status = 0;
  179. try {
  180. $book_info_url_format = "http://www.leyuee.com/services/zwfx.aspx?method=bookinfo&token=sefaf23h7face&bid=%s";
  181. $res = $this->client->get(sprintf($book_info_url_format, $ly_bid));
  182. $res = $res->getBody()->getContents();
  183. if ($res) {
  184. $res = json_decode($res, true);
  185. if (isset($res['data']) && isset($res['data']['book_state'])) {
  186. $status = $res['data']['book_state'];
  187. }
  188. }
  189. } catch (\Exception $e) {
  190. }
  191. if ($status) {
  192. Book::where('id', $bid)->update(['status' => $status]);
  193. }
  194. }
  195. private function recordUpdateInfo($bid, $data)
  196. {
  197. // 2 book_updates 的更新记录
  198. DB::table('book_updates')->insert([
  199. 'bid' => $bid,
  200. 'book_name' => $data['book_name'],
  201. 'channel_name' => $data['channel_name'],
  202. 'update_date' => date('Y-m-d'),
  203. 'update_chapter_count' => $data['update_chapter_count'],
  204. 'update_words' => $data['update_words'],
  205. 'update_type' => $data['update_type'],
  206. 'created_at' => date('Y-m-d H:i:s'),
  207. 'updated_at' => date('Y-m-d H:i:s')
  208. ]);
  209. }
  210. }