coolify/app/Http/Livewire/DeployApplication.php

65 lines
1.8 KiB
PHP
Raw Normal View History

<?php
namespace App\Http\Livewire;
2023-03-31 13:32:07 +02:00
use App\Jobs\DeployApplicationJob;
use App\Models\Application;
2023-04-19 12:42:15 +02:00
use Illuminate\Support\Facades\Route;
use Livewire\Component;
use Visus\Cuid2\Cuid2;
class DeployApplication extends Component
{
public string $applicationId;
public $activity;
2023-03-31 09:42:13 +02:00
public $status;
public Application $application;
public $destination;
2023-04-19 12:42:15 +02:00
public array $parameters;
protected string $deployment_uuid;
protected array $command = [];
protected $source;
2023-04-19 12:42:15 +02:00
public function mount()
2023-03-31 09:42:13 +02:00
{
2023-04-19 12:42:15 +02:00
$this->parameters = Route::current()->parameters();
$this->application = Application::find($this->applicationId)->first();
2023-03-31 09:42:13 +02:00
$this->destination = $this->application->destination->getMorphClass()::where('id', $this->application->destination->id)->first();
2023-03-30 20:19:11 +02:00
}
2023-03-31 13:32:07 +02:00
2023-04-14 11:24:58 +02:00
public function start()
2023-03-31 13:32:07 +02:00
{
// Create Deployment ID
$this->deployment_uuid = new Cuid2(7);
2023-04-19 12:42:15 +02:00
$this->parameters['deployment_uuid'] = $this->deployment_uuid;
2023-03-29 15:47:56 +02:00
2023-03-31 13:32:07 +02:00
dispatch(new DeployApplicationJob(
deployment_uuid: $this->deployment_uuid,
application_uuid: $this->application->uuid,
2023-03-31 13:32:07 +02:00
));
2023-04-19 12:42:15 +02:00
return redirect()->route('project.applications.deployment', $this->parameters);
}
2023-03-30 20:19:11 +02:00
public function stop()
2023-03-29 15:47:56 +02:00
{
runRemoteCommandSync($this->destination->server, ["docker stop -t 0 {$this->application->uuid} >/dev/null 2>&1"]);
2023-04-14 11:24:58 +02:00
$this->application->status = 'stopped';
2023-03-31 09:42:13 +02:00
$this->application->save();
}
2023-04-14 13:18:55 +02:00
public function kill()
{
runRemoteCommandSync($this->destination->server, ["docker rm -f {$this->application->uuid}"]);
2023-04-14 13:18:55 +02:00
if ($this->application->status != 'exited') {
$this->application->status = 'exited';
$this->application->save();
}
}
2023-03-31 13:32:07 +02:00
2023-03-31 09:42:13 +02:00
public function pollingStatus()
{
$this->application->refresh();
2023-03-29 15:47:56 +02:00
}
}