host = $host; } /** * Execute the job. * * @return void */ public function handle(): void { $host = $this->host; $response = $host->module->baseRequest('get', 'hosts/'.$host->id); if ($response['status'] === 200) { Log::debug($host->module->name.' '.$host->name.' '.$host->id.' 更新成功。', $response['json']); $host->update(Arr::except($response['json'], ['id', 'user_id', 'module_id', 'created_at', 'updated_at'])); } elseif ($response['status'] === 404) { if ($host->status !== 'unavailable') { Log::warning($host->module->name.' '.$host->name.' '.$host->id.' 不存在,标记为不可用。'); $host->status = 'unavailable'; $host->save(); } // dispatch(new HostJob($host, 'delete')); } } }