AutoReportNode.php 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <?php
  2. namespace App\Console\Commands;
  3. use App\Components\Helpers;
  4. use App\Components\PushNotification;
  5. use App\Models\SsNode;
  6. use App\Models\SsNodeTrafficDaily;
  7. use Illuminate\Console\Command;
  8. use Log;
  9. class AutoReportNode extends Command {
  10. protected $signature = 'autoReportNode';
  11. protected $description = '自动报告节点昨日使用情况';
  12. public function handle(): void {
  13. $jobStartTime = microtime(true);
  14. if(Helpers::systemConfig()['node_daily_report']){
  15. $nodeList = SsNode::query()->whereStatus(1)->get();
  16. if(!$nodeList->isEmpty()){
  17. $msg = "|节点|上行流量|下行流量|合计|\r\n| :------ | :------ | :------ |\r\n";
  18. foreach($nodeList as $node){
  19. $log = SsNodeTrafficDaily::query()
  20. ->whereNodeId($node->id)
  21. ->where('created_at', '>=', date('Y-m-d 00:00:00', strtotime("-1 day")))
  22. ->where('created_at', '<=', date('Y-m-d 23:59:59', strtotime("-1 day")))
  23. ->first();
  24. if($log){
  25. $msg .= '|'.$node->name.'|'.flowAutoShow($log->u).'|'.flowAutoShow($log->d).'|'.$log->traffic."\r\n";
  26. }else{
  27. $msg .= '|'.$node->name.'|'.flowAutoShow(0).'|'.flowAutoShow(0)."|0B\r\n";
  28. }
  29. }
  30. PushNotification::send('节点日报', $msg);
  31. }
  32. }
  33. $jobEndTime = microtime(true);
  34. $jobUsedTime = round(($jobEndTime - $jobStartTime), 4);
  35. Log::info('---【'.$this->description.'】完成---,耗时'.$jobUsedTime.'秒');
  36. }
  37. }