coolify/app/Jobs/PullTemplatesFromCDN.php

43 lines
1.3 KiB
PHP
Raw Normal View History

<?php
namespace App\Jobs;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldBeEncrypted;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Bus\Dispatchable;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Queue\SerializesModels;
use Illuminate\Support\Facades\File;
use Illuminate\Support\Facades\Http;
2024-06-10 20:43:34 +00:00
class PullTemplatesFromCDN implements ShouldBeEncrypted, ShouldQueue
{
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
public $timeout = 10;
public function __construct()
{
$this->onQueue('high');
}
2024-06-10 20:43:34 +00:00
public function handle(): void
{
try {
2025-01-21 12:39:53 +00:00
if (isDev()) {
2024-08-07 07:50:29 +00:00
return;
}
$response = Http::retry(3, 1000)->get(config('constants.services.official'));
if ($response->successful()) {
$services = $response->json();
File::put(base_path('templates/'.config('constants.services.file_name')), json_encode($services));
2024-08-07 07:50:29 +00:00
} else {
send_internal_notification('PullTemplatesAndVersions failed with: '.$response->status().' '.$response->body());
}
} catch (\Throwable $e) {
2024-06-10 20:43:34 +00:00
send_internal_notification('PullTemplatesAndVersions failed with: '.$e->getMessage());
}
}
}