mirror of
https://github.com/usetrmnl/byos_laravel.git
synced 2026-01-13 15:07:49 +00:00
feat(#17): add commands and jobs to poll, download and update firmware feat(#17): update firmware modal feat(#17): add tests
55 lines
1.7 KiB
PHP
55 lines
1.7 KiB
PHP
<?php
|
|
|
|
namespace App\Jobs;
|
|
|
|
use App\Models\Firmware;
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
use Illuminate\Foundation\Bus\Dispatchable;
|
|
use Illuminate\Http\Client\ConnectionException;
|
|
use Illuminate\Queue\InteractsWithQueue;
|
|
use Illuminate\Queue\SerializesModels;
|
|
use Illuminate\Support\Facades\Http;
|
|
|
|
class FirmwarePollJob implements ShouldQueue
|
|
{
|
|
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
|
|
|
|
private bool $download;
|
|
|
|
public function __construct(bool $download = false)
|
|
{
|
|
$this->download = $download;
|
|
}
|
|
|
|
public function handle(): void
|
|
{
|
|
try {
|
|
$response = Http::get('https://usetrmnl.com/api/firmware/latest')->json();
|
|
|
|
if (!is_array($response) || !isset($response['version']) || !isset($response['url'])) {
|
|
\Log::error('Invalid firmware response format received');
|
|
return;
|
|
}
|
|
|
|
$latestFirmware = Firmware::updateOrCreate(
|
|
['version_tag' => $response['version']],
|
|
[
|
|
'url' => $response['url'],
|
|
'latest' => true,
|
|
]
|
|
);
|
|
|
|
Firmware::where('id', '!=', $latestFirmware->id)->update(['latest' => false]);
|
|
|
|
if ($this->download && $latestFirmware->url && $latestFirmware->storage_location === null) {
|
|
FirmwareDownloadJob::dispatchSync($latestFirmware);
|
|
}
|
|
|
|
} catch (ConnectionException $e) {
|
|
\Log::error('Firmware download failed: '.$e->getMessage());
|
|
} catch (\Exception $e) {
|
|
\Log::error('Unexpected error in firmware polling: '.$e->getMessage());
|
|
}
|
|
}
|
|
}
|