coolify/app/Livewire/Project/Application/DeploymentNavbar.php

81 lines
2.9 KiB
PHP
Raw Normal View History

2023-05-30 15:52:17 +02:00
<?php
2023-12-07 19:06:32 +01:00
namespace App\Livewire\Project\Application;
2023-05-30 15:52:17 +02:00
2023-06-30 15:57:40 +02:00
use App\Enums\ApplicationDeploymentStatus;
2023-05-30 15:52:17 +02:00
use App\Models\Application;
use App\Models\ApplicationDeploymentQueue;
2023-07-04 14:29:52 +02:00
use App\Models\Server;
2023-06-30 21:22:14 +02:00
use Illuminate\Support\Carbon;
use Livewire\Component;
2023-05-30 15:52:17 +02:00
2023-05-31 12:38:36 +02:00
class DeploymentNavbar extends Component
2023-05-30 15:52:17 +02:00
{
2023-06-30 15:57:40 +02:00
public ApplicationDeploymentQueue $application_deployment_queue;
2023-07-06 08:27:22 +02:00
public Application $application;
public Server $server;
2023-07-04 12:38:22 +02:00
public bool $is_debug_enabled = false;
2023-12-04 20:47:32 +01:00
protected $listeners = ['deploymentFinished'];
2023-07-04 14:29:52 +02:00
public function mount()
{
$this->application = Application::find($this->application_deployment_queue->application_id);
$this->server = $this->application->destination->server;
$this->is_debug_enabled = $this->application->settings->is_debug_enabled;
}
2023-05-31 14:42:37 +02:00
public function deploymentFinished()
{
2023-06-30 15:57:40 +02:00
$this->application_deployment_queue->refresh();
}
2023-06-30 15:57:40 +02:00
public function show_debug()
{
2023-07-04 14:29:52 +02:00
$this->application->settings->is_debug_enabled = !$this->application->settings->is_debug_enabled;
$this->application->settings->save();
$this->is_debug_enabled = $this->application->settings->is_debug_enabled;
2023-12-07 19:06:32 +01:00
$this->dispatch('refreshQueue');
2023-05-31 14:42:37 +02:00
}
public function force_start()
{
try {
force_start_deployment($this->application_deployment_queue);
} catch (\Throwable $e) {
ray($e);
return handleError($e, $this);
}
}
2023-05-30 15:52:17 +02:00
public function cancel()
{
try {
$kill_command = "docker rm -f {$this->application_deployment_queue->deployment_uuid}";
2024-02-07 14:55:06 +01:00
$server_id = $this->application_deployment_queue->server_id ?? $this->application->destination->server_id;
$server = Server::find($server_id);
if ($this->application_deployment_queue->logs) {
$previous_logs = json_decode($this->application_deployment_queue->logs, associative: true, flags: JSON_THROW_ON_ERROR);
$new_log_entry = [
'command' => $kill_command,
'output' => "Deployment cancelled by user.",
'type' => 'stderr',
'order' => count($previous_logs) + 1,
'timestamp' => Carbon::now('UTC'),
'hidden' => false,
];
$previous_logs[] = $new_log_entry;
$this->application_deployment_queue->update([
'logs' => json_encode($previous_logs, flags: JSON_THROW_ON_ERROR),
]);
}
2024-02-07 14:55:06 +01:00
instant_remote_process([$kill_command], $server);
2023-06-09 15:55:21 +02:00
} catch (\Throwable $e) {
ray($e);
return handleError($e, $this);
} finally {
$this->application_deployment_queue->update([
'current_process_id' => null,
'status' => ApplicationDeploymentStatus::CANCELLED_BY_USER->value,
]);
2023-05-30 15:52:17 +02:00
}
}
}