48 lines
1.3 KiB
PHP
48 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace App\Jobs\Server;
|
|
|
|
use App\Helpers\ExtensionHelper;
|
|
use App\Helpers\NotificationHelper;
|
|
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 CreateJob 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::createServer($this->service);
|
|
} catch (Exception $e) {
|
|
if ($e->getMessage() == 'No server assigned to this product') {
|
|
return;
|
|
}
|
|
throw $e;
|
|
}
|
|
|
|
if ($this->sendNotification && isset($data)) {
|
|
NotificationHelper::serverCreatedNotification($this->service->user, $this->service, is_array($data) ? $data : []);
|
|
}
|
|
}
|
|
}
|