From d7e9821582abc13695bf9ab48b9aa89a72bc5927 Mon Sep 17 00:00:00 2001 From: Stuart Rowlands Date: Fri, 8 Dec 2023 12:07:27 -0800 Subject: [PATCH] Resolve merge conflicts. --- app/Livewire/Project/Application/Command.php | 113 ------------------- 1 file changed, 113 deletions(-) delete mode 100644 app/Livewire/Project/Application/Command.php diff --git a/app/Livewire/Project/Application/Command.php b/app/Livewire/Project/Application/Command.php deleted file mode 100644 index 5ee7e522a..000000000 --- a/app/Livewire/Project/Application/Command.php +++ /dev/null @@ -1,113 +0,0 @@ - 'required', - 'container' => 'required', - 'command' => 'required', - 'workDir' => 'nullable', - ]; - - public function mount() - { - $this->containers = collect(); - $this->parameters = get_route_parameters(); - if (data_get($this->parameters, 'application_uuid')) { - $this->type = 'application'; - $this->resource = Application::where('uuid', $this->parameters['application_uuid'])->firstOrFail(); - $this->server = $this->resource->destination->server; - $containers = getCurrentApplicationContainerStatus($this->server, $this->resource->id, 0); - if ($containers->count() > 0) { - $containers->each(function ($container) { - $this->containers->push(str_replace('/', '', $container['Names'])); - }); - } - } else if (data_get($this->parameters, 'database_uuid')) { - $this->type = 'database'; - $resource = StandalonePostgresql::where('uuid', $this->parameters['database_uuid'])->first(); - if (is_null($resource)) { - $resource = StandaloneRedis::where('uuid', $this->parameters['database_uuid'])->first(); - if (is_null($resource)) { - $resource = StandaloneMongodb::where('uuid', $this->parameters['database_uuid'])->first(); - if (is_null($resource)) { - $resource = StandaloneMysql::where('uuid', $this->parameters['database_uuid'])->first(); - if (is_null($resource)) { - $resource = StandaloneMariadb::where('uuid', $this->parameters['database_uuid'])->first(); - if (is_null($resource)) { - abort(404); - } - } - } - } - } - $this->resource = $resource; - $this->server = $this->resource->destination->server; - $this->container = $this->resource->uuid; - $this->containers->push($this->container); - } else if (data_get($this->parameters, 'service_uuid')) { - $this->type = 'service'; - $this->resource = Service::where('uuid', $this->parameters['service_uuid'])->firstOrFail(); - $this->resource->applications()->get()->each(function ($application) { - if (str(data_get($application, 'status'))->contains('running')) { - $this->containers->push(data_get($application, 'name') . '-' . data_get($this->resource, 'uuid')); - } - }); - $this->resource->databases()->get()->each(function ($database) { - if (str(data_get($database, 'status'))->contains('running')) { - $this->containers->push(data_get($database, 'name') . '-' . data_get($this->resource, 'uuid')); - } - }); - - $this->server = $this->resource->server; - } - if ($this->containers->count() > 1) { - $this->container = $this->containers->first(); - } - } - - public function runCommand() - { - $this->validate(); - try { - // Wrap command to prevent escaped execution in the host. - $cmd = 'sh -c "' . str_replace('"', '\"', $this->command) . '"'; - - if (!empty($this->workDir)) { - $exec = "docker exec -w {$this->workDir} {$this->container} {$cmd}"; - } else { - $exec = "docker exec {$this->container} {$cmd}"; - } - $activity = remote_process([$exec], $this->server, ignore_errors: true); - $this->dispatch('newMonitorActivity', $activity->id); - } catch (\Throwable $e) { - return handleError($e, $this); - } - } - public function render() - { - return view('livewire.project.shared.execute-container-command'); - } -}