Task.php 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539
  1. <?php
  2. namespace app\api\controller;
  3. use app\common\model\ActivityApply;
  4. use app\common\model\ActivityApplyItem;
  5. use app\common\model\ActivityPrice;
  6. use app\common\model\ArticleItem;
  7. use app\common\model\DatumUrl;
  8. use app\common\model\ForumReply;
  9. use app\common\model\GoodsOrder;
  10. use app\common\model\GoodsOrderItem;
  11. use app\common\model\LabelMessage;
  12. use app\common\model\StoreGoodsItem;
  13. use app\common\model\TopSearch;
  14. use app\common\model\User;
  15. use app\common\model\UserFacility;
  16. use app\common\model\UserForum;
  17. use app\common\model\UserMessage;
  18. use app\common\model\UserSearch;
  19. use app\common\model\UserTag;
  20. use app\common\model\VideoUrl;
  21. use app\common\service\UserSynth;
  22. use think\Db;
  23. /**
  24. * @title 定时任务
  25. * Class Task
  26. * @controller Task
  27. * @group base
  28. */
  29. class Task extends Base
  30. {
  31. /**
  32. * @title 标签推送[根据标签id]
  33. * @desc 标签推送
  34. * @author qc
  35. * @url /api/Task/taskUserMessage
  36. */
  37. public function taskUserMessage(){
  38. $list = UserMessage::field('id,user_id,content')->where('jg_type',1)->where('jg_status',0)->limit(0,50)->order('id')->select();
  39. foreach ($list as $v) {
  40. UserMessage::where(['id'=>$v['id']])->update(['jg_status'=>1]);
  41. UserMessage::Jpush($v['user_id'],$v['content']);
  42. }
  43. }
  44. /**
  45. * @title 同步回答量
  46. * @desc 同步回答量
  47. * @author qc
  48. * @url /api/Task/forum_num
  49. */
  50. public function forum_num(){
  51. $forum = UserForum::where('is_deleted',0)->field('id')->select();
  52. foreach ($forum as $k => $v){
  53. $apply = ForumReply::where('forum_id',$v['id'])->where('is_deleted',0)->count();
  54. if($apply){
  55. UserForum::where('id',$v['id'])->update(['r_num'=>$apply]);
  56. }else{
  57. UserForum::where('id',$v['id'])->update(['r_num'=>0]);
  58. }
  59. }
  60. $this->success('执行完成');
  61. }
  62. /**
  63. * @title 标签推送[根据标签id]
  64. * @desc 标签推送
  65. * @author qc
  66. * @url /api/Task/taskLabelMessage
  67. */
  68. //按照标签推送
  69. public function taskLabelMessage()
  70. {
  71. $list = LabelMessage::where('jg_status',0)->where('is_deleted',0)->select()->toArray();
  72. foreach ($list as $v) {
  73. LabelMessage::where(['id'=>$v['id']])->update(['jg_status'=>1]);
  74. $ext = [];
  75. $ext['title'] = $v['title'];
  76. $channel = ['xiaomi'=>"108240",'huawei'=>'IM','oppo'=>'news']; //公信
  77. //$channel = ['xiaomi'=>"108237",'huawei'=>'IM','oppo'=>'message']; //私信
  78. // 全部推送
  79. if(!$v['label']) {
  80. $user_arr = User::where('status',1)->where('is_deleted',0)->column('id');
  81. // return json($user_arr);
  82. foreach ($user_arr as $user_id) {
  83. if($v['type'] == 2){
  84. $res = UserMessage::Jpush($user_id,$v['content'],'','','','',$channel,$ext);
  85. }else if($v['type'] == 3) {
  86. // $ext = [];
  87. // $ext['title'] = $v['title'];
  88. // $channel = ['xiaomi'=>"108240",'huawei'=>'IM','oppo'=>'news'];
  89. if(in_array($v['module'],['video','article','datum'])) {
  90. $res = UserMessage::Jpush($user_id,$v['content'],$v['module'],'',$v['first_id'],$v['second_id'],$channel,$ext);
  91. }else{
  92. // if($v['module'] == 'supplier'){
  93. // //供应商产品
  94. // $res = UserMessage::Jpush($user_id,$v['content'],$v['module'],5,$v['first_id'],'',$channel,$ext);
  95. // }
  96. // if($v['module'] == 'activity'){
  97. // //活动
  98. // $res = UserMessage::Jpush($user_id,$v['content'],$v['module'],3,$v['first_id'],$channel,$ext);
  99. // }
  100. // if($v['module'] == 'forum'){
  101. // //问答
  102. // $res = UserMessage::Jpush($user_id,$v['content'],$v['module'],6,$v['first_id'],$channel,$ext);
  103. // }
  104. // if($v['module'] == 'press'){
  105. // //新闻 暂时没有对应type
  106. // $res = UserMessage::Jpush($user_id,$v['content'],$v['module'],5,$v['first_id'],$channel,$ext);
  107. // }
  108. // if($v['module'] == 'recruit'){
  109. // //招聘 暂时没有对应type
  110. // $res = UserMessage::Jpush($user_id,$v['content'],$v['module'],5,$v['first_id'],$channel,$ext);
  111. // }
  112. $res = UserMessage::Jpush($user_id,$v['content'],$v['module'],'',$v['first_id'],$v['second_id'],$channel,$ext);
  113. }
  114. }
  115. // return json($res);
  116. // $arr = [
  117. // 'user_id' => $user_id,
  118. // 'type' => 4,
  119. // 'log' => json_encode($res),
  120. // ];
  121. // Db::name('client_log')->insert($arr);
  122. }
  123. }else{
  124. // 搜索内容推送
  125. if($v['type'] == 4){
  126. $label = Db::name('user_label')->group('user_id')->where('label','in',$v['label'])->column('id');
  127. return json($label);
  128. }else{
  129. $label_arr = explode(',',$v['label']);
  130. $where_str = '';
  131. $search_arr=[];
  132. $tag_arr = [];
  133. foreach ($label_arr as $t){
  134. $search_arr[] = " title like '".'%'.$t."%'" .' ';
  135. $tag_arr[] = $t;
  136. }
  137. if(!empty($search_arr)) $where_str = implode(' OR ',$search_arr);
  138. // $user_arr = UserSearch::where($where_str)->column('user_id');
  139. //// return json($user_arr);
  140. $user_arr = [];
  141. $user = User::where('label','<>',null)->where('label','<>','||')->where('is_deleted',0)->field('id,label')->select();
  142. $tags = UserTag::where('title','in',$tag_arr)->column('id');
  143. foreach ($user as $key => $val){
  144. $label = explode('|',$val['label']);
  145. foreach ($label as $val1){
  146. if (array_search($val1, $tags) !== false) {
  147. // echo '存在';
  148. $user_arr[] = $val['id'];
  149. } else {
  150. // echo '不存在';
  151. }
  152. }
  153. }
  154. $user_arr = array_unique($user_arr);
  155. }
  156. foreach (array_unique($user_arr) as $user_id) {
  157. if($v['type'] == 2){
  158. // $ext = [];
  159. // $ext['title'] = $v['title'];
  160. // $channel = ['xiaomi'=>"108240",'huawei'=>'IM','oppo'=>'news'];
  161. // $res = UserMessage::Jpush($user_id,$v['content']);
  162. $res = UserMessage::Jpush($user_id,$v['content'],'','','','',$channel,$ext);
  163. }else if($v['type'] == 3 || $v['type'] == 4) {
  164. // $ext = [];
  165. // $ext['title'] = $v['title'];
  166. // $channel = ['xiaomi'=>"108240",'huawei'=>'IM','oppo'=>'news'];
  167. if(in_array($v['module'],['video','article','datum'])) {
  168. $res = UserMessage::Jpush($user_id,$v['content'],$v['module'],'',$v['first_id'],$v['second_id'],$channel,$ext);
  169. }else{
  170. $res = UserMessage::Jpush($user_id,$v['content'],$v['module'],'',$v['first_id'],'',$channel,$ext);
  171. }
  172. }
  173. }
  174. }
  175. }
  176. }
  177. /**
  178. * @title 半年清理一次设备号
  179. * @desc
  180. * @author qc
  181. * @url /api/Task/removeFacility
  182. */
  183. public function removeFacility(){
  184. UserFacility::where(['set_time','< time',date('Y-m-d H:i:s',strtotime('-180 days'))])->update(['facility'=>'','set_time'=>date('Y-m-d H:i:s')]);
  185. }
  186. /**
  187. * @title 定时取消活动订单
  188. * @desc
  189. * @author qc
  190. * @url /api/Task/cancelApplyOrder
  191. */
  192. public function cancelApplyOrder()
  193. {
  194. $list = ActivityApply::with(['itemList'])
  195. ->where([['create_at','< time',date('Y-m-d H:i:s',strtotime('-5 minutes'))],['pay_type','<>',9],['pay_state','=',0],['cancel_state','=',0]])
  196. ->select()->toArray();
  197. foreach ($list as $v) {
  198. Db::startTrans();
  199. try {
  200. ActivityApply::where('id',$v['id'])->update(['cancel_state'=>1]);
  201. $act_title = \app\common\model\Activity::where('id',$v['act_id'])->value('title');
  202. $info_url = 'https://'.$_SERVER['HTTP_HOST'].'/dist/#/activity_order_info?id='.$v['id'];
  203. $message = '您报名的《'.$act_title."》活动订单,由于超时未支付,已为您取消";//,点击<a href=\"$info_url\">查看详情</a>";
  204. UserMessage::sendUserMessage($v['user_id'],'apply',4,0,0,$v['id'],$message,$v['id']);
  205. foreach ($v['item_list'] as $it) {
  206. ActivityPrice::where('id',$it['price_id'])->setInc('stock',$it['num']);
  207. }
  208. Db::commit();
  209. }catch (\Exception $e) {
  210. Db::rollback();
  211. }
  212. }
  213. }
  214. /**
  215. * @title 定时取消商城订单
  216. * @desc
  217. * @author qc
  218. * @url /api/Task/cancelGoodsOrder
  219. */
  220. public function cancelGoodsOrder()
  221. {
  222. $list = GoodsOrder::with(['orderItem'])
  223. ->where([['create_at','< time',date('Y-m-d H:i:s',strtotime('-1 day'))],['status','=',0],['pay_state','=',0],['cancel_state','=',0]])
  224. ->select()->toArray();
  225. // return json($list);
  226. $num = 0;
  227. foreach ($list as $v) {
  228. $order_id = $v['id'];
  229. Db::startTrans();
  230. try {
  231. $detail = $v;
  232. if($detail['status'] != 0) $this->exception('订单状态有误');
  233. // 取消订单状态
  234. GoodsOrder::update(['status'=>9,'cancel_state'=>1],['id'=>$order_id]);
  235. // 订单处理
  236. foreach ($detail['order_item'] as $item_info) {
  237. // 更改订单详情状态
  238. GoodsOrderItem::update(['status'=>9],['id'=>$item_info['id']]);
  239. StoreGoodsItem::stockChange($item_info['spec_id'],$item_info['goods_id'],$item_info['num']);
  240. }
  241. Db::commit();
  242. }catch (\Exception $e){
  243. $this->ret_msg = $e->getMessage();
  244. $this->is_commit = false;
  245. Db::rollback();
  246. }
  247. $num++;
  248. }
  249. $this->success('取消'.$num.'条订单');
  250. }
  251. /**
  252. * @title 定时自动收货
  253. * @desc
  254. * @author qc
  255. * @url /api/Task/confirmGoodsOrder
  256. */
  257. public function confirmGoodsOrder(){
  258. //express_send_at 发货时间
  259. //['express_send_at','< time',date('Y-m-d H:i:s',strtotime('-2 days'))]
  260. $list = GoodsOrder::where([['pay_state','=',1],['status','=',2]])
  261. ->select()->toArray();
  262. foreach ($list as $detail) {
  263. $data = get_delivery($detail['express_send_no']);
  264. Db::startTrans();
  265. if($data['issign'] == 1){
  266. $express_send_date = end($data['list']);
  267. $express_send_date = $express_send_date['time'];
  268. if($express_send_date < date('Y-m-d H:i:s',strtotime('-2 days'))){
  269. try {
  270. $order_id = $detail['id'];
  271. // $detail = GoodsOrder::where('id',$order_id)->find()->toArray();
  272. if($detail['status'] == 0) $this->error('订单未支付');
  273. if($detail['status'] == 1) $this->error('订单未发货');
  274. if($detail['status'] == 3) $this->error('订单已收货');
  275. GoodsOrder::update(['status'=>3,'express_state'=>2],['id'=>$order_id]);
  276. GoodsOrderItem::update(['status'=>3,'express_state'=>2],['order_id'=>$order_id]);
  277. UserMessage::create(['user_id'=>$detail['user_id'],'type_id'=>3,'relation_id'=>$order_id,'content'=>'订单收货成功']);
  278. Db::commit();
  279. }catch (\Exception $e) {
  280. Db::rollback();
  281. }
  282. }
  283. }
  284. }
  285. $this->success('执行成功');
  286. }
  287. /**
  288. * @title 活动报名定时提醒
  289. * @desc
  290. * @author qc
  291. * @url /api/Task/activityReminder
  292. */
  293. public function activityReminder()
  294. {
  295. $where = [];
  296. $where[] = ['task_send','=',0];
  297. $where[] = ['start_time','> time',date('Y-m-d H:i:s',strtotime('-24 hours'))];
  298. $where[] = ['status','=',1];
  299. $where[] = ['is_deleted','=',0];
  300. $list = \app\common\model\Activity::where($where)->select()->toArray();
  301. foreach ($list as $act_info)
  302. {
  303. \app\common\model\Activity::where(['id'=>$act_info['id']])->update(['task_send'=>1]);
  304. $ticket_list = ActivityApplyItem::where(['act_id'=>$act_info['id'],'sh_status'=>1,'is_hx'=>0])->select();
  305. foreach ($ticket_list as $v) {
  306. // 短信通知
  307. if($v['phone_pre'] == '86' && $v['phone']) UserSynth::phoneMessageSend($v['phone'],0,['ActivityName'=>$act_info['title'], 'time'=>$act_info['start_time'], 'adress'=>$act_info['address']]);
  308. }
  309. }
  310. }
  311. /**
  312. * @title 热搜定时
  313. * @desc
  314. * @author qc
  315. * @url /api/Task/topSearchTask
  316. */
  317. public function topSearchTask()
  318. {
  319. $where[] = ['hot_time','< time',date('Y-m-d H:i:s',strtotime('-7 days'))];
  320. // 视频
  321. $list = VideoUrl::where($where)->column('id');
  322. array_walk($list,function ($v){
  323. VideoUrl::where('id',$v)->update(['hot_time'=>date('Y-m-d H:i:s'),'hot_num'=>0]);
  324. TopSearch::saveData($v,'video');
  325. });
  326. // 图文
  327. $list = ArticleItem::where($where)->column('id');
  328. array_walk($list,function ($v){
  329. ArticleItem::where('id',$v)->update(['hot_time'=>date('Y-m-d H:i:s'),'hot_num'=>0]);
  330. TopSearch::saveData($v,'article');
  331. });
  332. // 资料
  333. $list = DatumUrl::where($where)->column('id');
  334. array_walk($list,function ($v){
  335. DatumUrl::where('id',$v)->update(['hot_time'=>date('Y-m-d H:i:s'),'hot_num'=>0]);
  336. TopSearch::saveData($v,'datum');
  337. });
  338. // 活动
  339. $list = \app\common\model\Activity::where($where)->column('id');
  340. array_walk($list,function ($v){
  341. \app\common\model\Activity::where('id',$v)->update(['hot_time'=>date('Y-m-d H:i:s'),'hot_num'=>0]);
  342. TopSearch::saveData($v,'activity');
  343. });
  344. // 需求
  345. $list = \app\common\model\PlatformDemand::where($where)->column('id');
  346. array_walk($list,function ($v){
  347. \app\common\model\PlatformDemand::where('id',$v)->update(['hot_time'=>date('Y-m-d H:i:s'),'hot_num'=>0]);
  348. TopSearch::saveData($v,'demand');
  349. });
  350. // 新闻
  351. $list = \app\common\model\Press::where($where)->column('id');
  352. array_walk($list,function ($v){
  353. \app\common\model\Press::where('id',$v)->update(['hot_time'=>date('Y-m-d H:i:s'),'hot_num'=>0]);
  354. TopSearch::saveData($v,'press');
  355. });
  356. // 问答
  357. $list = \app\common\model\UserForum::where($where)->column('id');
  358. array_walk($list,function ($v){
  359. \app\common\model\UserForum::where('id',$v)->update(['hot_time'=>date('Y-m-d H:i:s'),'hot_num'=>0]);
  360. TopSearch::saveData($v,'forum');
  361. });
  362. // 招聘
  363. $list = \app\common\model\Recruit::where($where)->column('id');
  364. array_walk($list,function ($v){
  365. \app\common\model\Recruit::where('id',$v)->update(['hot_time'=>date('Y-m-d H:i:s'),'hot_num'=>0]);
  366. TopSearch::saveData($v,'recruit');
  367. });
  368. // 供应商
  369. $list = \app\common\model\SupplierGoods::where($where)->column('id');
  370. array_walk($list,function ($v){
  371. \app\common\model\SupplierGoods::where('id',$v)->update(['hot_time'=>date('Y-m-d H:i:s'),'hot_num'=>0]);
  372. TopSearch::saveData($v,'supplier_goods');
  373. });
  374. // 商品
  375. $list = \app\common\model\StoreGoods::where($where)->column('id');
  376. array_walk($list,function ($v){
  377. \app\common\model\StoreGoods::where('id',$v)->update(['hot_time'=>date('Y-m-d H:i:s'),'hot_num'=>0]);
  378. TopSearch::saveData($v,'goods');
  379. });
  380. $this->success('执行成功');
  381. }
  382. /**
  383. * @title 热搜定时1
  384. * @desc
  385. * @author qc
  386. * @url /api/Task/emptyTopSearchTask
  387. */
  388. public function emptyTopSearchTask()
  389. {
  390. //热搜规则
  391. //根据后台输入的热搜阅读量排序
  392. //每10分钟前端更新一次
  393. //后台热搜阅读量每天晚上的23:59点,清楚7天前的那一天所有新增的内容的热搜阅读量
  394. //如:
  395. //2023年11月5日,新增了2篇文章,1个视频(不关心是几点新增的)
  396. //2023年11月12日,晚上23:59,将新增的2篇文章跟1个视频的热搜阅读清0
  397. //热搜阅读量可以手动更改,每次有用户点击时,热搜阅读量也增加1
  398. //top_search hot_num
  399. $start_time = date('Y-m-d 00:00:00',strtotime('-7 days'));
  400. $end_time = date('Y-m-d 23:59:59',strtotime('-7 days'));
  401. // return $start_time.'---'.$end_time;
  402. $where[] = ['hot_time','> time',$start_time];
  403. $where[] = ['hot_time','< time',$end_time];
  404. // $list = TopSearch::where($where)->column('id');
  405. // return json($list);
  406. // TopSearch::where($where)->update(['hot_num'=>0]);
  407. // foreach ($list as $k => $v){
  408. // TopSearch::where('id',$v)->update(['hot_num'=>0]);
  409. // }
  410. $list = VideoUrl::where($where)->column('id');
  411. array_walk($list,function ($v){
  412. VideoUrl::where('id',$v)->update(['hot_time'=>date('Y-m-d H:i:s'),'hot_num'=>0]);
  413. TopSearch::saveData($v,'video');
  414. });
  415. // 图文
  416. $list = ArticleItem::where($where)->column('id');
  417. array_walk($list,function ($v){
  418. ArticleItem::where('id',$v)->update(['hot_time'=>date('Y-m-d H:i:s'),'hot_num'=>0]);
  419. TopSearch::saveData($v,'article');
  420. });
  421. // 资料
  422. $list = DatumUrl::where($where)->column('id');
  423. array_walk($list,function ($v){
  424. DatumUrl::where('id',$v)->update(['hot_time'=>date('Y-m-d H:i:s'),'hot_num'=>0]);
  425. TopSearch::saveData($v,'datum');
  426. });
  427. // 活动
  428. $list = \app\common\model\Activity::where($where)->column('id');
  429. array_walk($list,function ($v){
  430. \app\common\model\Activity::where('id',$v)->update(['hot_time'=>date('Y-m-d H:i:s'),'hot_num'=>0]);
  431. TopSearch::saveData($v,'activity');
  432. });
  433. // 需求
  434. $list = \app\common\model\PlatformDemand::where($where)->column('id');
  435. array_walk($list,function ($v){
  436. \app\common\model\PlatformDemand::where('id',$v)->update(['hot_time'=>date('Y-m-d H:i:s'),'hot_num'=>0]);
  437. TopSearch::saveData($v,'demand');
  438. });
  439. // 新闻
  440. $list = \app\common\model\Press::where($where)->column('id');
  441. array_walk($list,function ($v){
  442. \app\common\model\Press::where('id',$v)->update(['hot_time'=>date('Y-m-d H:i:s'),'hot_num'=>0]);
  443. TopSearch::saveData($v,'press');
  444. });
  445. // 问答
  446. $list = \app\common\model\UserForum::where($where)->column('id');
  447. array_walk($list,function ($v){
  448. \app\common\model\UserForum::where('id',$v)->update(['hot_time'=>date('Y-m-d H:i:s'),'hot_num'=>0]);
  449. TopSearch::saveData($v,'forum');
  450. });
  451. // 招聘
  452. $list = \app\common\model\Recruit::where($where)->column('id');
  453. array_walk($list,function ($v){
  454. \app\common\model\Recruit::where('id',$v)->update(['hot_time'=>date('Y-m-d H:i:s'),'hot_num'=>0]);
  455. TopSearch::saveData($v,'recruit');
  456. });
  457. // 供应商
  458. $list = \app\common\model\SupplierGoods::where($where)->column('id');
  459. array_walk($list,function ($v){
  460. \app\common\model\SupplierGoods::where('id',$v)->update(['hot_time'=>date('Y-m-d H:i:s'),'hot_num'=>0]);
  461. TopSearch::saveData($v,'supplier_goods');
  462. });
  463. // 商品
  464. $list = \app\common\model\StoreGoods::where($where)->column('id');
  465. array_walk($list,function ($v){
  466. \app\common\model\StoreGoods::where('id',$v)->update(['hot_time'=>date('Y-m-d H:i:s'),'hot_num'=>0]);
  467. TopSearch::saveData($v,'goods');
  468. });
  469. $this->success('执行成功');
  470. }
  471. /**
  472. * @title 定时取消商城订单
  473. * @desc
  474. * @author qc
  475. * @url /api/Task/cancelStoreGoods
  476. */
  477. public function cancelStoreGoods()
  478. {
  479. $list = GoodsOrder::with(['orderItem','orderRefund'])
  480. ->where([['pay_state','=',0],['status','=',0],['create_at','< time',date('Y-m-d H:i:s',strtotime('-1 days'))]])
  481. ->select()->toArray();
  482. foreach ($list as $detail) {
  483. // 取消订单状态
  484. GoodsOrder::update(['status'=>9,'cancel_state'=>1],['id'=>$detail['id']]);
  485. // 订单处理
  486. foreach ($detail['order_item'] as $item_info) {
  487. // 更改订单详情状态
  488. GoodsOrderItem::update(['status'=>9],['id'=>$item_info['id']]);
  489. StoreGoodsItem::stockChange($item_info['spec_id'],$item_info['goods_id'],$item_info['num']);
  490. }
  491. }
  492. $this->success('执行成功');
  493. }
  494. }