|
@@ -4,6 +4,7 @@ namespace app\api\controller;
|
|
|
|
|
|
use app\common\controller\Api;
|
|
|
use fast\Random;
|
|
|
+use think\Queue;
|
|
|
|
|
|
/**
|
|
|
* 首页接口
|
|
@@ -57,20 +58,21 @@ class Index extends Api
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- // 流量上报
|
|
|
+ /**
|
|
|
+ * 功能: 流量上报, 生成队列, 后台进程处理流量数据
|
|
|
+ * @return bool|void
|
|
|
+ */
|
|
|
public function traffic()
|
|
|
{
|
|
|
- $result = $this->request->request();
|
|
|
- $user = \app\common\model\User::where('mobile', $result['username'])->find();
|
|
|
- if(!$user){
|
|
|
- return $this->err();
|
|
|
- }
|
|
|
- $find = \app\common\model\User::where('id',$user->id)->setInc('traffic',$result['bytes']);
|
|
|
- file_put_contents('./log.txt',time()."_".$result['bytes']."\n",8);
|
|
|
- if($find){
|
|
|
- return 'true';
|
|
|
+ $jobData = $this->request->request();
|
|
|
+ $jobHandlerClassName = "app\job\FlowLog";
|
|
|
+ $jobName = "FlowLog";
|
|
|
+ $jobData['time'] = time();
|
|
|
+ $ret = Queue::push($jobHandlerClassName, $jobData, $jobName);
|
|
|
+ if ($ret) {
|
|
|
+ return header('HTTP/1.0 204 Success');
|
|
|
}
|
|
|
- return $this->err();
|
|
|
+ return false;
|
|
|
}
|
|
|
|
|
|
|