2023-08-07 16:46:40 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Actions\Database;
|
|
|
|
|
2023-08-07 20:14:21 +00:00
|
|
|
use App\Models\StandalonePostgresql;
|
2023-08-07 20:27:20 +00:00
|
|
|
use Illuminate\Support\Str;
|
2023-08-08 09:51:36 +00:00
|
|
|
use Symfony\Component\Yaml\Yaml;
|
2023-10-14 12:22:07 +00:00
|
|
|
use Lorisleiva\Actions\Concerns\AsAction;
|
2023-08-07 16:46:40 +00:00
|
|
|
|
|
|
|
class StartPostgresql
|
|
|
|
{
|
2023-10-14 12:22:07 +00:00
|
|
|
use AsAction;
|
|
|
|
|
2023-08-08 12:35:01 +00:00
|
|
|
public StandalonePostgresql $database;
|
|
|
|
public array $commands = [];
|
|
|
|
public array $init_scripts = [];
|
2023-08-09 12:44:36 +00:00
|
|
|
public string $configuration_dir;
|
2023-08-08 09:51:36 +00:00
|
|
|
|
2023-10-20 12:51:01 +00:00
|
|
|
public function handle(StandalonePostgresql $database)
|
2023-08-07 16:46:40 +00:00
|
|
|
{
|
2023-08-07 20:27:20 +00:00
|
|
|
$this->database = $database;
|
2023-08-21 16:00:12 +00:00
|
|
|
$container_name = $this->database->uuid;
|
2023-08-09 12:44:36 +00:00
|
|
|
$this->configuration_dir = database_configuration_dir() . '/' . $container_name;
|
2023-08-08 12:35:01 +00:00
|
|
|
|
|
|
|
$this->commands = [
|
2023-09-22 12:47:25 +00:00
|
|
|
"echo '####### Starting {$database->name}.'",
|
2023-08-09 12:44:36 +00:00
|
|
|
"mkdir -p $this->configuration_dir",
|
|
|
|
"mkdir -p $this->configuration_dir/docker-entrypoint-initdb.d/"
|
2023-08-08 12:35:01 +00:00
|
|
|
];
|
2023-08-07 20:27:20 +00:00
|
|
|
|
|
|
|
$persistent_storages = $this->generate_local_persistent_volumes();
|
|
|
|
$volume_names = $this->generate_local_persistent_volumes_only_volume_names();
|
|
|
|
$environment_variables = $this->generate_environment_variables();
|
2023-08-08 12:35:01 +00:00
|
|
|
$this->generate_init_scripts();
|
2023-11-08 11:40:05 +00:00
|
|
|
$this->add_custom_conf();
|
|
|
|
|
2023-08-07 20:14:21 +00:00
|
|
|
$docker_compose = [
|
|
|
|
'version' => '3.8',
|
|
|
|
'services' => [
|
|
|
|
$container_name => [
|
2023-08-08 12:35:01 +00:00
|
|
|
'image' => $this->database->image,
|
2023-08-07 20:14:21 +00:00
|
|
|
'container_name' => $container_name,
|
2023-08-07 20:27:20 +00:00
|
|
|
'environment' => $environment_variables,
|
2023-08-21 16:00:12 +00:00
|
|
|
'restart' => RESTART_MODE,
|
2023-08-07 20:14:21 +00:00
|
|
|
'networks' => [
|
2023-08-08 12:35:01 +00:00
|
|
|
$this->database->destination->network,
|
2023-08-07 20:14:21 +00:00
|
|
|
],
|
2023-10-13 13:16:22 +00:00
|
|
|
'labels' => [
|
|
|
|
'coolify.managed' => 'true',
|
|
|
|
],
|
2023-08-07 20:14:21 +00:00
|
|
|
'healthcheck' => [
|
|
|
|
'test' => [
|
|
|
|
'CMD-SHELL',
|
|
|
|
'pg_isready',
|
|
|
|
'-d',
|
2023-08-07 20:27:20 +00:00
|
|
|
$this->database->postgres_db,
|
|
|
|
'-U',
|
|
|
|
$this->database->postgres_user,
|
2023-08-07 20:14:21 +00:00
|
|
|
],
|
|
|
|
'interval' => '5s',
|
|
|
|
'timeout' => '5s',
|
|
|
|
'retries' => 10,
|
|
|
|
'start_period' => '5s'
|
|
|
|
],
|
2023-08-07 20:27:20 +00:00
|
|
|
'mem_limit' => $this->database->limits_memory,
|
|
|
|
'memswap_limit' => $this->database->limits_memory_swap,
|
|
|
|
'mem_swappiness' => $this->database->limits_memory_swappiness,
|
|
|
|
'mem_reservation' => $this->database->limits_memory_reservation,
|
2023-11-10 08:54:40 +00:00
|
|
|
'cpus' => (int) $this->database->limits_cpus,
|
2023-08-07 20:27:20 +00:00
|
|
|
'cpuset' => $this->database->limits_cpuset,
|
|
|
|
'cpu_shares' => $this->database->limits_cpu_shares,
|
2023-08-07 20:14:21 +00:00
|
|
|
]
|
|
|
|
],
|
|
|
|
'networks' => [
|
2023-08-08 12:35:01 +00:00
|
|
|
$this->database->destination->network => [
|
2023-09-05 13:43:56 +00:00
|
|
|
'external' => true,
|
2023-08-08 12:35:01 +00:00
|
|
|
'name' => $this->database->destination->network,
|
2023-08-07 20:14:21 +00:00
|
|
|
'attachable' => true,
|
|
|
|
]
|
|
|
|
]
|
|
|
|
];
|
2023-11-17 19:08:21 +00:00
|
|
|
if ($this->database->destination->server->isLogDrainEnabled() && $this->database->isLogDrainEnabled()) {
|
|
|
|
ray('Log Drain Enabled');
|
2023-11-17 10:32:52 +00:00
|
|
|
$docker_compose['services'][$container_name]['logging'] = [
|
|
|
|
'driver' => 'fluentd',
|
|
|
|
'options' => [
|
|
|
|
'fluentd-address' => "tcp://127.0.0.1:24224",
|
|
|
|
'fluentd-async' => "true",
|
|
|
|
'fluentd-sub-second-precision' => "true",
|
|
|
|
]
|
|
|
|
];
|
|
|
|
}
|
2023-08-08 12:35:01 +00:00
|
|
|
if (count($this->database->ports_mappings_array) > 0) {
|
|
|
|
$docker_compose['services'][$container_name]['ports'] = $this->database->ports_mappings_array;
|
|
|
|
}
|
2023-08-07 20:27:20 +00:00
|
|
|
if (count($persistent_storages) > 0) {
|
|
|
|
$docker_compose['services'][$container_name]['volumes'] = $persistent_storages;
|
|
|
|
}
|
|
|
|
if (count($volume_names) > 0) {
|
|
|
|
$docker_compose['volumes'] = $volume_names;
|
|
|
|
}
|
2023-08-08 12:35:01 +00:00
|
|
|
if (count($this->init_scripts) > 0) {
|
|
|
|
foreach ($this->init_scripts as $init_script) {
|
|
|
|
$docker_compose['services'][$container_name]['volumes'][] = [
|
|
|
|
'type' => 'bind',
|
|
|
|
'source' => $init_script,
|
|
|
|
'target' => '/docker-entrypoint-initdb.d/' . basename($init_script),
|
|
|
|
'read_only' => true,
|
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|
2023-11-08 11:40:05 +00:00
|
|
|
if (!is_null($this->database->postgres_conf)) {
|
|
|
|
$docker_compose['services'][$container_name]['volumes'][] = [
|
|
|
|
'type' => 'bind',
|
|
|
|
'source' => $this->configuration_dir . '/custom-postgres.conf',
|
|
|
|
'target' => '/etc/postgresql/postgresql.conf',
|
|
|
|
'read_only' => true,
|
|
|
|
];
|
|
|
|
$docker_compose['services'][$container_name]['command'] = [
|
|
|
|
'postgres',
|
|
|
|
'-c',
|
|
|
|
'config_file=/etc/postgresql/postgresql.conf',
|
|
|
|
];
|
|
|
|
}
|
2023-08-07 20:14:21 +00:00
|
|
|
$docker_compose = Yaml::dump($docker_compose, 10);
|
|
|
|
$docker_compose_base64 = base64_encode($docker_compose);
|
2023-08-09 12:44:36 +00:00
|
|
|
$this->commands[] = "echo '{$docker_compose_base64}' | base64 -d > $this->configuration_dir/docker-compose.yml";
|
|
|
|
$readme = generate_readme_file($this->database->name, now());
|
|
|
|
$this->commands[] = "echo '{$readme}' > $this->configuration_dir/README.md";
|
2023-11-13 14:27:33 +00:00
|
|
|
$this->commands[] = "echo 'Pulling {$database->image} image.'";
|
|
|
|
$this->commands[] = "docker compose -f $this->configuration_dir/docker-compose.yml pull";
|
2023-08-09 12:44:36 +00:00
|
|
|
$this->commands[] = "docker compose -f $this->configuration_dir/docker-compose.yml up -d";
|
2023-09-22 12:47:25 +00:00
|
|
|
$this->commands[] = "echo '####### {$database->name} started.'";
|
2023-10-20 12:51:01 +00:00
|
|
|
return remote_process($this->commands, $database->destination->server);
|
2023-08-07 16:46:40 +00:00
|
|
|
}
|
2023-08-07 20:27:20 +00:00
|
|
|
|
|
|
|
private function generate_local_persistent_volumes()
|
|
|
|
{
|
|
|
|
$local_persistent_volumes = [];
|
|
|
|
foreach ($this->database->persistentStorages as $persistentStorage) {
|
|
|
|
$volume_name = $persistentStorage->host_path ?? $persistentStorage->name;
|
|
|
|
$local_persistent_volumes[] = $volume_name . ':' . $persistentStorage->mount_path;
|
|
|
|
}
|
|
|
|
return $local_persistent_volumes;
|
|
|
|
}
|
2023-08-08 09:51:36 +00:00
|
|
|
|
2023-08-07 20:27:20 +00:00
|
|
|
private function generate_local_persistent_volumes_only_volume_names()
|
|
|
|
{
|
|
|
|
$local_persistent_volumes_names = [];
|
|
|
|
foreach ($this->database->persistentStorages as $persistentStorage) {
|
|
|
|
if ($persistentStorage->host_path) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
$name = $persistentStorage->name;
|
|
|
|
$local_persistent_volumes_names[$name] = [
|
|
|
|
'name' => $name,
|
|
|
|
'external' => false,
|
|
|
|
];
|
|
|
|
}
|
|
|
|
return $local_persistent_volumes_names;
|
|
|
|
}
|
2023-08-08 09:51:36 +00:00
|
|
|
|
|
|
|
private function generate_environment_variables()
|
|
|
|
{
|
|
|
|
$environment_variables = collect();
|
|
|
|
ray('Generate Environment Variables')->green();
|
|
|
|
ray($this->database->runtime_environment_variables)->green();
|
|
|
|
foreach ($this->database->runtime_environment_variables as $env) {
|
|
|
|
$environment_variables->push("$env->key=$env->value");
|
|
|
|
}
|
|
|
|
|
2023-08-11 18:48:52 +00:00
|
|
|
if ($environment_variables->filter(fn ($env) => Str::of($env)->contains('POSTGRES_USER'))->isEmpty()) {
|
2023-08-08 09:51:36 +00:00
|
|
|
$environment_variables->push("POSTGRES_USER={$this->database->postgres_user}");
|
|
|
|
}
|
2023-10-19 09:58:12 +00:00
|
|
|
if ($environment_variables->filter(fn ($env) => Str::of($env)->contains('PGUSER'))->isEmpty()) {
|
|
|
|
$environment_variables->push("PGUSER={$this->database->postgres_user}");
|
|
|
|
}
|
2023-08-08 09:51:36 +00:00
|
|
|
|
2023-08-11 18:48:52 +00:00
|
|
|
if ($environment_variables->filter(fn ($env) => Str::of($env)->contains('POSTGRES_PASSWORD'))->isEmpty()) {
|
2023-08-08 09:51:36 +00:00
|
|
|
$environment_variables->push("POSTGRES_PASSWORD={$this->database->postgres_password}");
|
|
|
|
}
|
|
|
|
|
2023-08-11 18:48:52 +00:00
|
|
|
if ($environment_variables->filter(fn ($env) => Str::of($env)->contains('POSTGRES_DB'))->isEmpty()) {
|
2023-08-08 09:51:36 +00:00
|
|
|
$environment_variables->push("POSTGRES_DB={$this->database->postgres_db}");
|
|
|
|
}
|
|
|
|
return $environment_variables->all();
|
|
|
|
}
|
2023-08-08 12:35:01 +00:00
|
|
|
|
|
|
|
private function generate_init_scripts()
|
|
|
|
{
|
2023-08-09 13:57:53 +00:00
|
|
|
if (is_null($this->database->init_scripts) || count($this->database->init_scripts) === 0) {
|
2023-08-08 12:35:01 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
foreach ($this->database->init_scripts as $init_script) {
|
|
|
|
$filename = data_get($init_script, 'filename');
|
|
|
|
$content = data_get($init_script, 'content');
|
|
|
|
$content_base64 = base64_encode($content);
|
2023-08-09 12:44:36 +00:00
|
|
|
$this->commands[] = "echo '{$content_base64}' | base64 -d > $this->configuration_dir/docker-entrypoint-initdb.d/{$filename}";
|
|
|
|
$this->init_scripts[] = "$this->configuration_dir/docker-entrypoint-initdb.d/{$filename}";
|
2023-08-08 12:35:01 +00:00
|
|
|
}
|
|
|
|
}
|
2023-11-08 11:40:05 +00:00
|
|
|
private function add_custom_conf()
|
|
|
|
{
|
|
|
|
if (is_null($this->database->postgres_conf)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
$filename = 'custom-postgres.conf';
|
|
|
|
$content = $this->database->postgres_conf;
|
|
|
|
$content_base64 = base64_encode($content);
|
|
|
|
$this->commands[] = "echo '{$content_base64}' | base64 -d > $this->configuration_dir/{$filename}";
|
|
|
|
}
|
2023-08-07 20:14:21 +00:00
|
|
|
}
|