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

112 lines
3.4 KiB
PHP
Raw Normal View History

2023-05-04 22:29:14 +02:00
<?php
2023-12-07 19:06:32 +01:00
namespace App\Livewire\Project\Shared\EnvironmentVariable;
2023-05-04 22:29:14 +02:00
use App\Models\EnvironmentVariable as ModelsEnvironmentVariable;
2024-01-23 17:13:23 +01:00
use App\Models\SharedEnvironmentVariable;
2023-05-04 22:29:14 +02:00
use Livewire\Component;
2023-07-13 13:16:24 +02:00
use Visus\Cuid2\Cuid2;
2023-05-04 22:29:14 +02:00
class Show extends Component
{
public $parameters;
2024-01-23 17:13:23 +01:00
public ModelsEnvironmentVariable|SharedEnvironmentVariable $env;
2023-09-22 11:23:49 +02:00
public ?string $modalId = null;
2023-09-27 15:48:19 +02:00
public bool $isDisabled = false;
2023-10-24 15:41:21 +02:00
public bool $isLocked = false;
2024-01-23 17:13:23 +01:00
public bool $isSharedVariable = false;
2023-09-22 11:23:49 +02:00
public string $type;
2023-05-04 22:29:14 +02:00
protected $rules = [
'env.key' => 'required|string',
2023-09-26 14:45:52 +02:00
'env.value' => 'nullable',
2023-05-04 22:29:14 +02:00
'env.is_build_time' => 'required|boolean',
'env.is_multiline' => 'required|boolean',
2023-10-24 15:41:21 +02:00
'env.is_shown_once' => 'required|boolean',
2024-01-23 17:13:23 +01:00
'env.real_value' => 'nullable',
2023-05-04 22:29:14 +02:00
];
2023-06-16 12:35:40 +02:00
protected $validationAttributes = [
2024-01-23 17:13:23 +01:00
'env.key' => 'Key',
'env.value' => 'Value',
'env.is_build_time' => 'Build Time',
'env.is_multiline' => 'Multiline',
2024-01-23 17:13:23 +01:00
'env.is_shown_once' => 'Shown Once',
2023-06-16 12:35:40 +02:00
];
2023-05-04 22:29:14 +02:00
public function mount()
2023-10-24 15:41:21 +02:00
{
2024-01-23 17:13:23 +01:00
if ($this->env->getMorphClass() === 'App\Models\SharedEnvironmentVariable') {
$this->isSharedVariable = true;
}
2023-10-24 15:41:21 +02:00
$this->modalId = new Cuid2(7);
$this->parameters = get_route_parameters();
$this->checkEnvs();
}
public function checkEnvs()
2023-05-04 22:29:14 +02:00
{
2023-09-27 15:48:19 +02:00
$this->isDisabled = false;
2023-10-24 15:41:21 +02:00
if (str($this->env->key)->startsWith('SERVICE_FQDN') || str($this->env->key)->startsWith('SERVICE_URL')) {
2023-09-27 15:48:19 +02:00
$this->isDisabled = true;
}
2023-10-24 15:41:21 +02:00
if ($this->env->is_shown_once) {
$this->isLocked = true;
}
}
2024-01-31 13:40:15 +01:00
public function serialize()
{
2024-01-23 17:13:23 +01:00
data_forget($this->env, 'real_value');
if ($this->env->getMorphClass() === 'App\Models\SharedEnvironmentVariable') {
data_forget($this->env, 'is_build_time');
}
}
2023-10-24 15:41:21 +02:00
public function lock()
{
$this->env->is_shown_once = true;
2024-01-23 17:13:23 +01:00
$this->serialize();
2023-10-24 15:41:21 +02:00
$this->env->save();
$this->checkEnvs();
2023-12-07 19:06:32 +01:00
$this->dispatch('refreshEnvs');
2023-05-04 22:29:14 +02:00
}
2023-08-11 22:41:47 +02:00
public function instantSave()
{
$this->submit();
}
2023-05-04 22:29:14 +02:00
public function submit()
{
2024-01-23 17:13:23 +01:00
try {
if ($this->isSharedVariable) {
$this->validate([
'env.key' => 'required|string',
'env.value' => 'nullable',
'env.is_shown_once' => 'required|boolean',
]);
} else {
$this->validate();
}
2024-01-31 13:40:15 +01:00
if (str($this->env->value)->startsWith('{{') && str($this->env->value)->endsWith('}}')) {
$type = str($this->env->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;
}
}
2024-01-23 17:13:23 +01:00
$this->serialize();
$this->env->save();
2024-02-22 14:53:42 +01:00
$this->dispatch('success', 'Environment variable updated.');
2024-01-23 17:13:23 +01:00
$this->dispatch('refreshEnvs');
2024-01-31 13:40:15 +01:00
} catch (\Exception $e) {
2024-01-23 17:13:23 +01:00
return handleError($e);
}
2023-05-04 22:29:14 +02:00
}
2023-05-04 22:29:14 +02:00
public function delete()
{
2023-12-20 16:15:13 +01:00
try {
$this->env->delete();
$this->dispatch('refreshEnvs');
} catch (\Exception $e) {
return handleError($e);
}
2023-05-04 22:29:14 +02:00
}
}