coolify/app/Livewire/Project/Shared/EnvironmentVariable/All.php

209 lines
8.6 KiB
PHP
Raw Normal View History

2023-08-07 22:14:21 +02:00
<?php
2023-12-07 19:06:32 +01:00
namespace App\Livewire\Project\Shared\EnvironmentVariable;
2023-08-07 22:14:21 +02:00
use App\Models\EnvironmentVariable;
use Livewire\Component;
use Visus\Cuid2\Cuid2;
2023-09-15 11:19:36 +02:00
use Illuminate\Support\Str;
2023-08-07 22:14:21 +02:00
class All extends Component
{
public $resource;
2023-09-08 16:16:59 +02:00
public bool $showPreview = false;
2024-03-15 22:02:37 +01:00
public ?string $modalId = null;
2023-09-08 16:16:59 +02:00
public ?string $variables = null;
public ?string $variablesPreview = null;
public string $view = 'normal';
protected $listeners = [
'refreshEnvs',
'saveKey' => 'submit',
];
2023-08-07 22:14:21 +02:00
public function mount()
{
2023-09-08 16:16:59 +02:00
$resourceClass = get_class($this->resource);
$resourceWithPreviews = ['App\Models\Application'];
$simpleDockerfile = !is_null(data_get($this->resource, 'dockerfile'));
if (Str::of($resourceClass)->contains($resourceWithPreviews) && !$simpleDockerfile) {
$this->showPreview = true;
}
2023-08-07 22:14:21 +02:00
$this->modalId = new Cuid2(7);
2023-09-08 16:16:59 +02:00
$this->getDevView();
}
public function getDevView()
{
$this->variables = $this->resource->environment_variables->map(function ($item) {
2023-10-24 15:41:21 +02:00
if ($item->is_shown_once) {
return "$item->key=(locked secret)";
}
2024-03-15 22:02:37 +01:00
if ($item->is_multiline) {
return "$item->key=(multiline, edit in normal view)";
}
2023-09-08 16:16:59 +02:00
return "$item->key=$item->value";
})->sort()->join('
');
if ($this->showPreview) {
$this->variablesPreview = $this->resource->environment_variables_preview->map(function ($item) {
2023-10-24 15:41:21 +02:00
if ($item->is_shown_once) {
return "$item->key=(locked secret)";
}
2024-03-15 22:02:37 +01:00
if ($item->is_multiline) {
return "$item->key=(multiline, edit in normal view)";
}
2023-09-08 16:16:59 +02:00
return "$item->key=$item->value";
})->sort()->join('
');
}
}
public function switch()
{
$this->view = $this->view === 'normal' ? 'dev' : 'normal';
}
public function saveVariables($isPreview)
{
if ($isPreview) {
$variables = parseEnvFormatToArray($this->variablesPreview);
$this->resource->environment_variables_preview()->whereNotIn('key', array_keys($variables))->delete();
2023-09-08 16:16:59 +02:00
} else {
$variables = parseEnvFormatToArray($this->variables);
$this->resource->environment_variables()->whereNotIn('key', array_keys($variables))->delete();
2023-09-08 16:16:59 +02:00
}
foreach ($variables as $key => $variable) {
if ($isPreview) {
$found = $this->resource->environment_variables_preview()->where('key', $key)->first();
} else {
$found = $this->resource->environment_variables()->where('key', $key)->first();
}
2023-09-08 16:16:59 +02:00
if ($found) {
2024-03-15 22:02:37 +01:00
if ($found->is_shown_once || $found->is_multiline) {
2023-10-24 15:41:21 +02:00
continue;
}
2023-09-08 16:16:59 +02:00
$found->value = $variable;
2024-01-31 13:40:15 +01:00
if (str($found->value)->startsWith('{{') && str($found->value)->endsWith('}}')) {
$type = str($found->value)->after("{{")->before(".")->value;
if (!collect(SHARED_VARIABLE_TYPES)->contains($type)) {
2024-01-31 13:40:15 +01:00
$this->dispatch('error', 'Invalid shared variable type.', "Valid types are: team, project, environment.");
return;
}
}
2023-09-08 16:16:59 +02:00
$found->save();
continue;
} else {
$environment = new EnvironmentVariable();
$environment->key = $key;
$environment->value = $variable;
2024-01-31 13:40:15 +01:00
if (str($environment->value)->startsWith('{{') && str($environment->value)->endsWith('}}')) {
$type = str($environment->value)->after("{{")->before(".")->value;
if (!collect(SHARED_VARIABLE_TYPES)->contains($type)) {
2024-01-31 13:40:15 +01:00
$this->dispatch('error', 'Invalid shared variable type.', "Valid types are: team, project, environment.");
return;
}
}
2023-09-08 16:16:59 +02:00
$environment->is_build_time = false;
2024-03-26 13:36:06 +01:00
$environment->is_multiline = false;
2023-09-08 16:16:59 +02:00
$environment->is_preview = $isPreview ? true : false;
2023-09-22 11:23:49 +02:00
switch ($this->resource->type()) {
case 'application':
$environment->application_id = $this->resource->id;
break;
case 'standalone-postgresql':
$environment->standalone_postgresql_id = $this->resource->id;
break;
2023-10-12 17:18:33 +02:00
case 'standalone-redis':
$environment->standalone_redis_id = $this->resource->id;
break;
2023-10-19 13:32:03 +02:00
case 'standalone-mongodb':
$environment->standalone_mongodb_id = $this->resource->id;
break;
2023-10-24 14:31:28 +02:00
case 'standalone-mysql':
$environment->standalone_mysql_id = $this->resource->id;
break;
case 'standalone-mariadb':
$environment->standalone_mariadb_id = $this->resource->id;
break;
2024-04-10 15:00:46 +02:00
case 'standalone-keydb':
$environment->standalone_keydb_id = $this->resource->id;
break;
case 'standalone-dragonfly':
$environment->standalone_dragonfly_id = $this->resource->id;
break;
case 'standalone-clickhouse':
$environment->standalone_clickhouse_id = $this->resource->id;
break;
2023-09-22 11:23:49 +02:00
case 'service':
$environment->service_id = $this->resource->id;
break;
2023-09-08 16:16:59 +02:00
}
$environment->save();
}
}
2023-09-11 22:29:47 +02:00
if ($isPreview) {
2024-02-22 14:53:42 +01:00
$this->dispatch('success', 'Preview environment variables updated.');
2023-09-11 22:29:47 +02:00
} else {
2024-02-22 14:53:42 +01:00
$this->dispatch('success', 'Environment variables updated.');
2023-09-11 22:29:47 +02:00
}
2023-09-08 16:16:59 +02:00
$this->refreshEnvs();
2023-08-07 22:14:21 +02:00
}
public function refreshEnvs()
{
$this->resource->refresh();
2023-09-08 16:16:59 +02:00
$this->getDevView();
2023-08-07 22:14:21 +02:00
}
2023-08-07 22:14:21 +02:00
public function submit($data)
{
try {
$found = $this->resource->environment_variables()->where('key', $data['key'])->first();
if ($found) {
2023-12-07 19:06:32 +01:00
$this->dispatch('error', 'Environment variable already exists.');
2023-08-07 22:14:21 +02:00
return;
}
$environment = new EnvironmentVariable();
2023-08-07 22:14:21 +02:00
$environment->key = $data['key'];
$environment->value = $data['value'];
$environment->is_build_time = $data['is_build_time'];
2024-03-15 22:02:37 +01:00
$environment->is_multiline = $data['is_multiline'];
$environment->is_literal = $data['is_literal'];
2023-08-07 22:14:21 +02:00
$environment->is_preview = $data['is_preview'];
2023-09-26 14:45:52 +02:00
switch ($this->resource->type()) {
case 'application':
$environment->application_id = $this->resource->id;
break;
case 'standalone-postgresql':
$environment->standalone_postgresql_id = $this->resource->id;
break;
2024-01-06 11:38:12 +01:00
case 'standalone-redis':
$environment->standalone_redis_id = $this->resource->id;
break;
case 'standalone-mongodb':
$environment->standalone_mongodb_id = $this->resource->id;
break;
case 'standalone-mysql':
$environment->standalone_mysql_id = $this->resource->id;
break;
case 'standalone-mariadb':
$environment->standalone_mariadb_id = $this->resource->id;
break;
2024-04-10 15:00:46 +02:00
case 'standalone-keydb':
$environment->standalone_keydb_id = $this->resource->id;
break;
case 'standalone-dragonfly':
$environment->standalone_dragonfly_id = $this->resource->id;
break;
case 'standalone-clickhouse':
$environment->standalone_clickhouse_id = $this->resource->id;
break;
2023-09-26 14:45:52 +02:00
case 'service':
$environment->service_id = $this->resource->id;
break;
2023-08-07 22:14:21 +02:00
}
$environment->save();
2023-09-08 16:16:59 +02:00
$this->refreshEnvs();
$this->dispatch('success', 'Environment variable added.');
2023-09-11 17:36:30 +02:00
} catch (\Throwable $e) {
return handleError($e, $this);
2023-08-07 22:14:21 +02:00
}
}
}