Files
ProxyPanel/app/Console/Commands/AutoPingNode.php
兔姬桑 077d41480d 重构支付系统 + 代码优化
0. 重置支付系统,
1. 添加 码支付
2. 添加 PayJs
3. 代码优化
2020-08-05 03:20:31 +08:00

55 lines
1.3 KiB
PHP

<?php
namespace App\Console\Commands;
use App\Components\NetworkDetection;
use App\Http\Models\SsNode;
use App\Http\Models\SsNodePing;
use Illuminate\Console\Command;
use Log;
class AutoPingNode extends Command
{
protected $signature = 'autoPingNode';
protected $description = '节点定时Ping测速';
public function __construct()
{
parent::__construct();
}
public function handle()
{
$jobStartTime = microtime(TRUE);
$nodeList = SsNode::query()->where('is_transit', 0)->where('status', 1)->get();
foreach($nodeList as $node){
$this->pingNode($node->id, $node->is_ddns? $node->server : $node->ip);
}
$jobEndTime = microtime(TRUE);
$jobUsedTime = round(($jobEndTime-$jobStartTime), 4);
Log::info('---【'.$this->description.'】完成---,耗时'.$jobUsedTime.'秒');
}
// 节点Ping测速
private function pingNode($nodeId, $ip)
{
$result = NetworkDetection::ping($ip);
if($result){
$obj = new SsNodePing();
$obj->node_id = $nodeId;
$obj->ct = intval($result['China Telecom']['time']);
$obj->cu = intval($result['China Unicom']['time']);
$obj->cm = intval($result['China Mobile']['time']);
$obj->hk = intval($result['Hong Kong']['time']);
$obj->save();
}else{
Log::info("".$ip."】Ping测速获取失败");
}
}
}