2023-05-30 13:52:17 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Livewire\Project\Application;
|
|
|
|
|
2023-06-30 13:57:40 +00:00
|
|
|
use App\Enums\ApplicationDeploymentStatus;
|
2023-05-30 13:52:17 +00:00
|
|
|
use App\Models\Application;
|
|
|
|
use App\Models\ApplicationDeploymentQueue;
|
2023-07-04 12:29:52 +00:00
|
|
|
use App\Models\Server;
|
2023-06-30 19:22:14 +00:00
|
|
|
use Illuminate\Support\Carbon;
|
2023-06-30 13:57:40 +00:00
|
|
|
use Illuminate\Support\Facades\Process;
|
|
|
|
use Illuminate\Support\Str;
|
2023-08-08 09:51:36 +00:00
|
|
|
use Livewire\Component;
|
2023-05-30 13:52:17 +00:00
|
|
|
|
2023-05-31 10:38:36 +00:00
|
|
|
class DeploymentNavbar extends Component
|
2023-05-30 13:52:17 +00:00
|
|
|
{
|
2023-06-30 13:57:40 +00:00
|
|
|
public ApplicationDeploymentQueue $application_deployment_queue;
|
2023-07-06 06:27:22 +00:00
|
|
|
public Application $application;
|
|
|
|
public Server $server;
|
2023-07-04 10:38:22 +00:00
|
|
|
public bool $is_debug_enabled = false;
|
2023-12-04 14:42:08 +00:00
|
|
|
protected $listeners = ['deploymentFinished','echo:custom-channel,ApplicationDeploymentFinished' => 'notifyNewOrder'];
|
2023-06-30 13:57:40 +00:00
|
|
|
|
2023-12-04 14:42:08 +00:00
|
|
|
public function notifyNewOrder() {
|
|
|
|
ray('New order received');
|
|
|
|
}
|
2023-07-04 12:29:52 +00: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-08-08 09:51:36 +00:00
|
|
|
|
2023-05-31 12:42:37 +00:00
|
|
|
public function deploymentFinished()
|
|
|
|
{
|
2023-06-30 13:57:40 +00:00
|
|
|
$this->application_deployment_queue->refresh();
|
|
|
|
}
|
2023-08-08 09:51:36 +00:00
|
|
|
|
2023-06-30 13:57:40 +00:00
|
|
|
public function show_debug()
|
|
|
|
{
|
2023-07-04 12:29:52 +00: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 13:57:40 +00:00
|
|
|
$this->emit('refreshQueue');
|
2023-05-31 12:42:37 +00:00
|
|
|
}
|
2023-08-08 09:51:36 +00:00
|
|
|
|
2023-05-30 13:52:17 +00:00
|
|
|
public function cancel()
|
|
|
|
{
|
|
|
|
try {
|
2023-06-30 19:22:14 +00:00
|
|
|
$kill_command = "kill -9 {$this->application_deployment_queue->current_process_id}";
|
2023-06-30 13:57:40 +00: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 12:29:52 +00:00
|
|
|
if (Str::of($process->output())->contains([$this->server->ip, 'EOF-COOLIFY-SSH'])) {
|
2023-06-30 19:22:14 +00:00
|
|
|
Process::run($kill_command);
|
2023-06-30 13:57:40 +00:00
|
|
|
}
|
2023-06-30 19:22:14 +00: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 13:57:40 +00:00
|
|
|
$this->application_deployment_queue->update([
|
2023-06-30 19:22:14 +00:00
|
|
|
'logs' => json_encode($previous_logs, flags: JSON_THROW_ON_ERROR),
|
2023-06-30 13:57:40 +00:00
|
|
|
]);
|
|
|
|
}
|
2023-06-09 13:55:21 +00:00
|
|
|
} catch (\Throwable $e) {
|
2023-09-15 13:34:25 +00:00
|
|
|
return handleError($e, $this);
|
2023-10-17 09:10:33 +00:00
|
|
|
} finally {
|
|
|
|
$this->application_deployment_queue->update([
|
|
|
|
'current_process_id' => null,
|
|
|
|
'status' => ApplicationDeploymentStatus::CANCELLED_BY_USER->value,
|
|
|
|
]);
|
|
|
|
queue_next_deployment($this->application);
|
2023-05-30 13:52:17 +00:00
|
|
|
}
|
|
|
|
}
|
2023-08-08 09:51:36 +00:00
|
|
|
}
|