Task.php 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246
  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\LabelMessage;
  9. use app\common\model\TopSearch;
  10. use app\common\model\User;
  11. use app\common\model\UserFacility;
  12. use app\common\model\UserMessage;
  13. use app\common\model\UserSearch;
  14. use app\common\model\VideoUrl;
  15. use app\common\service\UserSynth;
  16. use think\Db;
  17. /**
  18. * @title 定时任务
  19. * Class Task
  20. * @controller Task
  21. * @group base
  22. */
  23. class Task extends Base
  24. {
  25. /**
  26. * @title 标签推送[根据标签id]
  27. * @desc 标签推送
  28. * @author qc
  29. * @url /api/Task/taskUserMessage
  30. */
  31. public function taskUserMessage(){
  32. $list = UserMessage::field('id,user_id,content')->where('jg_type',1)->where('jg_status',0)->limit(0,50)->order('id')->select();
  33. foreach ($list as $v) {
  34. UserMessage::where(['id'=>$v['id']])->update(['jg_status'=>1]);
  35. UserMessage::Jpush($v['user_id'],$v['content']);
  36. }
  37. }
  38. /**
  39. * @title 标签推送[根据标签id]
  40. * @desc 标签推送
  41. * @author qc
  42. * @url /api/Task/taskLabelMessage
  43. */
  44. //按照标签推送
  45. public function taskLabelMessage()
  46. {
  47. $list = LabelMessage::where('jg_status',0)->where('is_deleted',0)->select()->toArray();
  48. foreach ($list as $v) {
  49. LabelMessage::where(['id'=>$v['id']])->update(['jg_status'=>1]);
  50. // 全部推送
  51. if(!$v['label']) {
  52. $user_arr = User::where('status',1)->where('is_deleted',0)->column('id');
  53. foreach ($user_arr as $user_id) {
  54. if($v['type'] == 2){
  55. $res = UserMessage::Jpush($user_id,$v['content']);
  56. }else if($v['type'] == 3) {
  57. if(in_array($v['module'],['video','article','datum'])) {
  58. $res = UserMessage::Jpush($user_id,$v['content'],$v['module'],'',$v['first_id'],$v['second_id']);
  59. }else{
  60. $res = UserMessage::Jpush($user_id,$v['content'],$v['module'],'',$v['first_id']);
  61. }
  62. }
  63. }
  64. }else{
  65. // 搜索内容推送
  66. $label_arr = explode(',',$v['label']);
  67. $where_str = '';
  68. $search_arr=[];
  69. foreach ($label_arr as $t){
  70. $search_arr[] = " title like '".'%'.$t."%'" .' ';
  71. }
  72. if(!empty($search_arr)) $where_str = implode(' OR ',$search_arr);
  73. $user_arr = UserSearch::where($where_str)->column('user_id');
  74. foreach (array_unique($user_arr) as $user_id) {
  75. if($v['type'] == 2){
  76. $res = UserMessage::Jpush($user_id,$v['content']);
  77. }else if($v['type'] == 3) {
  78. if(in_array($v['module'],['video','article','datum'])) {
  79. $res = UserMessage::Jpush($user_id,$v['content'],$v['module'],'',$v['first_id'],$v['second_id']);
  80. }else{
  81. $res = UserMessage::Jpush($user_id,$v['content'],$v['module'],'',$v['first_id']);
  82. }
  83. }
  84. }
  85. }
  86. }
  87. }
  88. /**
  89. * @title 半年清理一次设备号
  90. * @desc
  91. * @author qc
  92. * @url /api/Task/removeFacility
  93. */
  94. public function removeFacility(){
  95. 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')]);
  96. }
  97. /**
  98. * @title 定时取消活动订单
  99. * @desc
  100. * @author qc
  101. * @url /api/Task/cancelApplyOrder
  102. */
  103. public function cancelApplyOrder()
  104. {
  105. $list = ActivityApply::with(['itemList'])
  106. ->where([['create_at','< time',date('Y-m-d H:i:s',strtotime('-5 minutes'))],['pay_type','<>',9],['pay_state','=',0],['cancel_state','=',0]])
  107. ->select()->toArray();
  108. foreach ($list as $v) {
  109. Db::startTrans();
  110. try {
  111. ActivityApply::where('id',$v['id'])->update(['cancel_state'=>1]);
  112. $act_title = \app\common\model\Activity::where('id',$v['act_id'])->value('title');
  113. $info_url = 'https://'.$_SERVER['HTTP_HOST'].'/dist/#/activity_order_info?id='.$v['id'];
  114. $message = '您报名的《'.$act_title."》活动订单,由于超时未支付,已为您取消";//,点击<a href=\"$info_url\">查看详情</a>";
  115. UserMessage::sendUserMessage($v['user_id'],'activity',4,0,0,$v['id'],$message,$v['id']);
  116. foreach ($v['item_list'] as $it) {
  117. ActivityPrice::where('id',$it['price_id'])->setInc('stock',$it['num']);
  118. }
  119. Db::commit();
  120. }catch (\Exception $e) {
  121. Db::rollback();
  122. }
  123. }
  124. }
  125. /**
  126. * @title 活动报名定时提醒
  127. * @desc
  128. * @author qc
  129. * @url /api/Task/activityReminder
  130. */
  131. public function activityReminder()
  132. {
  133. $where = [];
  134. $where[] = ['task_send','=',0];
  135. $where[] = ['start_time','> time',date('Y-m-d H:i:s',strtotime('-24 hours'))];
  136. $where[] = ['status','=',1];
  137. $where[] = ['is_deleted','=',0];
  138. $list = \app\common\model\Activity::where($where)->select()->toArray();
  139. foreach ($list as $act_info)
  140. {
  141. \app\common\model\Activity::where(['id'=>$act_info['id']])->update(['task_send'=>1]);
  142. $ticket_list = ActivityApplyItem::where(['act_id'=>$act_info['id'],'sh_status'=>1,'is_hx'=>0])->select();
  143. foreach ($ticket_list as $v) {
  144. // 短信通知
  145. 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']]);
  146. }
  147. }
  148. }
  149. /**
  150. * @title 热搜定时
  151. * @desc
  152. * @author qc
  153. * @url /api/Task/topSearchTask
  154. */
  155. public function topSearchTask()
  156. {
  157. $where[] = ['hot_time','< time',date('Y-m-d H:i:s',strtotime('-7 days'))];
  158. // 视频
  159. $list = VideoUrl::where($where)->column('id');
  160. array_walk($list,function ($v){
  161. VideoUrl::where('id',$v)->update(['hot_time'=>date('Y-m-d H:i:s'),'hot_num'=>0]);
  162. TopSearch::saveData($v,'video');
  163. });
  164. // 图文
  165. $list = ArticleItem::where($where)->column('id');
  166. array_walk($list,function ($v){
  167. ArticleItem::where('id',$v)->update(['hot_time'=>date('Y-m-d H:i:s'),'hot_num'=>0]);
  168. TopSearch::saveData($v,'article');
  169. });
  170. // 资料
  171. $list = DatumUrl::where($where)->column('id');
  172. array_walk($list,function ($v){
  173. DatumUrl::where('id',$v)->update(['hot_time'=>date('Y-m-d H:i:s'),'hot_num'=>0]);
  174. TopSearch::saveData($v,'datum');
  175. });
  176. // 活动
  177. $list = \app\common\model\Activity::where($where)->column('id');
  178. array_walk($list,function ($v){
  179. \app\common\model\Activity::where('id',$v)->update(['hot_time'=>date('Y-m-d H:i:s'),'hot_num'=>0]);
  180. TopSearch::saveData($v,'activity');
  181. });
  182. // 需求
  183. $list = \app\common\model\PlatformDemand::where($where)->column('id');
  184. array_walk($list,function ($v){
  185. \app\common\model\PlatformDemand::where('id',$v)->update(['hot_time'=>date('Y-m-d H:i:s'),'hot_num'=>0]);
  186. TopSearch::saveData($v,'demand');
  187. });
  188. // 新闻
  189. $list = \app\common\model\Press::where($where)->column('id');
  190. array_walk($list,function ($v){
  191. \app\common\model\Press::where('id',$v)->update(['hot_time'=>date('Y-m-d H:i:s'),'hot_num'=>0]);
  192. TopSearch::saveData($v,'press');
  193. });
  194. // 问答
  195. $list = \app\common\model\UserForum::where($where)->column('id');
  196. array_walk($list,function ($v){
  197. \app\common\model\UserForum::where('id',$v)->update(['hot_time'=>date('Y-m-d H:i:s'),'hot_num'=>0]);
  198. TopSearch::saveData($v,'forum');
  199. });
  200. // 招聘
  201. $list = \app\common\model\Recruit::where($where)->column('id');
  202. array_walk($list,function ($v){
  203. \app\common\model\Recruit::where('id',$v)->update(['hot_time'=>date('Y-m-d H:i:s'),'hot_num'=>0]);
  204. TopSearch::saveData($v,'recruit');
  205. });
  206. // 供应商
  207. $list = \app\common\model\SupplierGoods::where($where)->column('id');
  208. array_walk($list,function ($v){
  209. \app\common\model\SupplierGoods::where('id',$v)->update(['hot_time'=>date('Y-m-d H:i:s'),'hot_num'=>0]);
  210. TopSearch::saveData($v,'supplier_goods');
  211. });
  212. // 商品
  213. $list = \app\common\model\StoreGoods::where($where)->column('id');
  214. array_walk($list,function ($v){
  215. \app\common\model\StoreGoods::where('id',$v)->update(['hot_time'=>date('Y-m-d H:i:s'),'hot_num'=>0]);
  216. TopSearch::saveData($v,'goods');
  217. });
  218. $this->success('执行成功');
  219. }
  220. }