mirror of
https://github.com/cedar2025/Xboard.git
synced 2025-01-23 11:08:13 -05:00
65 lines
1.8 KiB
PHP
65 lines
1.8 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Jobs;
|
|
|
|
use App\Models\StatUser;
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
use Illuminate\Foundation\Bus\Dispatchable;
|
|
use Illuminate\Queue\InteractsWithQueue;
|
|
use Illuminate\Queue\SerializesModels;
|
|
use Illuminate\Support\Facades\DB;
|
|
|
|
class StatUserJob implements ShouldQueue
|
|
{
|
|
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
|
|
|
|
protected array $data;
|
|
protected array $server;
|
|
protected string $protocol;
|
|
protected string $recordType;
|
|
|
|
public $tries = 3;
|
|
public $timeout = 60;
|
|
|
|
/**
|
|
* Create a new job instance.
|
|
*/
|
|
public function __construct(array $server, array $data, string $protocol, string $recordType = 'd')
|
|
{
|
|
$this->onQueue('stat');
|
|
$this->data = $data;
|
|
$this->server = $server;
|
|
$this->protocol = $protocol;
|
|
$this->recordType = $recordType;
|
|
}
|
|
|
|
/**
|
|
* Execute the job.
|
|
*/
|
|
public function handle(): void
|
|
{
|
|
// Calculate record timestamp
|
|
$recordAt = $this->recordType === 'm'
|
|
? strtotime(date('Y-m-01'))
|
|
: strtotime(date('Y-m-d'));
|
|
|
|
foreach ($this->data as $uid => $v) {
|
|
StatUser::updateOrCreate(
|
|
[
|
|
'user_id' => $uid,
|
|
'server_rate' => $this->server['rate'],
|
|
'record_at' => $recordAt,
|
|
'record_type' => $this->recordType,
|
|
],
|
|
[
|
|
'u' => DB::raw('COALESCE(u, 0) + ' . ($v[0] * $this->server['rate'])),
|
|
'd' => DB::raw('COALESCE(d, 0) + ' . ($v[1] * $this->server['rate'])),
|
|
't' => time(),
|
|
]
|
|
);
|
|
}
|
|
}
|
|
} |