coolify/app/Http/Livewire/DeployApplication.php

62 lines
1.6 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;
use Livewire\Component;
use Visus\Cuid2\Cuid2;
class DeployApplication extends Component
{
public string $application_uuid;
public $activity;
2023-03-31 09:42:13 +02:00
public $status;
public Application $application;
public $destination;
protected string $deployment_uuid;
protected array $command = [];
protected $source;
2023-03-31 09:42:13 +02:00
public function mount($application_uuid)
{
2023-03-30 20:19:11 +02:00
$this->application_uuid = $application_uuid;
2023-03-31 09:42:13 +02:00
$this->application = Application::where('uuid', $this->application_uuid)->first();
$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-03-30 20:19:11 +02:00
public function render()
{
return view('livewire.deploy-application');
}
2023-03-31 13:32:07 +02:00
public function deploy()
{
// Create Deployment ID
$this->deployment_uuid = new Cuid2(7);
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,
));
$currentUrl = url()->previous();
$deploymentUrl = "$currentUrl/deployment/$this->deployment_uuid";
return redirect($deploymentUrl);
}
2023-03-30 20:19:11 +02:00
public function stop()
2023-03-29 15:47:56 +02:00
{
2023-03-31 11:51:04 +02:00
runRemoteCommandSync($this->destination->server, ["docker rm -f {$this->application_uuid} >/dev/null 2>&1"]);
2023-03-31 09:42:13 +02:00
$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
}
}