Lae/app/Jobs/Host/HostJob.php

96 lines
2.2 KiB
PHP

<?php
namespace App\Jobs\Host;
use App\Models\Host as HostModel;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Queue\SerializesModels;
use Illuminate\Support\Facades\Log;
// use Illuminate\Contracts\Queue\ShouldBeUnique;
class HostJob implements ShouldQueue
{
use InteractsWithQueue, Queueable, SerializesModels;
protected HostModel $host;
protected string $type;
protected bool $pass_unavailable;
/**
* Create a new job instance.
*
* @return void
*/
public function __construct(HostModel $host, $type = 'post', $pass_unavailable = true)
{
$this->host = $host;
$this->type = $type;
$this->pass_unavailable = $pass_unavailable;
}
/**
* Execute the job.
*
* @return void
*
* @noinspection PhpUndefinedVariableInspection
*/
public function handle(): void
{
if (! isset($this->host)) {
return;
}
$host = $this->host;
// 忽略 unavailable 状态的 host
if ($this->pass_unavailable && $host->status === 'unavailable') {
return;
}
$host->load(['module']);
if ($host->module->status !== 'up') {
Log::warning('模块不可用,跳过主机更新。', [
'host' => $host->name,
'module' => $host->module->name,
]);
return;
}
switch ($this->type) {
case 'patch':
$response = $host->module->http()->patch('hosts/'.$host->id, $host->toArray());
break;
case 'post':
$response = $host->module->http()->post('hosts', $host->toArray());
break;
case 'delete':
$response = $host->module->baseRequest('delete', 'hosts/'.$host->id);
// if successful
if ($response['status'] === 404) {
$host->delete();
}
break;
}
if ($this->type !== 'delete') {
if (! $response->successful()) {
$host->status = 'error';
}
$host->save();
}
}
}