AutoPingNode.php 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <?php
  2. namespace App\Console\Commands;
  3. use App\Components\NetworkDetection;
  4. use App\Models\SsNode;
  5. use App\Models\SsNodePing;
  6. use Illuminate\Console\Command;
  7. use Log;
  8. class AutoPingNode extends Command {
  9. protected $signature = 'autoPingNode';
  10. protected $description = '节点定时Ping测速';
  11. public function handle(): void {
  12. $jobStartTime = microtime(true);
  13. $nodeList = SsNode::query()->whereIsRelay(0)->whereStatus(1)->get();
  14. foreach($nodeList as $node){
  15. $this->pingNode($node->id, $node->is_ddns? $node->server : $node->ip);
  16. }
  17. $jobEndTime = microtime(true);
  18. $jobUsedTime = round(($jobEndTime - $jobStartTime), 4);
  19. Log::info('---【'.$this->description.'】完成---,耗时'.$jobUsedTime.'秒');
  20. }
  21. // 节点Ping测速
  22. private function pingNode($nodeId, $ip): void {
  23. $result = NetworkDetection::ping($ip);
  24. if($result){
  25. $obj = new SsNodePing();
  26. $obj->node_id = $nodeId;
  27. $obj->ct = intval($result['China Telecom']['time']);
  28. $obj->cu = intval($result['China Unicom']['time']);
  29. $obj->cm = intval($result['China Mobile']['time']);
  30. $obj->hk = intval($result['Hong Kong']['time']);
  31. $obj->save();
  32. }else{
  33. Log::info("【".$ip."】Ping测速获取失败");
  34. }
  35. }
  36. }