coolify/app/Livewire/Project/New/Select.php

150 lines
4.9 KiB
PHP
Raw Normal View History

<?php
2023-12-07 19:06:32 +01:00
namespace App\Livewire\Project\New;
use App\Models\Project;
use App\Models\Server;
2023-08-23 10:14:39 +02:00
use Countable;
2023-08-30 11:26:46 +02:00
use Illuminate\Support\Collection;
2023-09-25 15:48:43 +02:00
use Illuminate\Support\Facades\Cache;
use Livewire\Component;
class Select extends Component
{
public $current_step = 'type';
2023-08-30 11:06:44 +02:00
public ?int $server = null;
public string $type;
public string $server_id;
public string $destination_uuid;
2023-09-23 11:47:24 +02:00
public Countable|array|Server $servers = [];
2023-08-30 11:26:46 +02:00
public Collection|array $standaloneDockers = [];
public Collection|array $swarmDockers = [];
public array $parameters;
2023-09-25 15:48:43 +02:00
public Collection|array $services = [];
2023-10-24 12:33:49 +02:00
public Collection|array $allServices = [];
2023-09-25 15:48:43 +02:00
public bool $loadingServices = true;
2023-09-27 21:51:06 +02:00
public bool $loading = false;
public $environments = [];
public ?string $selectedEnvironment = null;
2023-09-05 12:14:31 +02:00
public ?string $existingPostgresqlUrl = null;
2023-10-24 12:33:49 +02:00
public ?string $search = null;
2023-08-30 11:06:44 +02:00
protected $queryString = [
'server',
2023-10-24 12:33:49 +02:00
'search'
2023-08-30 11:06:44 +02:00
];
2023-09-26 14:45:52 +02:00
public function mount()
{
$this->parameters = get_route_parameters();
2023-09-05 12:14:31 +02:00
if (isDev()) {
$this->existingPostgresqlUrl = 'postgres://coolify:password@coolify-db:5432';
}
$projectUuid = data_get($this->parameters, 'project_uuid');
$this->environments = Project::whereUuid($projectUuid)->first()->environments;
$this->selectedEnvironment = data_get($this->parameters, 'environment_name');
}
2023-10-24 12:33:49 +02:00
public function render()
{
if ($this->search) $this->loadServices();
2023-10-24 12:33:49 +02:00
return view('livewire.project.new.select');
}
public function updatedSelectedEnvironment()
{
return redirect()->route('project.resources.new', [
'project_uuid' => $this->parameters['project_uuid'],
'environment_name' => $this->selectedEnvironment,
]);
}
2023-10-24 12:33:49 +02:00
2023-09-05 12:14:31 +02:00
// public function addExistingPostgresql()
// {
// try {
// instantCommand("psql {$this->existingPostgresqlUrl} -c 'SELECT 1'");
2023-12-07 19:06:32 +01:00
// $this->dispatch('success', 'Successfully connected to the database.');
2023-09-11 17:36:30 +02:00
// } catch (\Throwable $e) {
// return handleError($e, $this);
2023-09-05 12:14:31 +02:00
// }
// }
2023-09-26 14:45:52 +02:00
public function loadServices()
2023-09-25 15:48:43 +02:00
{
try {
if (count($this->allServices) > 0) {
2023-10-24 12:33:49 +02:00
if (!$this->search) {
$this->services = $this->allServices;
return;
}
$this->services = $this->allServices->filter(function ($service, $key) {
$tags = collect(data_get($service, 'tags', []));
return str_contains(strtolower($key), strtolower($this->search)) || $tags->contains(function ($tag) {
return str_contains(strtolower($tag), strtolower($this->search));
});
});
} else {
$this->search = null;
$this->allServices = getServiceTemplates();
$this->services = $this->allServices->filter(function ($service, $key) {
return str_contains(strtolower($key), strtolower($this->search));
});;
2023-12-07 19:06:32 +01:00
$this->dispatch('success', 'Successfully loaded services.');
2023-09-25 15:48:43 +02:00
}
} catch (\Throwable $e) {
return handleError($e, $this);
} finally {
$this->loadingServices = false;
}
}
2023-09-05 12:14:31 +02:00
public function setType(string $type)
{
$this->type = $type;
2023-09-27 21:51:06 +02:00
if ($this->loading) return;
$this->loading = true;
2023-09-05 12:14:31 +02:00
if ($type === "existing-postgresql") {
$this->current_step = $type;
return;
}
2023-08-23 10:14:39 +02:00
if (count($this->servers) === 1) {
$server = $this->servers->first();
2023-09-05 12:14:31 +02:00
$this->setServer($server);
2023-08-23 10:14:39 +02:00
if (count($server->destinations()) === 1) {
2023-09-05 12:14:31 +02:00
$this->setDestination($server->destinations()->first()->uuid);
2023-08-23 10:14:39 +02:00
}
}
2023-08-30 11:26:46 +02:00
if (!is_null($this->server)) {
2023-08-30 11:06:44 +02:00
$foundServer = $this->servers->where('id', $this->server)->first();
if ($foundServer) {
2023-09-05 12:14:31 +02:00
return $this->setServer($foundServer);
2023-08-30 11:06:44 +02:00
}
}
$this->current_step = 'servers';
}
2023-09-05 12:14:31 +02:00
public function setServer(Server $server)
{
$this->server_id = $server->id;
2023-08-30 11:26:46 +02:00
$this->standaloneDockers = $server->standaloneDockers;
$this->swarmDockers = $server->swarmDockers;
$this->current_step = 'destinations';
}
2023-09-05 12:14:31 +02:00
public function setDestination(string $destination_uuid)
{
$this->destination_uuid = $destination_uuid;
redirect()->route('project.resources.new', [
'project_uuid' => $this->parameters['project_uuid'],
'environment_name' => $this->parameters['environment_name'],
'type' => $this->type,
'destination' => $this->destination_uuid,
2023-09-21 17:48:31 +02:00
'server_id' => $this->server_id,
]);
}
2023-09-25 15:48:43 +02:00
public function loadServers()
{
2023-08-21 10:18:11 +02:00
$this->servers = Server::isUsable()->get();
}
}