2023-03-28 20:13:08 +00:00
|
|
|
<?php
|
|
|
|
|
2023-04-25 09:01:56 +00:00
|
|
|
namespace App\Http\Livewire\Project\Application;
|
2023-03-28 20:13:08 +00:00
|
|
|
|
2023-05-24 12:26:50 +00:00
|
|
|
use App\Jobs\ContainerStopJob;
|
2023-03-28 20:13:08 +00:00
|
|
|
use App\Models\Application;
|
|
|
|
use Livewire\Component;
|
|
|
|
use Visus\Cuid2\Cuid2;
|
|
|
|
|
2023-04-25 09:01:56 +00:00
|
|
|
class Deploy extends Component
|
2023-03-28 20:13:08 +00:00
|
|
|
{
|
2023-04-14 19:09:38 +00:00
|
|
|
public string $applicationId;
|
2023-03-28 20:13:08 +00:00
|
|
|
public $activity;
|
2023-03-31 07:42:13 +00:00
|
|
|
public $status;
|
|
|
|
public Application $application;
|
|
|
|
public $destination;
|
2023-04-19 10:42:15 +00:00
|
|
|
public array $parameters;
|
2023-03-30 09:10:31 +00:00
|
|
|
|
2023-03-28 20:13:08 +00:00
|
|
|
protected string $deployment_uuid;
|
|
|
|
protected array $command = [];
|
2023-03-30 09:10:31 +00:00
|
|
|
protected $source;
|
2023-03-28 20:13:08 +00:00
|
|
|
|
2023-05-31 10:38:36 +00:00
|
|
|
protected $listeners = [
|
|
|
|
'applicationStatusChanged' => 'applicationStatusChanged',
|
|
|
|
];
|
|
|
|
|
2023-04-19 10:42:15 +00:00
|
|
|
public function mount()
|
2023-03-31 07:42:13 +00:00
|
|
|
{
|
2023-05-24 12:26:50 +00:00
|
|
|
$this->parameters = get_parameters();
|
2023-04-25 12:43:35 +00:00
|
|
|
$this->application = Application::where('id', $this->applicationId)->first();
|
2023-03-31 07:42:13 +00:00
|
|
|
$this->destination = $this->application->destination->getMorphClass()::where('id', $this->application->destination->id)->first();
|
2023-03-30 18:19:11 +00:00
|
|
|
}
|
2023-05-31 10:38:36 +00:00
|
|
|
public function applicationStatusChanged()
|
|
|
|
{
|
|
|
|
$this->application->refresh();
|
|
|
|
}
|
2023-05-24 12:26:50 +00:00
|
|
|
protected function set_deployment_uuid()
|
2023-03-31 11:32:07 +00:00
|
|
|
{
|
2023-03-28 20:13:08 +00:00
|
|
|
// Create Deployment ID
|
2023-03-29 10:52:22 +00:00
|
|
|
$this->deployment_uuid = new Cuid2(7);
|
2023-04-19 10:42:15 +00:00
|
|
|
$this->parameters['deployment_uuid'] = $this->deployment_uuid;
|
2023-04-19 12:28:39 +00:00
|
|
|
}
|
2023-05-24 12:26:50 +00:00
|
|
|
public function deploy(bool $force = false)
|
2023-04-19 12:28:39 +00:00
|
|
|
{
|
2023-05-24 12:26:50 +00:00
|
|
|
$this->set_deployment_uuid();
|
|
|
|
|
|
|
|
queue_application_deployment(
|
2023-05-30 13:52:17 +00:00
|
|
|
application_id: $this->application->id,
|
|
|
|
deployment_uuid: $this->deployment_uuid,
|
|
|
|
force_rebuild: $force,
|
2023-05-24 12:26:50 +00:00
|
|
|
);
|
2023-05-31 12:42:37 +00:00
|
|
|
return redirect()->route('project.application.deployment', [
|
2023-05-24 12:26:50 +00:00
|
|
|
'project_uuid' => $this->parameters['project_uuid'],
|
|
|
|
'application_uuid' => $this->parameters['application_uuid'],
|
2023-05-31 12:42:37 +00:00
|
|
|
'deployment_uuid' => $this->deployment_uuid,
|
2023-05-24 12:26:50 +00:00
|
|
|
'environment_name' => $this->parameters['environment_name'],
|
|
|
|
]);
|
2023-03-28 20:13:08 +00:00
|
|
|
}
|
2023-03-30 18:19:11 +00:00
|
|
|
|
|
|
|
public function stop()
|
2023-04-14 11:18:55 +00:00
|
|
|
{
|
2023-05-25 10:00:09 +00:00
|
|
|
instant_remote_process(["docker rm -f {$this->application->uuid}"], $this->application->destination->server);
|
|
|
|
$this->application->status = get_container_status(server: $this->application->destination->server, container_id: $this->application->uuid);
|
|
|
|
$this->application->save();
|
2023-04-14 11:18:55 +00:00
|
|
|
}
|
2023-03-28 20:13:08 +00:00
|
|
|
}
|