61 lines
1.6 KiB
PHP
61 lines
1.6 KiB
PHP
<?php
|
|
|
|
namespace App\Jobs\Services;
|
|
|
|
use App\Enums\DeploymentStatus;
|
|
use App\Enums\ServiceStatus;
|
|
use App\Models\Deployment;
|
|
use App\Models\Service;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
use Illuminate\Foundation\Queue\Queueable;
|
|
|
|
class DeployService implements ShouldQueue
|
|
{
|
|
use Queueable;
|
|
|
|
protected Deployment $deployment;
|
|
|
|
public function __construct(
|
|
public Service $service,
|
|
public ?string $defaultPassword = null,
|
|
) {
|
|
//
|
|
}
|
|
|
|
public function handle(): void
|
|
{
|
|
$driver = $this->service->driver($this->defaultPassword);
|
|
$this->service->update([
|
|
'status' => ServiceStatus::INSTALLING,
|
|
]);
|
|
$this->deployment = $this->service->deployments()->create([
|
|
'status' => DeploymentStatus::PENDING,
|
|
]);
|
|
foreach ($driver->deploymentPlan->steps as $index => $plannedStep) {
|
|
$step = $this->deployment->steps()->create([
|
|
'order' => $index + 1,
|
|
'status' => DeploymentStatus::PENDING,
|
|
'script' => $plannedStep->getSafeScript(),
|
|
'secrets' => [
|
|
'defaultPassword' => $this->defaultPassword,
|
|
],
|
|
]);
|
|
if ($index === 0) {
|
|
$step->dispatchJob();
|
|
}
|
|
}
|
|
}
|
|
|
|
public function failed(\Throwable $exception): void
|
|
{
|
|
if (isset($this->deployment)) {
|
|
$this->deployment->update([
|
|
'status' => DeploymentStatus::FAILED,
|
|
]);
|
|
$this->service->update([
|
|
'status' => ServiceStatus::ERROR,
|
|
]);
|
|
}
|
|
}
|
|
}
|