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')); // Aggregate traffic data $u = $d = 0; foreach ($this->data as $traffic) { $u += $traffic[0]; $d += $traffic[1]; } // Update or create traffic stats DB::transaction(function () use ($u, $d, $recordAt) { StatServer::updateOrCreate( [ 'record_at' => $recordAt, 'server_id' => $this->server['id'], 'server_type' => $this->protocol, 'record_type' => $this->recordType, ], [ 'u' => DB::raw("COALESCE(u, 0) + $u"), 'd' => DB::raw("COALESCE(d, 0) + $d"), ] ); }); } }