Task.php 44 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031
  1. <?php
  2. namespace app\api\controller;
  3. use AlibabaCloud\Client\Exception\ClientException;
  4. use AlibabaCloud\Client\Exception\ServerException;
  5. use app\common\model\ActivityApply;
  6. use app\common\model\ActivityApplyItem;
  7. use app\common\model\ActivityPrice;
  8. use app\common\model\ArticleItem;
  9. use app\common\model\DatumUrl;
  10. use app\common\model\ForumReply;
  11. use app\common\model\GoodsOrder;
  12. use app\common\model\GoodsOrderItem;
  13. use app\common\model\LabelMessage;
  14. use app\common\model\StoreGoodsItem;
  15. use app\common\model\TopSearch;
  16. use app\common\model\User;
  17. use app\common\model\UserFacility;
  18. use app\common\model\UserForum;
  19. use app\common\model\UserMessage;
  20. use app\common\model\UserSearch;
  21. use app\common\model\UserTag;
  22. use app\common\model\VideoUrl;
  23. use app\common\service\UserSynth;
  24. use think\Db;
  25. /**
  26. * @title 定时任务
  27. * Class Task
  28. * @controller Task
  29. * @group base
  30. */
  31. class Task extends Base
  32. {
  33. /**
  34. * @title 标签推送[根据标签id]
  35. * @desc 标签推送
  36. * @author qc
  37. * @url /api/Task/taskUserMessage
  38. */
  39. public function taskUserMessage(){
  40. $list = UserMessage::field('id,user_id,content')->where('jg_type',1)->where('jg_status',0)->limit(0,50)->order('id')->select();
  41. foreach ($list as $v) {
  42. UserMessage::where(['id'=>$v['id']])->update(['jg_status'=>1]);
  43. UserMessage::Jpush($v['user_id'],$v['content']);
  44. }
  45. }
  46. /**
  47. * @title 同步回答量
  48. * @desc 同步回答量
  49. * @author qc
  50. * @url /api/Task/forum_num
  51. */
  52. public function forum_num(){
  53. $forum = UserForum::where('is_deleted',0)->field('id')->select();
  54. foreach ($forum as $k => $v){
  55. $apply = ForumReply::where('forum_id',$v['id'])->where('is_deleted',0)->count();
  56. if($apply){
  57. UserForum::where('id',$v['id'])->update(['r_num'=>$apply]);
  58. }else{
  59. UserForum::where('id',$v['id'])->update(['r_num'=>0]);
  60. }
  61. }
  62. $this->success('执行完成');
  63. }
  64. /**
  65. * @title 标签推送[根据标签id]
  66. * @desc 标签推送
  67. * @author qc
  68. * @url /api/Task/taskLabelMessage
  69. */
  70. //按照标签推送
  71. public function taskLabelMessage()
  72. {
  73. $list = LabelMessage::where('jg_status',0)->where('is_deleted',0)->select()->toArray();
  74. foreach ($list as $v) {
  75. //定时判断
  76. if($v['is_regular'] == 0){
  77. $date = date('Y-m-d H:i');
  78. $push_time = date('Y-m-d H:i',strtotime($v['push_time']));
  79. if($date < $push_time){
  80. continue;
  81. }
  82. }
  83. //定时判断end
  84. LabelMessage::where(['id'=>$v['id']])->update(['jg_status'=>1]);
  85. $ext = [];
  86. $ext['title'] = $v['title'];
  87. $channel = ['xiaomi'=>"108240",'huawei'=>'IM','oppo'=>'news']; //公信
  88. //$channel = ['xiaomi'=>"108237",'huawei'=>'IM','oppo'=>'message']; //私信
  89. // 全部推送
  90. if(!$v['label'] || $v['label'] == '') {
  91. $user_arr = User::where('status',1)->where('is_deleted',0)->column('id');
  92. //return json($user_arr);
  93. foreach ($user_arr as $user_id) {
  94. if($v['type'] == 2){
  95. $res = UserMessage::Jpush($user_id,$v['content'],'','','','',$channel,$ext);
  96. }else if($v['type'] == 3) {
  97. // $ext = [];
  98. // $ext['title'] = $v['title'];
  99. // $channel = ['xiaomi'=>"108240",'huawei'=>'IM','oppo'=>'news'];
  100. if(in_array($v['module'],['video','article','datum'])) {
  101. $res = UserMessage::Jpush($user_id,$v['content'],$v['module'],'',$v['first_id'],$v['second_id'],$channel,$ext);
  102. }else{
  103. // if($v['module'] == 'supplier'){
  104. // //供应商产品
  105. // $res = UserMessage::Jpush($user_id,$v['content'],$v['module'],5,$v['first_id'],'',$channel,$ext);
  106. // }
  107. // if($v['module'] == 'activity'){
  108. // //活动
  109. // $res = UserMessage::Jpush($user_id,$v['content'],$v['module'],3,$v['first_id'],$channel,$ext);
  110. // }
  111. // if($v['module'] == 'forum'){
  112. // //问答
  113. // $res = UserMessage::Jpush($user_id,$v['content'],$v['module'],6,$v['first_id'],$channel,$ext);
  114. // }
  115. // if($v['module'] == 'press'){
  116. // //新闻 暂时没有对应type
  117. // $res = UserMessage::Jpush($user_id,$v['content'],$v['module'],5,$v['first_id'],$channel,$ext);
  118. // }
  119. // if($v['module'] == 'recruit'){
  120. // //招聘 暂时没有对应type
  121. // $res = UserMessage::Jpush($user_id,$v['content'],$v['module'],5,$v['first_id'],$channel,$ext);
  122. // }
  123. $res = UserMessage::Jpush($user_id,$v['content'],$v['module'],'',$v['first_id'],$v['second_id'],$channel,$ext);
  124. }
  125. }else{
  126. $res = UserMessage::Jpush($user_id,$v['content'],$v['module'],'',$v['first_id'],$v['second_id'],$channel,$ext);
  127. }
  128. // return json($res);
  129. // $arr = [
  130. // 'user_id' => $user_id,
  131. // 'type' => 4,
  132. // 'log' => json_encode($res),
  133. // ];
  134. // Db::name('client_log')->insert($arr);
  135. }
  136. }else{
  137. // 搜索内容推送
  138. if($v['type'] == 4){
  139. $label = Db::name('user_label')->group('user_id')->where('label','in',$v['label'])->column('user_id');
  140. $user_arr = $label;
  141. }else{
  142. $label_arr = explode(',',$v['label']);
  143. $where_str = '';
  144. $search_arr=[];
  145. $tag_arr = [];
  146. foreach ($label_arr as $t){
  147. $search_arr[] = " title like '".'%'.$t."%'" .' ';
  148. $tag_arr[] = $t;
  149. }
  150. if(!empty($search_arr)) $where_str = implode(' OR ',$search_arr);
  151. // $user_arr = UserSearch::where($where_str)->column('user_id');
  152. //// return json($user_arr);
  153. $user_arr = [];
  154. $user = User::where('label','<>',null)->where('label','<>','||')->where('is_deleted',0)->field('id,label')->select();
  155. $tags = UserTag::where('title','in',$tag_arr)->column('id');
  156. foreach ($user as $key => $val){
  157. $label = explode('|',$val['label']);
  158. foreach ($label as $val1){
  159. if (array_search($val1, $tags) !== false) {
  160. // echo '存在';
  161. $user_arr[] = $val['id'];
  162. } else {
  163. // echo '不存在';
  164. }
  165. }
  166. }
  167. $user_arr = array_unique($user_arr);
  168. }
  169. foreach (array_unique($user_arr) as $user_id) {
  170. if($v['type'] == 2){
  171. // $ext = [];
  172. // $ext['title'] = $v['title'];
  173. // $channel = ['xiaomi'=>"108240",'huawei'=>'IM','oppo'=>'news'];
  174. // $res = UserMessage::Jpush($user_id,$v['content']);
  175. $res = UserMessage::Jpush($user_id,$v['content'],'','','','',$channel,$ext);
  176. }else if($v['type'] == 3 || $v['type'] == 4) {
  177. // $ext = [];
  178. // $ext['title'] = $v['title'];
  179. // $channel = ['xiaomi'=>"108240",'huawei'=>'IM','oppo'=>'news'];
  180. if(in_array($v['module'],['video','article','datum'])) {
  181. $res = UserMessage::Jpush($user_id,$v['content'],$v['module'],'',$v['first_id'],$v['second_id'],$channel,$ext);
  182. }else{
  183. $res = UserMessage::Jpush($user_id,$v['content'],$v['module'],'',$v['first_id'],'',$channel,$ext);
  184. }
  185. }
  186. }
  187. }
  188. }
  189. }
  190. /**
  191. * @title 半年清理一次设备号
  192. * @desc
  193. * @author qc
  194. * @url /api/Task/removeFacility
  195. */
  196. public function removeFacility(){
  197. 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')]);
  198. }
  199. /**
  200. * @title 定时取消活动订单
  201. * @desc
  202. * @author qc
  203. * @url /api/Task/cancelApplyOrder
  204. */
  205. public function cancelApplyOrder()
  206. {
  207. $list = ActivityApply::with(['itemList'])
  208. ->where([['create_at','< time',date('Y-m-d H:i:s',strtotime('-5 minutes'))],['pay_type','<>',9],['pay_state','=',0],['cancel_state','=',0]])
  209. ->select()->toArray();
  210. foreach ($list as $v) {
  211. Db::startTrans();
  212. try {
  213. ActivityApply::where('id',$v['id'])->update(['cancel_state'=>1]);
  214. $act_title = \app\common\model\Activity::where('id',$v['act_id'])->value('title');
  215. $info_url = 'https://'.$_SERVER['HTTP_HOST'].'/dist/#/activity_order_info?id='.$v['id'];
  216. $message = '您报名的《'.$act_title."》活动订单,由于超时未支付,已为您取消";//,点击<a href=\"$info_url\">查看详情</a>";
  217. UserMessage::sendUserMessage($v['user_id'],'apply',4,0,0,$v['id'],$message,$v['id']);
  218. foreach ($v['item_list'] as $it) {
  219. ActivityPrice::where('id',$it['price_id'])->setInc('stock',$it['num']);
  220. }
  221. Db::commit();
  222. }catch (\Exception $e) {
  223. Db::rollback();
  224. }
  225. }
  226. }
  227. /**
  228. * @title 定时取消商城订单
  229. * @desc
  230. * @author qc
  231. * @url /api/Task/cancelGoodsOrder
  232. */
  233. public function cancelGoodsOrder()
  234. {
  235. $list = GoodsOrder::with(['orderItem'])
  236. ->where([['create_at','< time',date('Y-m-d H:i:s',strtotime('-1 day'))],['status','=',0],['pay_state','=',0],['cancel_state','=',0]])
  237. ->select()->toArray();
  238. // return json($list);
  239. $num = 0;
  240. foreach ($list as $v) {
  241. $order_id = $v['id'];
  242. Db::startTrans();
  243. try {
  244. $detail = $v;
  245. if($detail['status'] != 0) $this->exception('订单状态有误');
  246. // 取消订单状态
  247. GoodsOrder::update(['status'=>9,'cancel_state'=>1],['id'=>$order_id]);
  248. // 订单处理
  249. foreach ($detail['order_item'] as $item_info) {
  250. // 更改订单详情状态
  251. GoodsOrderItem::update(['status'=>9],['id'=>$item_info['id']]);
  252. StoreGoodsItem::stockChange($item_info['spec_id'],$item_info['goods_id'],$item_info['num']);
  253. }
  254. Db::commit();
  255. }catch (\Exception $e){
  256. $this->ret_msg = $e->getMessage();
  257. $this->is_commit = false;
  258. Db::rollback();
  259. }
  260. $num++;
  261. }
  262. $this->success('取消'.$num.'条订单');
  263. }
  264. /**
  265. * @title 定时自动收货
  266. * @desc
  267. * @author qc
  268. * @url /api/Task/confirmGoodsOrder
  269. */
  270. public function confirmGoodsOrder(){
  271. //express_send_at 发货时间
  272. //['express_send_at','< time',date('Y-m-d H:i:s',strtotime('-2 days'))]
  273. $list = GoodsOrder::where([['pay_state','=',1],['status','=',2]])
  274. ->select()->toArray();
  275. foreach ($list as $detail) {
  276. $data = get_delivery($detail['express_send_no']);
  277. Db::startTrans();
  278. if($data['issign'] == 1){
  279. $express_send_date = end($data['list']);
  280. $express_send_date = $express_send_date['time'];
  281. if($express_send_date < date('Y-m-d H:i:s',strtotime('-2 days'))){
  282. try {
  283. $order_id = $detail['id'];
  284. // $detail = GoodsOrder::where('id',$order_id)->find()->toArray();
  285. if($detail['status'] == 0) $this->error('订单未支付');
  286. if($detail['status'] == 1) $this->error('订单未发货');
  287. if($detail['status'] == 3) $this->error('订单已收货');
  288. GoodsOrder::update(['status'=>3,'express_state'=>2],['id'=>$order_id]);
  289. GoodsOrderItem::update(['status'=>3,'express_state'=>2],['order_id'=>$order_id]);
  290. UserMessage::create(['user_id'=>$detail['user_id'],'type_id'=>3,'relation_id'=>$order_id,'content'=>'订单收货成功']);
  291. Db::commit();
  292. }catch (\Exception $e) {
  293. Db::rollback();
  294. }
  295. }
  296. }
  297. }
  298. $this->success('执行成功');
  299. }
  300. /**
  301. * @title 活动报名定时提醒
  302. * @desc
  303. * @author qc
  304. * @url /api/Task/activityReminder
  305. */
  306. public function activityReminder()
  307. {
  308. $where = [];
  309. $where[] = ['task_send','=',0];
  310. $where[] = ['start_time','> time',date('Y-m-d H:i:s',strtotime('-24 hours'))];
  311. $where[] = ['status','=',1];
  312. $where[] = ['is_deleted','=',0];
  313. $list = \app\common\model\Activity::where($where)->select()->toArray();
  314. foreach ($list as $act_info)
  315. {
  316. \app\common\model\Activity::where(['id'=>$act_info['id']])->update(['task_send'=>1]);
  317. $ticket_list = ActivityApplyItem::where(['act_id'=>$act_info['id'],'sh_status'=>1,'is_hx'=>0])->select();
  318. foreach ($ticket_list as $v) {
  319. // 短信通知
  320. 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']]);
  321. }
  322. }
  323. }
  324. /**
  325. * @title 热搜定时
  326. * @desc
  327. * @author qc
  328. * @url /api/Task/topSearchTask
  329. */
  330. public function topSearchTask()
  331. {
  332. $where[] = ['hot_time','< time',date('Y-m-d H:i:s',strtotime('-7 days'))];
  333. // 视频
  334. $list = VideoUrl::where($where)->column('id');
  335. array_walk($list,function ($v){
  336. VideoUrl::where('id',$v)->update(['hot_time'=>date('Y-m-d H:i:s'),'hot_num'=>0]);
  337. TopSearch::saveData($v,'video');
  338. });
  339. // 图文
  340. $list = ArticleItem::where($where)->column('id');
  341. array_walk($list,function ($v){
  342. ArticleItem::where('id',$v)->update(['hot_time'=>date('Y-m-d H:i:s'),'hot_num'=>0]);
  343. TopSearch::saveData($v,'article');
  344. });
  345. // 资料
  346. $list = DatumUrl::where($where)->column('id');
  347. array_walk($list,function ($v){
  348. DatumUrl::where('id',$v)->update(['hot_time'=>date('Y-m-d H:i:s'),'hot_num'=>0]);
  349. TopSearch::saveData($v,'datum');
  350. });
  351. // 活动
  352. $list = \app\common\model\Activity::where($where)->column('id');
  353. array_walk($list,function ($v){
  354. \app\common\model\Activity::where('id',$v)->update(['hot_time'=>date('Y-m-d H:i:s'),'hot_num'=>0]);
  355. TopSearch::saveData($v,'activity');
  356. });
  357. // 需求
  358. $list = \app\common\model\PlatformDemand::where($where)->column('id');
  359. array_walk($list,function ($v){
  360. \app\common\model\PlatformDemand::where('id',$v)->update(['hot_time'=>date('Y-m-d H:i:s'),'hot_num'=>0]);
  361. TopSearch::saveData($v,'demand');
  362. });
  363. // 新闻
  364. $list = \app\common\model\Press::where($where)->column('id');
  365. array_walk($list,function ($v){
  366. \app\common\model\Press::where('id',$v)->update(['hot_time'=>date('Y-m-d H:i:s'),'hot_num'=>0]);
  367. TopSearch::saveData($v,'press');
  368. });
  369. // 问答
  370. $list = \app\common\model\UserForum::where($where)->column('id');
  371. array_walk($list,function ($v){
  372. \app\common\model\UserForum::where('id',$v)->update(['hot_time'=>date('Y-m-d H:i:s'),'hot_num'=>0]);
  373. TopSearch::saveData($v,'forum');
  374. });
  375. // 招聘
  376. $list = \app\common\model\Recruit::where($where)->column('id');
  377. array_walk($list,function ($v){
  378. \app\common\model\Recruit::where('id',$v)->update(['hot_time'=>date('Y-m-d H:i:s'),'hot_num'=>0]);
  379. TopSearch::saveData($v,'recruit');
  380. });
  381. // 供应商
  382. $list = \app\common\model\SupplierGoods::where($where)->column('id');
  383. array_walk($list,function ($v){
  384. \app\common\model\SupplierGoods::where('id',$v)->update(['hot_time'=>date('Y-m-d H:i:s'),'hot_num'=>0]);
  385. TopSearch::saveData($v,'supplier_goods');
  386. });
  387. // 商品
  388. $list = \app\common\model\StoreGoods::where($where)->column('id');
  389. array_walk($list,function ($v){
  390. \app\common\model\StoreGoods::where('id',$v)->update(['hot_time'=>date('Y-m-d H:i:s'),'hot_num'=>0]);
  391. TopSearch::saveData($v,'goods');
  392. });
  393. $this->success('执行成功');
  394. }
  395. function getDaysFromDate($date) {
  396. $startDate = new \DateTime($date);
  397. $endDate = new \DateTime('now');
  398. $interval = $startDate->diff($endDate);
  399. return $interval->days;
  400. }
  401. /**
  402. * @title 热搜定时1
  403. * @desc
  404. * @author qc
  405. * @url /api/Task/emptyTopSearchTask
  406. */
  407. public function emptyTopSearchTask1()
  408. {
  409. //热搜规则
  410. //根据后台输入的热搜阅读量排序
  411. //每10分钟前端更新一次
  412. //后台热搜阅读量每天晚上的23:59点,清楚7天前的那一天所有新增的内容的热搜阅读量
  413. //如:
  414. //2023年11月5日,新增了2篇文章,1个视频(不关心是几点新增的)
  415. //2023年11月12日,晚上23:59,将新增的2篇文章跟1个视频的热搜阅读清0
  416. //热搜阅读量可以手动更改,每次有用户点击时,热搜阅读量也增加1
  417. //top_search hot_num
  418. $start_time = date('Y-m-d 00:00:00',strtotime('-7 days'));
  419. $end_time = date('Y-m-d 23:59:59',strtotime('-7 days'));
  420. // return $start_time.'---'.$end_time;
  421. $where[] = ['release_time','> time',$start_time];
  422. $where[] = ['release_time','< time',$end_time];
  423. // $list = TopSearch::where($where)->column('id');
  424. // return json($list);
  425. // TopSearch::where($where)->update(['hot_num'=>0]);
  426. // foreach ($list as $k => $v){
  427. // TopSearch::where('id',$v)->update(['hot_num'=>0]);
  428. // }
  429. //清除热搜实例
  430. // $clean_days = sysconf('clean_days'); //清除热搜天数
  431. //
  432. // $list = \app\common\model\Press::where('release_time','<>','')->field('id,release_time')->order('release_time desc')->select();
  433. // $arr = [];
  434. // foreach ($list as $k => $v){
  435. // $specifiedDate = $v['release_time'];
  436. // $days = $this->getDaysFromDate($specifiedDate);
  437. // $c = $days % $clean_days;
  438. // if($c == 0){
  439. // \app\common\model\Press::where('id',$v)->update(['hot_time'=>date('Y-m-d H:i:s'),'hot_num'=>0]);
  440. // TopSearch::saveData($v,'press');
  441. // }
  442. // //echo "从 $specifiedDate 到今天的天数是: $days 天";
  443. // }
  444. // return json($list);
  445. //清除热搜实例end
  446. // 使用示例
  447. $list = VideoUrl::where($where)->column('id');
  448. array_walk($list,function ($v){
  449. VideoUrl::where('id',$v)->update(['hot_time'=>date('Y-m-d H:i:s'),'hot_num'=>0]);
  450. TopSearch::saveData($v,'video');
  451. });
  452. // 图文
  453. $list = ArticleItem::where($where)->column('id');
  454. array_walk($list,function ($v){
  455. ArticleItem::where('id',$v)->update(['hot_time'=>date('Y-m-d H:i:s'),'hot_num'=>0]);
  456. TopSearch::saveData($v,'article');
  457. });
  458. // 资料
  459. $list = DatumUrl::where($where)->column('id');
  460. array_walk($list,function ($v){
  461. DatumUrl::where('id',$v)->update(['hot_time'=>date('Y-m-d H:i:s'),'hot_num'=>0]);
  462. TopSearch::saveData($v,'datum');
  463. });
  464. // 活动
  465. $list = \app\common\model\Activity::where($where)->column('id');
  466. array_walk($list,function ($v){
  467. \app\common\model\Activity::where('id',$v)->update(['hot_time'=>date('Y-m-d H:i:s'),'hot_num'=>0]);
  468. TopSearch::saveData($v,'activity');
  469. });
  470. // 需求
  471. $list = \app\common\model\PlatformDemand::where($where)->column('id');
  472. array_walk($list,function ($v){
  473. \app\common\model\PlatformDemand::where('id',$v)->update(['hot_time'=>date('Y-m-d H:i:s'),'hot_num'=>0]);
  474. TopSearch::saveData($v,'demand');
  475. });
  476. // 新闻
  477. $list = \app\common\model\Press::where($where)->column('id');
  478. array_walk($list,function ($v){
  479. \app\common\model\Press::where('id',$v)->update(['hot_time'=>date('Y-m-d H:i:s'),'hot_num'=>0]);
  480. TopSearch::saveData($v,'press');
  481. });
  482. // 问答
  483. $list = \app\common\model\UserForum::where($where)->column('id');
  484. array_walk($list,function ($v){
  485. \app\common\model\UserForum::where('id',$v)->update(['hot_time'=>date('Y-m-d H:i:s'),'hot_num'=>0]);
  486. TopSearch::saveData($v,'forum');
  487. });
  488. // 招聘
  489. $list = \app\common\model\Recruit::where($where)->column('id');
  490. array_walk($list,function ($v){
  491. \app\common\model\Recruit::where('id',$v)->update(['hot_time'=>date('Y-m-d H:i:s'),'hot_num'=>0]);
  492. TopSearch::saveData($v,'recruit');
  493. });
  494. // 供应商
  495. $list = \app\common\model\SupplierGoods::where($where)->column('id');
  496. array_walk($list,function ($v){
  497. \app\common\model\SupplierGoods::where('id',$v)->update(['hot_time'=>date('Y-m-d H:i:s'),'hot_num'=>0]);
  498. TopSearch::saveData($v,'supplier_goods');
  499. });
  500. // 商品
  501. $list = \app\common\model\StoreGoods::where($where)->column('id');
  502. array_walk($list,function ($v){
  503. \app\common\model\StoreGoods::where('id',$v)->update(['hot_time'=>date('Y-m-d H:i:s'),'hot_num'=>0]);
  504. TopSearch::saveData($v,'goods');
  505. });
  506. $this->success('执行成功');
  507. }
  508. public function emptyTopSearchTask(){
  509. //热搜规则
  510. //根据后台输入的热搜阅读量排序
  511. //每10分钟前端更新一次
  512. //后台热搜阅读量每天晚上的23:59点,清楚7天前的那一天所有新增的内容的热搜阅读量
  513. //如:
  514. //2023年11月5日,新增了2篇文章,1个视频(不关心是几点新增的)
  515. //2023年11月12日,晚上23:59,将新增的2篇文章跟1个视频的热搜阅读清0
  516. //热搜阅读量可以手动更改,每次有用户点击时,热搜阅读量也增加1
  517. $data = input();
  518. if(isset($data['module']) && $data['module'] != '0') {
  519. $module = $data['module'];
  520. //$this->success('执行成功',$data['module']);
  521. }else{
  522. $module = false;
  523. //$this->success('不是视频',$data['module']);
  524. }
  525. //top_search hot_num
  526. $start_time = date('Y-m-d 00:00:00');
  527. $start_time1 = date('Y-m-d 00:00:00',strtotime('-1 days'));
  528. // $end_time = date('Y-m-d 23:59:59',strtotime('-7 days'));
  529. // return $start_time.'---'.$end_time;
  530. // $where[] = ['release_time','> time',$start_time];
  531. // $where[] = ['release_time','< time',$end_time];
  532. // $list = TopSearch::where($where)->column('id');
  533. // return json($list);
  534. // TopSearch::where($where)->update(['hot_num'=>0]);
  535. // foreach ($list as $k => $v){
  536. // TopSearch::where('id',$v)->update(['hot_num'=>0]);
  537. // }
  538. $where = [];
  539. // $where = ['release_time','<>',''];
  540. $clean_days = sysconf('clean_days'); //清除热搜天数
  541. //清除热搜实例
  542. //
  543. //
  544. // $list = \app\common\model\Press::where('release_time','<>','')->field('id,release_time')->order('release_time desc')->select();
  545. // $arr = [];
  546. // foreach ($list as $k => $v){
  547. // $specifiedDate = $v['release_time'];
  548. // $days = $this->getDaysFromDate($specifiedDate);
  549. // $c = $days % $clean_days;
  550. // if($c == 0){
  551. // $arr[] = $v;
  552. // \app\common\model\Press::where('id',$v['id'])->update(['hot_time'=>date('Y-m-d H:i:s'),'hot_num'=>0]);
  553. // TopSearch::saveData($v['id'],'press');
  554. // }
  555. // //echo "从 $specifiedDate 到今天的天数是: $days 天";
  556. // }
  557. // return json($arr);
  558. //清除热搜实例end
  559. $where = [];
  560. if($clean_days > 1){
  561. $where[] = ['release_time','< time',$start_time];
  562. $where[] = ['release_time','< time',$start_time1];
  563. }
  564. // 使用示例
  565. //视频
  566. if(!$module || $module == 'video'){
  567. $list = VideoUrl::where('release_time','<>','')->where($where)->field('id,release_time')->order('release_time desc')->select();
  568. foreach ($list as $k => $v){
  569. if($clean_days <= 1){
  570. VideoUrl::where('id',$v['id'])->update(['hot_time'=>date('Y-m-d H:i:s'),'hot_num'=>0]);
  571. TopSearch::saveData($v['id'],'video');
  572. }else{
  573. $specifiedDate = $v['release_time'];
  574. $days = $this->getDaysFromDate($specifiedDate);
  575. $c = $days % $clean_days;
  576. if($c == 0){
  577. VideoUrl::where('id',$v['id'])->update(['hot_time'=>date('Y-m-d H:i:s'),'hot_num'=>0]);
  578. TopSearch::saveData($v['id'],'video');
  579. }
  580. }
  581. //echo "从 $specifiedDate 到今天的天数是: $days 天";
  582. }
  583. }
  584. // 图文
  585. if(!$module || $module == 'article'){
  586. $list = ArticleItem::where('release_time','<>','')->where($where)->field('id,release_time')->order('release_time desc')->select();
  587. foreach ($list as $k => $v){
  588. if($clean_days <= 1){
  589. ArticleItem::where('id',$v['id'])->update(['hot_time'=>date('Y-m-d H:i:s'),'hot_num'=>0]);
  590. TopSearch::saveData($v['id'],'article');
  591. }else{
  592. $specifiedDate = $v['release_time'];
  593. $days = $this->getDaysFromDate($specifiedDate);
  594. $c = $days % $clean_days;
  595. if($c == 0){
  596. ArticleItem::where('id',$v['id'])->update(['hot_time'=>date('Y-m-d H:i:s'),'hot_num'=>0]);
  597. TopSearch::saveData($v['id'],'article');
  598. }
  599. }
  600. //echo "从 $specifiedDate 到今天的天数是: $days 天";
  601. }
  602. }
  603. // 资料
  604. if(!$module || $module == 'datum'){
  605. $list = DatumUrl::where('release_time','<>','')->where($where)->field('id,release_time')->order('release_time desc')->select();
  606. foreach ($list as $k => $v){
  607. if($clean_days <= 1){
  608. DatumUrl::where('id',$v['id'])->update(['hot_time'=>date('Y-m-d H:i:s'),'hot_num'=>0]);
  609. TopSearch::saveData($v['id'],'datum');
  610. }else{
  611. $specifiedDate = $v['release_time'];
  612. $days = $this->getDaysFromDate($specifiedDate);
  613. $c = $days % $clean_days;
  614. if($c == 0){
  615. DatumUrl::where('id',$v['id'])->update(['hot_time'=>date('Y-m-d H:i:s'),'hot_num'=>0]);
  616. TopSearch::saveData($v['id'],'datum');
  617. }
  618. }
  619. //echo "从 $specifiedDate 到今天的天数是: $days 天";
  620. }
  621. }
  622. // 活动
  623. if(!$module || $module == 'activity'){
  624. $list = \app\common\model\Activity::where('release_time','<>','')->where($where)->field('id,release_time')->order('release_time desc')->select();
  625. foreach ($list as $k => $v){
  626. if($clean_days <= 1){
  627. \app\common\model\Activity::where('id',$v['id'])->update(['hot_time'=>date('Y-m-d H:i:s'),'hot_nm'=>0]);
  628. TopSearch::saveData($v['id'],'activity');
  629. }else{
  630. $specifiedDate = $v['release_time'];
  631. $days = $this->getDaysFromDate($specifiedDate);
  632. $c = $days % $clean_days;
  633. if($c == 0){
  634. \app\common\model\Activity::where('id',$v['id'])->update(['hot_time'=>date('Y-m-d H:i:s'),'hot_nm'=>0]);
  635. TopSearch::saveData($v['id'],'activity');
  636. }
  637. }
  638. //echo "从 $specifiedDate 到今天的天数是: $days 天";
  639. }
  640. }
  641. // 需求
  642. if(!$module || $module == 'demand'){
  643. $list = \app\common\model\PlatformDemand::where('release_time','<>','')->where($where)->field('id,release_time')->order('release_time desc')->select();
  644. foreach ($list as $k => $v){
  645. if($clean_days <= 1){
  646. \app\common\model\PlatformDemand::where('id',$v['id'])->update(['hot_time'=>date('Y-m-d H:i:s'),'hot_num'=>0]);
  647. TopSearch::saveData($v['id'],'demand');
  648. }else{
  649. $specifiedDate = $v['release_time'];
  650. $days = $this->getDaysFromDate($specifiedDate);
  651. $c = $days % $clean_days;
  652. if($c == 0){
  653. \app\common\model\PlatformDemand::where('id',$v['id'])->update(['hot_time'=>date('Y-m-d H:i:s'),'hot_num'=>0]);
  654. TopSearch::saveData($v['id'],'demand');
  655. }
  656. }
  657. //echo "从 $specifiedDate 到今天的天数是: $days 天";
  658. }
  659. }
  660. // 新闻
  661. if(!$module || $module == 'press'){
  662. $list = \app\common\model\Press::where('release_time','<>','')->where($where)->field('id,release_time')->order('release_time desc')->select();
  663. foreach ($list as $k => $v){
  664. if($clean_days <= 1){
  665. \app\common\model\Press::where('id',$v['id'])->update(['hot_time'=>date('Y-m-d H:i:s'),'hot_num'=>0]);
  666. TopSearch::saveData($v['id'],'press');
  667. }else{
  668. $specifiedDate = $v['release_time'];
  669. $days = $this->getDaysFromDate($specifiedDate);
  670. $c = $days % $clean_days;
  671. if($c == 0){
  672. \app\common\model\Press::where('id',$v['id'])->update(['hot_time'=>date('Y-m-d H:i:s'),'hot_num'=>0]);
  673. TopSearch::saveData($v['id'],'press');
  674. }
  675. }
  676. //echo "从 $specifiedDate 到今天的天数是: $days 天";
  677. }
  678. }
  679. // 问答
  680. if(!$module || $module == 'forum'){
  681. $list = \app\common\model\UserForum::where('release_time','<>','')->where($where)->field('id,release_time')->order('release_time desc')->select();
  682. foreach ($list as $k => $v){
  683. if($clean_days <= 1){
  684. \app\common\model\UserForum::where('id',$v['id'])->update(['hot_time'=>date('Y-m-d H:i:s'),'hot_num'=>0]);
  685. TopSearch::saveData($v['id'],'forum');
  686. }else{
  687. $specifiedDate = $v['release_time'];
  688. $days = $this->getDaysFromDate($specifiedDate);
  689. $c = $days % $clean_days;
  690. if($c == 0){
  691. \app\common\model\UserForum::where('id',$v['id'])->update(['hot_time'=>date('Y-m-d H:i:s'),'hot_num'=>0]);
  692. TopSearch::saveData($v['id'],'forum');
  693. }
  694. }
  695. //echo "从 $specifiedDate 到今天的天数是: $days 天";
  696. }
  697. }
  698. // 招聘
  699. if(!$module || $module == 'recruit'){
  700. $list = \app\common\model\Recruit::where('release_time','<>','')->where($where)->field('id,release_time')->order('release_time desc')->select();
  701. foreach ($list as $k => $v){
  702. if($clean_days <= 1){
  703. \app\common\model\Recruit::where('id',$v['id'])->update(['hot_time'=>date('Y-m-d H:i:s'),'hot_num'=>0]);
  704. TopSearch::saveData($v['id'],'recruit');
  705. }else{
  706. $specifiedDate = $v['release_time'];
  707. $days = $this->getDaysFromDate($specifiedDate);
  708. $c = $days % $clean_days;
  709. if($c == 0){
  710. \app\common\model\Recruit::where('id',$v['id'])->update(['hot_time'=>date('Y-m-d H:i:s'),'hot_num'=>0]);
  711. TopSearch::saveData($v['id'],'recruit');
  712. }
  713. }
  714. //echo "从 $specifiedDate 到今天的天数是: $days 天";
  715. }
  716. }
  717. // 供应商
  718. if(!$module || $module == 'supplier_goods'){
  719. $list = \app\common\model\SupplierGoods::where('release_time','<>','')->where($where)->field('id,release_time')->order('release_time desc')->select();
  720. foreach ($list as $k => $v){
  721. if($clean_days <= 1){
  722. \app\common\model\SupplierGoods::where('id',$v['id'])->update(['hot_time'=>date('Y-m-d H:i:s'),'hot_num'=>0]);
  723. TopSearch::saveData($v['id'],'supplier_goods');
  724. }else{
  725. $specifiedDate = $v['release_time'];
  726. $days = $this->getDaysFromDate($specifiedDate);
  727. $c = $days % $clean_days;
  728. if($c == 0){
  729. \app\common\model\SupplierGoods::where('id',$v['id'])->update(['hot_time'=>date('Y-m-d H:i:s'),'hot_num'=>0]);
  730. TopSearch::saveData($v['id'],'supplier_goods');
  731. }
  732. }
  733. //echo "从 $specifiedDate 到今天的天数是: $days 天";
  734. }
  735. }
  736. // 商品
  737. if(!$module || $module == 'goods'){
  738. $list = \app\common\model\StoreGoods::where('release_time','<>','')->where($where)->field('id,release_time')->order('release_time desc')->select();
  739. foreach ($list as $k => $v){
  740. if($clean_days <= 1){
  741. \app\common\model\StoreGoods::where('id',$v['id'])->update(['hot_time'=>date('Y-m-d H:i:s'),'hot_num'=>0]);
  742. TopSearch::saveData($v['id'],'goods');
  743. }else{
  744. $specifiedDate = $v['release_time'];
  745. $days = $this->getDaysFromDate($specifiedDate);
  746. $c = $days % $clean_days;
  747. if($c == 0){
  748. \app\common\model\StoreGoods::where('id',$v['id'])->update(['hot_time'=>date('Y-m-d H:i:s'),'hot_num'=>0]);
  749. TopSearch::saveData($v['id'],'goods');
  750. }
  751. }
  752. //echo "从 $specifiedDate 到今天的天数是: $days 天";
  753. }
  754. }
  755. $this->success('执行成功');
  756. }
  757. /**
  758. * @title 定时取消商城订单
  759. * @desc
  760. * @author qc
  761. * @url /api/Task/cancelStoreGoods
  762. */
  763. public function cancelStoreGoods()
  764. {
  765. $list = GoodsOrder::with(['orderItem','orderRefund'])
  766. ->where([['pay_state','=',0],['status','=',0],['create_at','< time',date('Y-m-d H:i:s',strtotime('-1 days'))]])
  767. ->select()->toArray();
  768. foreach ($list as $detail) {
  769. // 取消订单状态
  770. GoodsOrder::update(['status'=>9,'cancel_state'=>1],['id'=>$detail['id']]);
  771. // 订单处理
  772. foreach ($detail['order_item'] as $item_info) {
  773. // 更改订单详情状态
  774. GoodsOrderItem::update(['status'=>9],['id'=>$item_info['id']]);
  775. StoreGoodsItem::stockChange($item_info['spec_id'],$item_info['goods_id'],$item_info['num']);
  776. }
  777. }
  778. $this->success('执行成功');
  779. }
  780. /**
  781. * @title 定时增加热搜量
  782. * @desc
  783. * @author qc
  784. * @url /api/Task/regular_hot_num
  785. */
  786. public function regular_hot_num(){
  787. $date = date("Y-m-d H:i:s");
  788. //资料
  789. $list = DatumUrl::where('regular_hot_end_time','> time',$date)->select();
  790. foreach ($list as $k => $v){
  791. if($v['regular_hot_start_time'] < $v['regular_hot_end_time'] && $v['hot_target_num'] > $v['hot_num']){
  792. // $startdate = strtotime($v['regular_hot_start_time']);
  793. // $enddate = strtotime($v['regular_hot_end_time']);
  794. // $diff_seconds = ($enddate-$startdate)/60;
  795. // $min_num = ceil($diff_seconds/10);
  796. // $hot_num = $v['hot_target_num'] - $v['hot_num'];
  797. // $num = ceil($hot_num/$min_num);
  798. $t_num = $v['hot_num'] + $v['regular_num'];
  799. \app\common\model\DatumUrl::where('id',$v['id'])->update(['hot_time'=>date('Y-m-d H:i:s'),'hot_num'=>$t_num]);
  800. TopSearch::saveData($v['id'],'datum');
  801. }
  802. }
  803. //图文
  804. $list = ArticleItem::where('regular_hot_end_time','> time',$date)->select();
  805. foreach ($list as $k => $v){
  806. if($v['regular_hot_start_time'] < $v['regular_hot_end_time'] && $v['hot_target_num'] > $v['hot_num']){
  807. $t_num = $v['hot_num'] + $v['regular_num'];
  808. ArticleItem::where('id',$v['id'])->update(['hot_time'=>date('Y-m-d H:i:s'),'hot_num'=>$t_num]);
  809. TopSearch::saveData($v['id'],'article');
  810. }
  811. }
  812. //视频
  813. $list = VideoUrl::where('regular_hot_end_time','> time',$date)->select();
  814. foreach ($list as $k => $v){
  815. if($v['regular_hot_start_time'] < $v['regular_hot_end_time'] && $v['hot_target_num'] > $v['hot_num']){
  816. $t_num = $v['hot_num'] + $v['regular_num'];
  817. VideoUrl::where('id',$v['id'])->update(['hot_time'=>date('Y-m-d H:i:s'),'hot_num'=>$t_num]);
  818. TopSearch::saveData($v['id'],'video');
  819. }
  820. }
  821. //问答
  822. $list = UserForum::where('regular_hot_end_time','> time',$date)->select();
  823. foreach ($list as $k => $v){
  824. if($v['regular_hot_start_time'] < $v['regular_hot_end_time'] && $v['hot_target_num'] > $v['hot_num']){
  825. $t_num = $v['hot_num'] + $v['regular_num'];
  826. UserForum::where('id',$v['id'])->update(['hot_time'=>date('Y-m-d H:i:s'),'hot_num'=>$t_num]);
  827. TopSearch::saveData($v['id'],'forum');
  828. }
  829. }
  830. //新闻
  831. $list = \app\common\model\Press::where('regular_hot_end_time','> time',$date)->select();
  832. foreach ($list as $k => $v){
  833. if($v['regular_hot_start_time'] < $v['regular_hot_end_time'] && $v['hot_target_num'] > $v['hot_num']){
  834. $t_num = $v['hot_num'] + $v['regular_num'];
  835. \app\common\model\Press::where('id',$v['id'])->update(['hot_time'=>date('Y-m-d H:i:s'),'hot_num'=>$t_num]);
  836. TopSearch::saveData($v['id'],'press');
  837. }
  838. }
  839. //活动
  840. $list = \app\common\model\Activity::where('regular_hot_end_time','> time',$date)->select();
  841. foreach ($list as $k => $v){
  842. if($v['regular_hot_start_time'] < $v['regular_hot_end_time'] && $v['hot_target_num'] > $v['hot_nm']){
  843. $t_num = $v['hot_nm'] + $v['regular_num'];
  844. \app\common\model\Activity::where('id',$v['id'])->update(['hot_time'=>date('Y-m-d H:i:s'),'hot_nm'=>$t_num]);
  845. TopSearch::saveData($v['id'],'activity');
  846. }
  847. }
  848. //招聘
  849. $list = \app\common\model\Recruit::where('regular_hot_end_time','> time',$date)->select();
  850. foreach ($list as $k => $v){
  851. if($v['regular_hot_start_time'] < $v['regular_hot_end_time'] && $v['hot_target_num'] > $v['hot_num']){
  852. $t_num = $v['hot_num'] + $v['regular_num'];
  853. \app\common\model\Recruit::where('id',$v['id'])->update(['hot_time'=>date('Y-m-d H:i:s'),'hot_num'=>$t_num]);
  854. TopSearch::saveData($v['id'],'recruit');
  855. }
  856. }
  857. //需求
  858. $list = \app\common\model\PlatformDemand::where('regular_hot_end_time','> time',$date)->select();
  859. foreach ($list as $k => $v){
  860. if($v['regular_hot_start_time'] < $v['regular_hot_end_time'] && $v['hot_target_num'] > $v['hot_num']){
  861. $t_num = $v['hot_num'] + $v['regular_num'];
  862. \app\common\model\PlatformDemand::where('id',$v['id'])->update(['hot_time'=>date('Y-m-d H:i:s'),'hot_num'=>$t_num]);
  863. TopSearch::saveData($v['id'],'demand');
  864. }
  865. }
  866. //供应商
  867. $list = \app\common\model\SupplierGoods::where('regular_hot_end_time','> time',$date)->select();
  868. foreach ($list as $k => $v){
  869. if($v['regular_hot_start_time'] < $v['regular_hot_end_time'] && $v['hot_target_num'] > $v['hot_num']){
  870. $t_num = $v['hot_num'] + $v['regular_num'];
  871. \app\common\model\SupplierGoods::where('id',$v['id'])->update(['hot_time'=>date('Y-m-d H:i:s'),'hot_num'=>$t_num]);
  872. TopSearch::saveData($v['id'],'supplier_goods');
  873. }
  874. }
  875. $this->success('执行成功');
  876. }
  877. /**
  878. * @title 发送邮箱验证码
  879. * @desc 发送邮箱验证码
  880. * @author qc
  881. * @url /api/Task/detectionEmail
  882. * @method POST
  883. * @tag 邮箱验证码
  884. * @param name:email type:int require:1 default:-- desc:邮箱
  885. * @return name:code type:string default:-- desc:验证码
  886. */
  887. public function detectionEmail(){
  888. $Expedite = new Expedite();
  889. $esms = $Expedite->emailSms('2014945457@qq.com');
  890. return json_encode($esms,true);
  891. }
  892. /**
  893. * @title 发送邮箱验证码
  894. * @desc 发送邮箱验证码
  895. * @author qc
  896. * @url /api/Task/emailSms
  897. * @method POST
  898. * @tag 邮箱验证码
  899. * @param name:email type:int require:1 default:-- desc:邮箱
  900. * @return name:code type:string default:-- desc:验证码
  901. */
  902. function emailSms($email = ''){
  903. //$email = input('post.email');
  904. $user_info = User::where('email',$email)->where('is_deleted',0)->field('id,status')->find();
  905. if($user_info && $user_info['status'] == 0)$this ->error('用户被禁用,请联系官方');
  906. $code = rand(0,9).rand(0,9).rand(0,9).rand(0,9).rand(0,9).rand(0,9);
  907. require_once env('root_path').'/vendor/aliyunmail/aliyun-php-sdk-core/Config.php';
  908. $iClientProfile = \DefaultProfile::getProfile("cn-hangzhou", "LTAI5tJ5p12drZegeWVG33xZ", "82UWAiY5e5wH8tSkRvMtqVoGO0h8SB");
  909. $client = new \DefaultAcsClient($iClientProfile);
  910. $request = new Dm\SingleSendMailRequest();
  911. // D:\project\gyx\gaoyixia\vendor\aliyunmail\aliyun-php-sdk-dm\Dm\Request\V20151123\SingleSendMailRequest.php
  912. $request->setAccountName("gyx@yzm.gyxqcdz.com");
  913. $request->setFromAlias("[验证码]");
  914. $request->setAddressType(1);
  915. $request->setTagName("zonghuzhuche");
  916. $request->setReplyToAddress("true");
  917. $request->setToAddress($email);
  918. $request->setSubject("验证码");
  919. $img= "http://gaoyixia.hdlkeji.com/code/33.png";
  920. $img ="<img src='$img'/>";
  921. $html_body = '您的验证码'.$code.'有效时间5分钟';
  922. $request->setHtmlBody($html_body);
  923. try {
  924. $send_res = $client->getAcsResponse($request);
  925. $sms_data = array(
  926. 'phone'=>$email,
  927. 'code'=>$code,
  928. 'result'=>'OK'
  929. );
  930. Db::name('store_member_sms')->insert($sms_data);
  931. $this->success('发送成功');
  932. } catch (ClientException $e) {
  933. $this->error($e->getErrorMessage());
  934. // print_r($e->getErrorCode());
  935. // print_r($e->getErrorMessage());
  936. } catch (ServerException $e) {
  937. $this->error($e->getErrorMessage());
  938. // print_r($e->getErrorCode());
  939. // print_r($e->getErrorMessage());
  940. }
  941. }
  942. }