mirror of
https://github.com/cedar2025/Xboard.git
synced 2025-01-22 18:48:14 -05:00
80 lines
2.8 KiB
PHP
80 lines
2.8 KiB
PHP
<?php
|
|
|
|
namespace App\Jobs;
|
|
|
|
use App\Services\StatisticalService;
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
use Illuminate\Foundation\Bus\Dispatchable;
|
|
use Illuminate\Queue\InteractsWithQueue;
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
class TrafficFetchJob implements ShouldQueue
|
|
{
|
|
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
|
|
protected $data;
|
|
protected $server;
|
|
protected $childServer;
|
|
protected $protocol;
|
|
protected $timestamp;
|
|
public $tries = 1;
|
|
public $timeout = 10;
|
|
|
|
/**
|
|
* Create a new job instance.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct(array $server, array $data, $protocol, int $timestamp, $childServer = null)
|
|
{
|
|
$this->onQueue('traffic_fetch');
|
|
$this->server = $server;
|
|
$this->data = $data;
|
|
$this->protocol = $protocol;
|
|
$this->timestamp = $timestamp;
|
|
$this->childServer = $childServer;
|
|
}
|
|
|
|
public function handle(): void
|
|
{
|
|
if ($this->attempts() === 1) {
|
|
$statService = new StatisticalService();
|
|
$statService->setStartAt($this->timestamp);
|
|
$statService->setUserStats();
|
|
$statService->setServerStats();
|
|
}
|
|
// 获取子节点\
|
|
$targetServer = $this->childServer ?? $this->server;
|
|
foreach ($this->data as $uid => $v) {
|
|
\DB::transaction(function () use ($uid, $v, $targetServer, $statService) {
|
|
$u = $v[0];
|
|
$d = $v[1];
|
|
$user = \DB::table('v2_user')->lockForUpdate()->where('id', $uid)->first();
|
|
if (!$user) {
|
|
return;
|
|
}
|
|
if ($this->attempts() === 1) { // 写缓存
|
|
$statService->statUser($targetServer['rate'], $uid, $u, $d); //如果存在子节点则使用子节点的倍率
|
|
if (!blank($this->childServer)) { //如果存在子节点,则给子节点计算流量
|
|
$statService->statServer($this->childServer['id'], $this->protocol, $u, $d);
|
|
}
|
|
$statService->statServer($this->server['id'], $this->protocol, $u, $d);
|
|
}
|
|
$newTime = time();
|
|
$newU = $user->u + ($v[0] * $targetServer['rate']);
|
|
$newD = $user->d + ($v[1] * $targetServer['rate']);
|
|
$rows = \DB::table('v2_user')
|
|
->where('id', $uid)
|
|
->update([
|
|
't' => $newTime,
|
|
'u' => $newU,
|
|
'd' => $newD,
|
|
]);
|
|
if($rows === 0){
|
|
\Log::error("流量更新失败\n未记录用户ID:{$uid}\n未记录上行:{$user->u}\n未记录下行:{$user->d}");
|
|
}
|
|
}, 3);
|
|
}
|
|
}
|
|
}
|