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

213 lines
7 KiB
PHP
Raw Normal View History

2023-10-24 12:31:28 +00:00
<?php
2023-12-07 18:06:32 +00:00
namespace App\Livewire\Project\Database\Mysql;
2023-10-24 12:31:28 +00:00
use App\Actions\Database\StartDatabaseProxy;
use App\Actions\Database\StopDatabaseProxy;
2025-02-04 17:29:35 +00:00
use App\Helpers\SslHelper;
2024-06-09 19:33:17 +00:00
use App\Models\Server;
2025-02-04 17:29:35 +00:00
use App\Models\SslCertificate;
2023-10-24 12:31:28 +00:00
use App\Models\StandaloneMysql;
use Carbon\Carbon;
2023-10-24 12:31:28 +00:00
use Exception;
use Illuminate\Support\Facades\Auth;
2023-10-24 12:31:28 +00:00
use Livewire\Component;
class General extends Component
{
protected $listeners = ['refresh'];
public StandaloneMysql $database;
2024-06-10 20:43:34 +00:00
2024-06-09 19:33:17 +00:00
public Server $server;
2024-06-10 20:43:34 +00:00
public ?string $db_url = null;
2024-06-10 20:43:34 +00:00
public ?string $db_url_public = null;
2023-10-24 12:31:28 +00:00
public ?Carbon $certificateValidUntil = null;
2025-02-04 17:29:35 +00:00
public function getListeners()
{
$userId = Auth::id();
return [
"echo-private:user.{$userId},DatabaseStatusChanged" => '$refresh',
'refresh' => '$refresh',
];
}
2023-10-24 12:31:28 +00:00
protected $rules = [
'database.name' => 'required',
'database.description' => 'nullable',
'database.mysql_root_password' => 'required',
'database.mysql_user' => 'required',
'database.mysql_password' => 'required',
'database.mysql_database' => 'required',
'database.mysql_conf' => 'nullable',
'database.image' => 'required',
'database.ports_mappings' => 'nullable',
'database.is_public' => 'nullable|boolean',
'database.public_port' => 'nullable|integer',
'database.is_log_drain_enabled' => 'nullable|boolean',
'database.custom_docker_run_options' => 'nullable',
2025-02-04 17:29:35 +00:00
'database.enable_ssl' => 'boolean',
'database.ssl_mode' => 'nullable|string|in:PREFERRED,REQUIRED,VERIFY_CA,VERIFY_IDENTITY',
2023-10-24 12:31:28 +00:00
];
2024-06-10 20:43:34 +00:00
2023-10-24 12:31:28 +00:00
protected $validationAttributes = [
'database.name' => 'Name',
'database.description' => 'Description',
'database.mysql_root_password' => 'Root Password',
'database.mysql_user' => 'User',
'database.mysql_password' => 'Password',
'database.mysql_database' => 'Database',
'database.mysql_conf' => 'MySQL Configuration',
'database.image' => 'Image',
'database.ports_mappings' => 'Port Mapping',
'database.is_public' => 'Is Public',
'database.public_port' => 'Public Port',
'database.custom_docker_run_options' => 'Custom Docker Run Options',
2025-02-04 17:29:35 +00:00
'database.enable_ssl' => 'Enable SSL',
'database.ssl_mode' => 'SSL Mode',
2023-10-24 12:31:28 +00:00
];
public function mount()
{
$this->db_url = $this->database->internal_db_url;
$this->db_url_public = $this->database->external_db_url;
2024-06-10 20:43:34 +00:00
$this->server = data_get($this->database, 'destination.server');
2025-02-04 17:29:35 +00:00
$existingCert = $this->database->sslCertificates()->first();
2025-02-04 17:29:35 +00:00
if ($existingCert) {
$this->certificateValidUntil = $existingCert->valid_until;
}
}
2024-06-10 20:43:34 +00:00
public function instantSaveAdvanced()
{
try {
2024-09-23 17:51:31 +00:00
if (! $this->server->isLogDrainEnabled()) {
$this->database->is_log_drain_enabled = false;
2023-12-07 18:06:32 +00:00
$this->dispatch('error', 'Log drain is not enabled on the server. Please enable it first.');
2024-06-10 20:43:34 +00:00
return;
}
$this->database->save();
2024-02-22 13:53:42 +00:00
$this->dispatch('success', 'Database updated.');
2023-12-07 18:06:32 +00:00
$this->dispatch('success', 'You need to restart the service for the changes to take effect.');
} catch (Exception $e) {
return handleError($e, $this);
}
}
2024-06-10 20:43:34 +00:00
2023-10-24 12:31:28 +00:00
public function submit()
{
try {
if (str($this->database->public_port)->isEmpty()) {
$this->database->public_port = null;
}
2023-10-24 12:31:28 +00:00
$this->validate();
$this->database->save();
2024-02-22 13:53:42 +00:00
$this->dispatch('success', 'Database updated.');
2023-10-24 12:31:28 +00:00
} catch (Exception $e) {
return handleError($e, $this);
} finally {
if (is_null($this->database->config_hash)) {
$this->database->isConfigurationChanged(true);
} else {
$this->dispatch('configurationChanged');
}
2023-10-24 12:31:28 +00:00
}
}
2024-06-10 20:43:34 +00:00
2023-10-24 12:31:28 +00:00
public function instantSave()
{
try {
2024-09-23 17:51:31 +00:00
if ($this->database->is_public && ! $this->database->public_port) {
2023-12-07 18:06:32 +00:00
$this->dispatch('error', 'Public port is required.');
2023-10-24 12:31:28 +00:00
$this->database->is_public = false;
2024-06-10 20:43:34 +00:00
return;
2023-10-24 12:31:28 +00:00
}
if ($this->database->is_public) {
2024-09-23 17:51:31 +00:00
if (! str($this->database->status)->startsWith('running')) {
2023-12-07 18:06:32 +00:00
$this->dispatch('error', 'Database must be started to be publicly accessible.');
2023-10-24 12:31:28 +00:00
$this->database->is_public = false;
2024-06-10 20:43:34 +00:00
return;
2023-10-24 12:31:28 +00:00
}
StartDatabaseProxy::run($this->database);
2023-12-07 18:06:32 +00:00
$this->dispatch('success', 'Database is now publicly accessible.');
2023-10-24 12:31:28 +00:00
} else {
StopDatabaseProxy::run($this->database);
2023-12-07 18:06:32 +00:00
$this->dispatch('success', 'Database is no longer publicly accessible.');
2023-10-24 12:31:28 +00:00
}
$this->db_url_public = $this->database->external_db_url;
2023-10-24 12:31:28 +00:00
$this->database->save();
} catch (\Throwable $e) {
2024-09-23 17:51:31 +00:00
$this->database->is_public = ! $this->database->is_public;
2024-06-10 20:43:34 +00:00
2023-10-24 12:31:28 +00:00
return handleError($e, $this);
}
}
2024-06-10 20:43:34 +00:00
public function updatedDatabaseSslMode()
{
$this->instantSaveSSL();
}
2025-02-04 17:29:35 +00:00
public function instantSaveSSL()
{
try {
$this->database->save();
$this->dispatch('success', 'SSL configuration updated.');
} catch (Exception $e) {
return handleError($e, $this);
}
}
public function regenerateSslCertificate()
{
try {
$existingCert = $this->database->sslCertificates()->first();
2025-02-04 17:29:35 +00:00
if (! $existingCert) {
$this->dispatch('error', 'No existing SSL certificate found for this database.');
return;
}
$caCert = SslCertificate::where('server_id', $existingCert->server_id)->where('is_ca_certificate', true)->first();
2025-02-04 17:29:35 +00:00
SslHelper::generateSslCertificate(
commonName: $existingCert->common_name,
subjectAlternativeNames: $existingCert->subject_alternative_names ?? [],
resourceType: $existingCert->resource_type,
resourceId: $existingCert->resource_id,
serverId: $existingCert->server_id,
caCert: $caCert->ssl_certificate,
caKey: $caCert->ssl_private_key,
2025-02-04 17:29:35 +00:00
configurationDir: $existingCert->configuration_dir,
mountPath: $existingCert->mount_path,
isPemKeyFileRequired: true,
2025-02-04 17:29:35 +00:00
);
$this->dispatch('success', 'SSL certificates have been regenerated. Please restart the database for changes to take effect.');
} catch (Exception $e) {
return handleError($e, $this);
}
}
2023-10-24 12:31:28 +00:00
public function refresh(): void
{
$this->database->refresh();
}
public function render()
{
return view('livewire.project.database.mysql.general');
}
}