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

76 lines
2.9 KiB
PHP
Raw Normal View History

2023-05-30 15:52:17 +02:00
<?php
namespace App\Http\Livewire\Project\Application;
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;
2023-06-30 15:57:40 +02:00
use Illuminate\Support\Facades\Process;
use Illuminate\Support\Str;
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;
protected $listeners = ['deploymentFinished'];
2023-06-30 15:57:40 +02:00
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-06-30 15:57:40 +02:00
$this->emit('refreshQueue');
2023-05-31 14:42:37 +02:00
}
2023-05-30 15:52:17 +02:00
public function cancel()
{
try {
2023-06-30 21:22:14 +02:00
$kill_command = "kill -9 {$this->application_deployment_queue->current_process_id}";
2023-06-30 15:57:40 +02:00
if ($this->application_deployment_queue->current_process_id) {
$process = Process::run("ps -p {$this->application_deployment_queue->current_process_id} -o command --no-headers");
2023-07-04 14:29:52 +02:00
if (Str::of($process->output())->contains([$this->server->ip, 'EOF-COOLIFY-SSH'])) {
2023-06-30 21:22:14 +02:00
Process::run($kill_command);
2023-06-30 15:57:40 +02:00
}
2023-06-30 21:22:14 +02:00
$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;
2023-06-30 15:57:40 +02:00
$this->application_deployment_queue->update([
2023-06-30 21:22:14 +02:00
'logs' => json_encode($previous_logs, flags: JSON_THROW_ON_ERROR),
2023-06-30 15:57:40 +02:00
]);
}
2023-06-09 15:55:21 +02:00
} catch (\Throwable $e) {
return handleError($e, $this);
} finally {
$this->application_deployment_queue->update([
'current_process_id' => null,
'status' => ApplicationDeploymentStatus::CANCELLED_BY_USER->value,
]);
queue_next_deployment($this->application);
2023-05-30 15:52:17 +02:00
}
}
}