setName('wxpush') ->setDescription('the wxpush command'); } protected function execute(Input $input, Output $output) { $redis = Cache::store('redis')->handler(); $isLock = $redis->set("wxpush_lock", time() + 600, array('nx', 'ex'=>600)); if(!$isLock)return; try{ $appid = env('WECHAT.APPID'); $appsecret = env('WECHAT.APPSECRET'); $wechat = new \Wechat(['appid' => $appid, 'appsecret' => $appsecret]); $que= Cache::store('redis')->handler()->lpop('wxpush_queue'); while ($que){ $data=json_decode($que,true); $temp=[]; $res=false; if($data['openId']!=''){ $temp['touser'] =$data['openId']; $temp['template_id'] = $data['template_id']; $temp['data']=$data['template_data']; $res= $wechat->sendTemplateMessage($temp); if($res==false && $wechat->errCode==40001){ $wechat->resetAuth(env('WECHAT.APPID')); $wechat->sendTemplateMessage($temp); } } $add= [ 'bugNo'=>$data['code'], 'belong'=>$data['belong'], 'action_name'=>$data['action_name'], 'template_id'=>$data['template_id'], 'template_name'=>$data['template_name'], 'content'=>json_encode($temp,JSON_UNESCAPED_UNICODE), 'push_id'=>$data['uid'], 'pusher'=>$data['uname'], 'status'=>$res?1:0, 'remark'=>$res?'':$wechat->errMsg ]; WeChatPush::create($add); Log::write('data:'.json_encode($add,JSON_UNESCAPED_UNICODE),'info'); $output->writeln(json_encode($add,JSON_UNESCAPED_UNICODE)); $que= Cache::store('redis')->handler()->lpop('wxpush_queue'); } }catch (\Exception $e){ Log::write('wxpush:'.$e->getMessage(),'error'); $output->writeln($e->getMessage()); } $redis->delete("wxpush_lock"); } }