Files
Paymenter-Version-Tracks/app/Jobs/Server/UpgradeJob.php
Muhammad Tamir b3933b9960 v1.4.0
2025-11-14 10:59:24 +07:00

43 lines
1.0 KiB
PHP

<?php
namespace App\Jobs\Server;
use App\Helpers\ExtensionHelper;
use App\Models\Service;
use Exception;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Bus\Dispatchable;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Queue\SerializesModels;
class UpgradeJob implements ShouldQueue
{
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
public $timeout = 120;
public $tries = 1;
/**
* Create a new job instance.
*/
public function __construct(public Service $service, public $sendNotification = true) {}
/**
* Execute the job.
*/
public function handle(): void
{
// $data is the data that will be used to send the email, data is coming from the extension itself
try {
$data = ExtensionHelper::upgradeServer($this->service);
} catch (Exception $e) {
if ($e->getMessage() == 'No server assigned to this product') {
return;
}
throw $e;
}
}
}