1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <?php
- namespace App\Console\Commands;
- use App\Models\SsNode;
- use App\Models\SsNodeTrafficDaily;
- use App\Models\UserTrafficLog;
- use Illuminate\Console\Command;
- use Log;
- class AutoStatisticsNodeDailyTraffic extends Command {
- protected $signature = 'autoStatisticsNodeDailyTraffic';
- protected $description = '自动统计节点每日流量';
- public function handle(): void {
- $jobStartTime = microtime(true);
- $nodeList = SsNode::query()->whereStatus(1)->orderBy('id')->get();
- foreach($nodeList as $node){
- $this->statisticsByNode($node->id);
- }
- $jobEndTime = microtime(true);
- $jobUsedTime = round(($jobEndTime - $jobStartTime), 4);
- Log::info('---【'.$this->description.'】完成---,耗时'.$jobUsedTime.'秒');
- }
- private function statisticsByNode($node_id): void {
- $start_time = strtotime(date('Y-m-d 00:00:00', strtotime("-1 day")));
- $end_time = strtotime(date('Y-m-d 23:59:59', strtotime("-1 day")));
- $query = UserTrafficLog::query()->whereNodeId($node_id)->whereBetween('log_time', [$start_time, $end_time]);
- $u = $query->sum('u');
- $d = $query->sum('d');
- $total = $u + $d;
- $traffic = flowAutoShow($total);
- if($total){ // 有数据才记录
- $obj = new SsNodeTrafficDaily();
- $obj->node_id = $node_id;
- $obj->u = $u;
- $obj->d = $d;
- $obj->total = $total;
- $obj->traffic = $traffic;
- $obj->save();
- }
- }
- }
|