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

108 lines
4.3 KiB
PHP
Raw Normal View History

2023-10-02 13:38:16 +02:00
<?php
2023-12-07 19:06:32 +01:00
namespace App\Livewire\Project\Shared;
2023-10-02 13:38:16 +02:00
use App\Models\Application;
use App\Models\Server;
use App\Models\Service;
2024-04-10 15:00:46 +02:00
use App\Models\StandaloneClickhouse;
use App\Models\StandaloneDragonfly;
use App\Models\StandaloneKeydb;
2023-10-24 14:31:28 +02:00
use App\Models\StandaloneMariadb;
2023-10-19 13:32:03 +02:00
use App\Models\StandaloneMongodb;
2023-10-24 14:31:28 +02:00
use App\Models\StandaloneMysql;
2023-10-02 13:38:16 +02:00
use App\Models\StandalonePostgresql;
2023-10-12 17:18:33 +02:00
use App\Models\StandaloneRedis;
use Illuminate\Support\Collection;
2023-10-02 13:38:16 +02:00
use Livewire\Component;
class Logs extends Component
{
public ?string $type = null;
2024-04-10 15:00:46 +02:00
public Application|Service|StandalonePostgresql|StandaloneRedis|StandaloneMongodb|StandaloneMysql|StandaloneMariadb|StandaloneKeydb|StandaloneDragonfly|StandaloneClickhouse $resource;
public Collection $servers;
public Collection $containers;
public $container = [];
2023-10-02 13:38:16 +02:00
public $parameters;
public $query;
public $status;
public $serviceSubType;
2023-10-02 13:38:16 +02:00
public function loadContainers($server_id)
{
try {
$server = $this->servers->firstWhere('id', $server_id);
if (!$server->isFunctional()) {
return;
}
if ($server->isSwarm()) {
$containers = collect([
[
'Names' => $this->resource->uuid . '_' . $this->resource->uuid,
]
]);
} else {
$containers = getCurrentApplicationContainerStatus($server, $this->resource->id, includePullrequests: true);
}
$server->containers = $containers->sort();
} catch (\Exception $e) {
return handleError($e, $this);
}
}
2023-10-02 13:38:16 +02:00
public function mount()
{
2024-03-05 09:19:15 +01:00
try {
$this->containers = collect();
$this->servers = collect();
$this->parameters = get_route_parameters();
$this->query = request()->query();
if (data_get($this->parameters, 'application_uuid')) {
$this->type = 'application';
$this->resource = Application::where('uuid', $this->parameters['application_uuid'])->firstOrFail();
$this->status = $this->resource->status;
if ($this->resource->destination->server->isFunctional()) {
$this->servers = $this->servers->push($this->resource->destination->server);
2024-02-27 09:01:19 +01:00
}
2024-03-05 09:19:15 +01:00
foreach ($this->resource->additional_servers as $server) {
if ($server->isFunctional()) {
$this->servers = $this->servers->push($server);
}
}
} else if (data_get($this->parameters, 'database_uuid')) {
$this->type = 'database';
2024-04-10 15:00:46 +02:00
$resource = getResourceByUuid($this->parameters['database_uuid'], data_get(auth()->user()->currentTeam(), 'id'));
2023-10-12 17:18:33 +02:00
if (is_null($resource)) {
2024-04-10 15:00:46 +02:00
abort(404);
2023-10-12 17:18:33 +02:00
}
2024-03-05 09:19:15 +01:00
$this->resource = $resource;
$this->status = $this->resource->status;
if ($this->resource->destination->server->isFunctional()) {
$this->servers = $this->servers->push($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) {
$this->containers->push(data_get($application, 'name') . '-' . data_get($this->resource, 'uuid'));
});
$this->resource->databases()->get()->each(function ($database) {
$this->containers->push(data_get($database, 'name') . '-' . data_get($this->resource, 'uuid'));
});
if ($this->resource->server->isFunctional()) {
$this->servers = $this->servers->push($this->resource->server);
}
}
$this->containers = $this->containers->sort();
2024-03-05 09:19:15 +01:00
} catch (\Exception $e) {
return handleError($e, $this);
2023-10-02 13:38:16 +02:00
}
}
public function render()
{
return view('livewire.project.shared.logs');
}
}