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

78 lines
2.3 KiB
PHP
Raw Normal View History

2023-06-30 10:49:00 +02:00
<?php
2023-08-07 18:46:40 +02:00
namespace App\Http\Livewire\Project\Application;
2023-06-30 10:49:00 +02:00
2023-09-14 12:45:50 +02:00
use App\Jobs\ContainerStatusJob;
2023-06-30 10:49:00 +02:00
use App\Models\Application;
use Livewire\Component;
use Visus\Cuid2\Cuid2;
class Heading extends Component
{
public Application $application;
public array $parameters;
protected string $deploymentUuid;
public function mount()
{
$this->parameters = get_route_parameters();
2023-06-30 10:49:00 +02:00
}
public function check_status()
{
2023-09-14 12:45:50 +02:00
dispatch_sync(new ContainerStatusJob($this->application->destination->server));
2023-06-30 10:49:00 +02:00
$this->application->refresh();
2023-09-14 15:52:04 +02:00
$this->application->previews->each(function ($preview) {
$preview->refresh();
});
2023-06-30 10:49:00 +02:00
}
public function force_deploy_without_cache()
{
$this->deploy(force_rebuild: true);
}
2023-06-30 10:49:00 +02:00
public function deploy(bool $force_rebuild = false)
{
$this->setDeploymentUuid();
queue_application_deployment(
application_id: $this->application->id,
deployment_uuid: $this->deploymentUuid,
force_rebuild: $force_rebuild,
);
return redirect()->route('project.application.deployment', [
'project_uuid' => $this->parameters['project_uuid'],
'application_uuid' => $this->parameters['application_uuid'],
'deployment_uuid' => $this->deploymentUuid,
'environment_name' => $this->parameters['environment_name'],
]);
}
protected function setDeploymentUuid()
2023-06-30 10:49:00 +02:00
{
$this->deploymentUuid = new Cuid2(7);
$this->parameters['deployment_uuid'] = $this->deploymentUuid;
2023-06-30 10:49:00 +02:00
}
2023-06-30 10:49:00 +02:00
public function stop()
{
2023-08-21 18:00:12 +02:00
$containers = getCurrentApplicationContainerStatus($this->application->destination->server, $this->application->id);
if ($containers->count() === 0) {
return;
}
foreach ($containers as $container) {
$containerName = data_get($container, 'Names');
if ($containerName) {
remote_process(
["docker rm -f {$containerName}"],
$this->application->destination->server
);
$this->application->status = 'stopped';
$this->application->save();
// $this->application->environment->project->team->notify(new StatusChanged($this->application));
2023-08-21 18:00:12 +02:00
}
}
2023-06-30 10:49:00 +02:00
}
2023-08-07 22:14:21 +02:00
}