coolify/app/Actions/Database/StartMysql.php

189 lines
8.0 KiB
PHP
Raw Normal View History

2023-10-24 14:31:28 +02:00
<?php
namespace App\Actions\Database;
use App\Models\StandaloneMysql;
use Illuminate\Support\Str;
use Lorisleiva\Actions\Concerns\AsAction;
2024-06-10 22:43:34 +02:00
use Symfony\Component\Yaml\Yaml;
2023-10-24 14:31:28 +02:00
class StartMysql
{
use AsAction;
public StandaloneMysql $database;
2024-06-10 22:43:34 +02:00
2023-10-24 14:31:28 +02:00
public array $commands = [];
2024-06-10 22:43:34 +02:00
2023-10-24 14:31:28 +02:00
public string $configuration_dir;
public function handle(StandaloneMysql $database)
{
$this->database = $database;
$container_name = $this->database->uuid;
2024-06-10 22:43:34 +02:00
$this->configuration_dir = database_configuration_dir().'/'.$container_name;
2023-10-24 14:31:28 +02:00
$this->commands = [
2023-11-21 12:07:06 +01:00
"echo 'Starting {$database->name}.'",
2023-10-24 14:31:28 +02:00
"mkdir -p $this->configuration_dir",
];
$persistent_storages = $this->generate_local_persistent_volumes();
$persistent_file_volumes = $this->database->fileStorages()->get();
2023-10-24 14:31:28 +02:00
$volume_names = $this->generate_local_persistent_volumes_only_volume_names();
$environment_variables = $this->generate_environment_variables();
$this->add_custom_mysql();
$docker_compose = [
'services' => [
$container_name => [
'image' => $this->database->image,
'container_name' => $container_name,
'environment' => $environment_variables,
'restart' => RESTART_MODE,
'networks' => [
$this->database->destination->network,
],
'labels' => [
'coolify.managed' => 'true',
],
'healthcheck' => [
2024-06-10 22:43:34 +02:00
'test' => ['CMD', 'mysqladmin', 'ping', '-h', 'localhost', '-u', 'root', "-p{$this->database->mysql_root_password}"],
2023-10-24 14:31:28 +02:00
'interval' => '5s',
'timeout' => '5s',
'retries' => 10,
2024-06-10 22:43:34 +02:00
'start_period' => '5s',
2023-10-24 14:31:28 +02: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-12-27 13:01:57 +01:00
'cpus' => (float) $this->database->limits_cpus,
2023-10-24 14:31:28 +02:00
'cpu_shares' => $this->database->limits_cpu_shares,
2024-06-10 22:43:34 +02:00
],
2023-10-24 14:31:28 +02:00
],
'networks' => [
$this->database->destination->network => [
'external' => true,
'name' => $this->database->destination->network,
'attachable' => true,
2024-06-10 22:43:34 +02:00
],
],
2023-10-24 14:31:28 +02:00
];
2024-06-10 22:43:34 +02:00
if (! is_null($this->database->limits_cpuset)) {
data_set($docker_compose, "services.{$container_name}.cpuset", $this->database->limits_cpuset);
}
if ($this->database->destination->server->isLogDrainEnabled() && $this->database->isLogDrainEnabled()) {
$docker_compose['services'][$container_name]['logging'] = [
'driver' => 'fluentd',
'options' => [
2024-06-10 22:43:34 +02:00
'fluentd-address' => 'tcp://127.0.0.1:24224',
'fluentd-async' => 'true',
'fluentd-sub-second-precision' => 'true',
],
];
}
2023-10-24 14:31:28 +02:00
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($persistent_file_volumes) > 0) {
$docker_compose['services'][$container_name]['volumes'] = $persistent_file_volumes->map(function ($item) {
return "$item->fs_path:$item->mount_path";
})->toArray();
}
2023-10-24 14:31:28 +02:00
if (count($volume_names) > 0) {
$docker_compose['volumes'] = $volume_names;
}
2024-06-10 22:43:34 +02:00
if (! is_null($this->database->mysql_conf) || ! empty($this->database->mysql_conf)) {
2023-10-24 14:31:28 +02:00
$docker_compose['services'][$container_name]['volumes'][] = [
'type' => 'bind',
2024-06-10 22:43:34 +02:00
'source' => $this->configuration_dir.'/custom-config.cnf',
2023-10-24 14:31:28 +02:00
'target' => '/etc/mysql/conf.d/custom-config.cnf',
'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 | tee $this->configuration_dir/docker-compose.yml > /dev/null";
2023-10-24 14:31:28 +02:00
$readme = generate_readme_file($this->database->name, now());
$this->commands[] = "echo '{$readme}' > $this->configuration_dir/README.md";
2023-11-13 15:27:33 +01:00
$this->commands[] = "echo 'Pulling {$database->image} image.'";
$this->commands[] = "docker compose -f $this->configuration_dir/docker-compose.yml pull";
2023-10-24 14:31:28 +02:00
$this->commands[] = "docker compose -f $this->configuration_dir/docker-compose.yml up -d";
2024-02-07 20:34:13 +01:00
$this->commands[] = "echo 'Database started.'";
2024-06-10 22:43:34 +02:00
return remote_process($this->commands, $database->destination->server, callEventOnFinish: 'DatabaseStatusChanged');
2023-10-24 14:31:28 +02:00
}
private function generate_local_persistent_volumes()
{
$local_persistent_volumes = [];
foreach ($this->database->persistentStorages as $persistentStorage) {
if ($persistentStorage->host_path !== '' && $persistentStorage->host_path !== null) {
2024-06-10 22:43:34 +02:00
$local_persistent_volumes[] = $persistentStorage->host_path.':'.$persistentStorage->mount_path;
} else {
$volume_name = $persistentStorage->name;
2024-06-10 22:43:34 +02:00
$local_persistent_volumes[] = $volume_name.':'.$persistentStorage->mount_path;
}
2023-10-24 14:31:28 +02:00
}
2024-06-10 22:43:34 +02:00
2023-10-24 14:31:28 +02:00
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,
];
}
2024-06-10 22:43:34 +02:00
2023-10-24 14:31:28 +02:00
return $local_persistent_volumes_names;
}
private function generate_environment_variables()
{
$environment_variables = collect();
foreach ($this->database->runtime_environment_variables as $env) {
2024-01-23 17:13:23 +01:00
$environment_variables->push("$env->key=$env->real_value");
2023-10-24 14:31:28 +02:00
}
if ($environment_variables->filter(fn ($env) => Str::of($env)->contains('MYSQL_ROOT_PASSWORD'))->isEmpty()) {
$environment_variables->push("MYSQL_ROOT_PASSWORD={$this->database->mysql_root_password}");
}
if ($environment_variables->filter(fn ($env) => Str::of($env)->contains('MYSQL_DATABASE'))->isEmpty()) {
$environment_variables->push("MYSQL_DATABASE={$this->database->mysql_database}");
}
if ($environment_variables->filter(fn ($env) => Str::of($env)->contains('MYSQL_USER'))->isEmpty()) {
$environment_variables->push("MYSQL_USER={$this->database->mysql_user}");
}
if ($environment_variables->filter(fn ($env) => Str::of($env)->contains('MYSQL_PASSWORD'))->isEmpty()) {
$environment_variables->push("MYSQL_PASSWORD={$this->database->mysql_password}");
}
2024-06-10 22:43:34 +02:00
2023-10-24 14:31:28 +02:00
return $environment_variables->all();
}
2024-06-10 22:43:34 +02:00
2023-10-24 14:31:28 +02:00
private function add_custom_mysql()
{
if (is_null($this->database->mysql_conf) || empty($this->database->mysql_conf)) {
2023-10-24 14:31:28 +02:00
return;
}
$filename = 'custom-config.cnf';
$content = $this->database->mysql_conf;
$content_base64 = base64_encode($content);
$this->commands[] = "echo '{$content_base64}' | base64 -d | tee $this->configuration_dir/{$filename} > /dev/null";
2023-10-24 14:31:28 +02:00
}
}