coolify/app/Livewire/Project/Database/Postgresql/General.php

170 lines
6.3 KiB
PHP
Raw Normal View History

2023-08-07 18:46:40 +02:00
<?php
2023-12-07 19:06:32 +01:00
namespace App\Livewire\Project\Database\Postgresql;
2023-08-07 18:46:40 +02:00
use App\Actions\Database\StartDatabaseProxy;
use App\Actions\Database\StopDatabaseProxy;
use App\Models\StandalonePostgresql;
use Exception;
2023-08-07 18:46:40 +02:00
use Livewire\Component;
use function Aws\filter;
2023-08-07 18:46:40 +02:00
class General extends Component
{
public StandalonePostgresql $database;
public string $new_filename;
public string $new_content;
public ?string $db_url = null;
public ?string $db_url_public = null;
protected $listeners = ['refresh', 'save_init_script', 'delete_init_script'];
2023-08-07 22:14:21 +02:00
2023-08-07 18:46:40 +02:00
protected $rules = [
'database.name' => 'required',
'database.description' => 'nullable',
'database.postgres_user' => 'required',
'database.postgres_password' => 'required',
'database.postgres_db' => 'required',
'database.postgres_initdb_args' => 'nullable',
'database.postgres_host_auth_method' => 'nullable',
'database.postgres_conf' => 'nullable',
2023-08-07 18:46:40 +02:00
'database.init_scripts' => 'nullable',
2023-08-07 22:14:21 +02:00
'database.image' => 'required',
'database.ports_mappings' => 'nullable',
2023-09-07 13:23:34 +02:00
'database.is_public' => 'nullable|boolean',
'database.public_port' => 'nullable|integer',
'database.is_log_drain_enabled' => 'nullable|boolean',
2023-08-07 18:46:40 +02:00
];
protected $validationAttributes = [
'database.name' => 'Name',
'database.description' => 'Description',
'database.postgres_user' => 'Postgres User',
'database.postgres_password' => 'Postgres Password',
'database.postgres_db' => 'Postgres DB',
'database.postgres_initdb_args' => 'Postgres Initdb Args',
'database.postgres_host_auth_method' => 'Postgres Host Auth Method',
'database.postgres_conf' => 'Postgres Configuration',
2023-08-07 18:46:40 +02:00
'database.init_scripts' => 'Init Scripts',
2023-08-07 22:14:21 +02:00
'database.image' => 'Image',
'database.ports_mappings' => 'Port Mapping',
2023-09-07 13:23:34 +02:00
'database.is_public' => 'Is Public',
'database.public_port' => 'Public Port',
2023-08-07 18:46:40 +02:00
];
2023-09-07 13:23:34 +02:00
public function mount()
{
$this->db_url = $this->database->get_db_url(true);
if ($this->database->is_public) {
$this->db_url_public = $this->database->get_db_url();
}
2023-09-07 13:23:34 +02:00
}
public function instantSaveAdvanced() {
try {
if (!$this->database->destination->server->isLogDrainEnabled()) {
$this->database->is_log_drain_enabled = false;
2023-12-07 19:06:32 +01:00
$this->dispatch('error', 'Log drain is not enabled on the server. Please enable it first.');
return;
}
$this->database->save();
2024-02-22 14:53:42 +01:00
$this->dispatch('success', 'Database updated.');
2023-12-07 19:06:32 +01:00
$this->dispatch('success', 'You need to restart the service for the changes to take effect.');
} catch (Exception $e) {
return handleError($e, $this);
}
}
2023-09-07 13:23:34 +02:00
public function instantSave()
{
try {
if ($this->database->is_public && !$this->database->public_port) {
2023-12-07 19:06:32 +01:00
$this->dispatch('error', 'Public port is required.');
2023-09-07 13:23:34 +02:00
$this->database->is_public = false;
return;
}
if ($this->database->is_public) {
2023-10-24 14:31:28 +02:00
if (!str($this->database->status)->startsWith('running')) {
2023-12-07 19:06:32 +01:00
$this->dispatch('error', 'Database must be started to be publicly accessible.');
2023-10-24 14:31:28 +02:00
$this->database->is_public = false;
return;
}
StartDatabaseProxy::run($this->database);
$this->db_url_public = $this->database->get_db_url();
2023-12-07 19:06:32 +01:00
$this->dispatch('success', 'Database is now publicly accessible.');
2023-09-07 13:23:34 +02:00
} else {
StopDatabaseProxy::run($this->database);
$this->db_url_public = null;
2023-12-07 19:06:32 +01:00
$this->dispatch('success', 'Database is no longer publicly accessible.');
2023-09-07 13:23:34 +02:00
}
$this->database->save();
2023-10-24 14:31:28 +02:00
} catch (\Throwable $e) {
2023-09-07 13:23:34 +02:00
$this->database->is_public = !$this->database->is_public;
return handleError($e, $this);
2023-09-07 13:23:34 +02:00
}
}
public function save_init_script($script)
{
2023-08-11 20:48:52 +02:00
$this->database->init_scripts = filter($this->database->init_scripts, fn ($s) => $s['filename'] !== $script['filename']);
$this->database->init_scripts = array_merge($this->database->init_scripts, [$script]);
$this->database->save();
2024-02-22 14:53:42 +01:00
$this->dispatch('success', 'Init script saved.');
}
public function delete_init_script($script)
{
$collection = collect($this->database->init_scripts);
$found = $collection->firstWhere('filename', $script['filename']);
if ($found) {
2023-08-11 20:48:52 +02:00
$this->database->init_scripts = $collection->filter(fn ($s) => $s['filename'] !== $script['filename'])->toArray();
$this->database->save();
$this->refresh();
2024-02-22 14:53:42 +01:00
$this->dispatch('success', 'Init script deleted.');
return;
}
}
public function refresh(): void
{
2023-08-07 22:14:21 +02:00
$this->database->refresh();
}
public function save_new_init_script()
{
$this->validate([
'new_filename' => 'required|string',
'new_content' => 'required|string',
]);
$found = collect($this->database->init_scripts)->firstWhere('filename', $this->new_filename);
if ($found) {
2023-12-07 19:06:32 +01:00
$this->dispatch('error', 'Filename already exists.');
return;
}
if (!isset($this->database->init_scripts)) {
$this->database->init_scripts = [];
}
$this->database->init_scripts = array_merge($this->database->init_scripts, [
[
'index' => count($this->database->init_scripts),
'filename' => $this->new_filename,
'content' => $this->new_content,
]
]);
$this->database->save();
2024-02-22 14:53:42 +01:00
$this->dispatch('success', 'Init script added.');
$this->new_content = '';
$this->new_filename = '';
}
public function submit()
{
2023-08-07 18:46:40 +02:00
try {
if (str($this->database->public_port)->isEmpty()) {
$this->database->public_port = null;
}
2023-08-07 18:46:40 +02:00
$this->validate();
$this->database->save();
2024-02-22 14:53:42 +01:00
$this->dispatch('success', 'Database updated.');
} catch (Exception $e) {
return handleError($e, $this);
2023-08-07 18:46:40 +02:00
}
}
2023-08-07 22:14:21 +02:00
}