coolify/app/Livewire/Project/Shared/ExecuteContainerCommand.php

153 lines
5.7 KiB
PHP
Raw Normal View History

2023-12-07 13:07:16 +01:00
<?php
2023-12-07 19:06:32 +01:00
namespace App\Livewire\Project\Shared;
2023-12-07 13:07:16 +01:00
use App\Actions\Server\RunCommand;
2023-12-07 13:07:16 +01:00
use App\Models\Application;
use App\Models\Server;
use App\Models\Service;
use Illuminate\Support\Collection;
2023-12-07 13:07:16 +01:00
use Livewire\Component;
class ExecuteContainerCommand extends Component
{
public string $command;
2024-06-10 22:43:34 +02:00
2023-12-07 13:07:16 +01:00
public string $container;
2024-06-10 22:43:34 +02:00
public Collection $containers;
2024-06-10 22:43:34 +02:00
2023-12-07 13:07:16 +01:00
public $parameters;
2024-06-10 22:43:34 +02:00
2023-12-07 13:07:16 +01:00
public $resource;
2024-06-10 22:43:34 +02:00
2023-12-07 13:07:16 +01:00
public string $type;
2024-06-10 22:43:34 +02:00
2023-12-07 13:07:16 +01:00
public string $workDir = '';
2024-06-10 22:43:34 +02:00
2023-12-07 13:07:16 +01:00
public Server $server;
2024-06-10 22:43:34 +02:00
public Collection $servers;
2023-12-07 13:07:16 +01:00
protected $rules = [
'server' => 'required',
'container' => 'required',
'command' => 'required',
'workDir' => 'nullable',
];
public function mount()
{
$this->parameters = get_route_parameters();
2023-12-08 13:55:55 +01:00
$this->containers = collect();
$this->servers = collect();
2023-12-07 13:07:16 +01:00
if (data_get($this->parameters, 'application_uuid')) {
$this->type = 'application';
$this->resource = Application::where('uuid', $this->parameters['application_uuid'])->firstOrFail();
if ($this->resource->destination->server->isFunctional()) {
$this->servers = $this->servers->push($this->resource->destination->server);
}
foreach ($this->resource->additional_servers as $server) {
if ($server->isFunctional()) {
$this->servers = $this->servers->push($server);
}
2023-12-07 13:07:16 +01:00
}
2024-06-10 22:43:34 +02:00
} elseif (data_get($this->parameters, 'database_uuid')) {
2023-12-07 13:07:16 +01:00
$this->type = 'database';
2024-06-10 22:43:34 +02:00
$resource = getResourceByUuid($this->parameters['database_uuid'], data_get(auth()->user()->currentTeam(), 'id'));
2023-12-07 13:07:16 +01:00
if (is_null($resource)) {
2024-04-10 15:00:46 +02:00
abort(404);
2023-12-07 13:07:16 +01:00
}
$this->resource = $resource;
if ($this->resource->destination->server->isFunctional()) {
$this->servers = $this->servers->push($this->resource->destination->server);
}
2023-12-07 13:07:16 +01:00
$this->container = $this->resource->uuid;
$this->containers->push($this->container);
2024-06-10 22:43:34 +02:00
} elseif (data_get($this->parameters, 'service_uuid')) {
2023-12-07 13:07:16 +01:00
$this->type = 'service';
$this->resource = Service::where('uuid', $this->parameters['service_uuid'])->firstOrFail();
$this->resource->applications()->get()->each(function ($application) {
2024-06-10 22:43:34 +02:00
$this->containers->push(data_get($application, 'name').'-'.data_get($this->resource, 'uuid'));
2023-12-07 13:07:16 +01:00
});
$this->resource->databases()->get()->each(function ($database) {
2024-06-10 22:43:34 +02:00
$this->containers->push(data_get($database, 'name').'-'.data_get($this->resource, 'uuid'));
2023-12-07 13:07:16 +01:00
});
if ($this->resource->server->isFunctional()) {
$this->servers = $this->servers->push($this->resource->server);
}
2023-12-07 13:07:16 +01:00
}
2023-12-07 13:48:23 +01:00
if ($this->containers->count() > 0) {
2023-12-07 13:07:16 +01:00
$this->container = $this->containers->first();
}
}
2024-06-10 22:43:34 +02:00
public function loadContainers()
{
foreach ($this->servers as $server) {
if (data_get($this->parameters, 'application_uuid')) {
if ($server->isSwarm()) {
$containers = collect([
[
2024-06-10 22:43:34 +02:00
'Names' => $this->resource->uuid.'_'.$this->resource->uuid,
],
]);
} else {
$containers = getCurrentApplicationContainerStatus($server, $this->resource->id, includePullrequests: true);
}
foreach ($containers as $container) {
$payload = [
'server' => $server,
'container' => $container,
];
$this->containers = $this->containers->push($payload);
}
2024-04-10 15:00:46 +02:00
}
}
if ($this->containers->count() > 0) {
if (data_get($this->parameters, 'application_uuid')) {
$this->container = data_get($this->containers->first(), 'container.Names');
} elseif (data_get($this->parameters, 'database_uuid')) {
$this->container = $this->containers->first();
} elseif (data_get($this->parameters, 'service_uuid')) {
$this->container = $this->containers->first();
}
}
}
2023-12-07 13:07:16 +01:00
public function runCommand()
{
try {
if (data_get($this->parameters, 'application_uuid')) {
$container = $this->containers->where('container.Names', $this->container)->first();
$container_name = data_get($container, 'container.Names');
if (is_null($container)) {
throw new \RuntimeException('Container not found.');
}
$server = data_get($container, 'server');
} else {
$container_name = $this->container;
$server = $this->servers->first();
}
if ($server->isForceDisabled()) {
throw new \RuntimeException('Server is disabled.');
}
2024-06-10 22:43:34 +02:00
$cmd = "sh -c 'if [ -f ~/.profile ]; then . ~/.profile; fi; ".str_replace("'", "'\''", $this->command)."'";
if (! empty($this->workDir)) {
$exec = "docker exec -w {$this->workDir} {$container_name} {$cmd}";
2023-12-07 13:07:16 +01:00
} else {
$exec = "docker exec {$container_name} {$cmd}";
2023-12-07 13:07:16 +01:00
}
$activity = RunCommand::run(server: $server, command: $exec);
$this->dispatch('activityMonitor', $activity->id);
2023-12-07 13:07:16 +01:00
} catch (\Throwable $e) {
return handleError($e, $this);
}
}
2024-06-10 22:43:34 +02:00
2023-12-07 13:07:16 +01:00
public function render()
{
return view('livewire.project.shared.execute-container-command');
}
}