-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1179 from coollabsio/next
v4.0.0-beta.19
- Loading branch information
Showing
421 changed files
with
9,360 additions
and
3,345 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,164 @@ | ||
<?php | ||
|
||
namespace App\Actions\Database; | ||
|
||
use App\Models\Server; | ||
use App\Models\StandalonePostgresql; | ||
use Illuminate\Support\Str; | ||
use Symfony\Component\Yaml\Yaml; | ||
|
||
class StartPostgresql | ||
{ | ||
public StandalonePostgresql $database; | ||
public array $commands = []; | ||
public array $init_scripts = []; | ||
public string $configuration_dir; | ||
|
||
public function __invoke(Server $server, StandalonePostgresql $database) | ||
{ | ||
$this->database = $database; | ||
$container_name = generate_container_name($this->database->uuid); | ||
$this->configuration_dir = database_configuration_dir() . '/' . $container_name; | ||
|
||
$this->commands = [ | ||
"mkdir -p $this->configuration_dir", | ||
"mkdir -p $this->configuration_dir/docker-entrypoint-initdb.d/" | ||
]; | ||
|
||
$persistent_storages = $this->generate_local_persistent_volumes(); | ||
$volume_names = $this->generate_local_persistent_volumes_only_volume_names(); | ||
$environment_variables = $this->generate_environment_variables(); | ||
$this->generate_init_scripts(); | ||
$docker_compose = [ | ||
'version' => '3.8', | ||
'services' => [ | ||
$container_name => [ | ||
'image' => $this->database->image, | ||
'container_name' => $container_name, | ||
'environment' => $environment_variables, | ||
'restart' => 'always', | ||
'networks' => [ | ||
$this->database->destination->network, | ||
], | ||
'healthcheck' => [ | ||
'test' => [ | ||
'CMD-SHELL', | ||
'pg_isready', | ||
'-d', | ||
$this->database->postgres_db, | ||
'-U', | ||
$this->database->postgres_user, | ||
], | ||
'interval' => '5s', | ||
'timeout' => '5s', | ||
'retries' => 10, | ||
'start_period' => '5s' | ||
], | ||
'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, | ||
'cpus' => $this->database->limits_cpus, | ||
'cpuset' => $this->database->limits_cpuset, | ||
'cpu_shares' => $this->database->limits_cpu_shares, | ||
] | ||
], | ||
'networks' => [ | ||
$this->database->destination->network => [ | ||
'external' => false, | ||
'name' => $this->database->destination->network, | ||
'attachable' => true, | ||
] | ||
] | ||
]; | ||
if (count($this->database->ports_mappings_array) > 0) { | ||
$docker_compose['services'][$container_name]['ports'] = $this->database->ports_mappings_array; | ||
} | ||
if (count($persistent_storages) > 0) { | ||
$docker_compose['services'][$container_name]['volumes'] = $persistent_storages; | ||
} | ||
if (count($volume_names) > 0) { | ||
$docker_compose['volumes'] = $volume_names; | ||
} | ||
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, | ||
]; | ||
} | ||
} | ||
$docker_compose = Yaml::dump($docker_compose, 10); | ||
$docker_compose_base64 = base64_encode($docker_compose); | ||
$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"; | ||
$this->commands[] = "docker compose -f $this->configuration_dir/docker-compose.yml up -d"; | ||
return remote_process($this->commands, $server); | ||
} | ||
|
||
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; | ||
} | ||
|
||
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; | ||
} | ||
|
||
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"); | ||
} | ||
|
||
if ($environment_variables->filter(fn ($env) => Str::of($env)->contains('POSTGRES_USER'))->isEmpty()) { | ||
$environment_variables->push("POSTGRES_USER={$this->database->postgres_user}"); | ||
} | ||
|
||
if ($environment_variables->filter(fn ($env) => Str::of($env)->contains('POSTGRES_PASSWORD'))->isEmpty()) { | ||
$environment_variables->push("POSTGRES_PASSWORD={$this->database->postgres_password}"); | ||
} | ||
|
||
if ($environment_variables->filter(fn ($env) => Str::of($env)->contains('POSTGRES_DB'))->isEmpty()) { | ||
$environment_variables->push("POSTGRES_DB={$this->database->postgres_db}"); | ||
} | ||
return $environment_variables->all(); | ||
} | ||
|
||
private function generate_init_scripts() | ||
{ | ||
if (is_null($this->database->init_scripts) || count($this->database->init_scripts) === 0) { | ||
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); | ||
$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}"; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.