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

72 lines
1.8 KiB
PHP
Raw Normal View History

2023-05-04 22:29:14 +02:00
<?php
2023-08-07 22:14:21 +02:00
namespace App\Http\Livewire\Project\Shared\EnvironmentVariable;
2023-05-04 22:29:14 +02:00
use App\Models\EnvironmentVariable as ModelsEnvironmentVariable;
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;
public ModelsEnvironmentVariable $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;
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',
2023-10-24 15:41:21 +02:00
'env.is_shown_once' => 'required|boolean',
2023-05-04 22:29:14 +02:00
];
2023-06-16 12:35:40 +02:00
protected $validationAttributes = [
2023-10-24 15:41:21 +02:00
'key' => 'Key',
'value' => 'Value',
'is_build_time' => 'Build Time',
'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
{
$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;
}
}
public function lock()
{
$this->env->is_shown_once = true;
$this->env->save();
$this->checkEnvs();
$this->emit('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()
{
$this->validate();
$this->env->save();
2023-06-22 10:04:39 +02:00
$this->emit('success', 'Environment variable updated successfully.');
2023-09-22 11:23:49 +02:00
$this->emit('refreshEnvs');
2023-05-04 22:29:14 +02:00
}
2023-05-04 22:29:14 +02:00
public function delete()
{
$this->env->delete();
2023-05-05 09:28:00 +02:00
$this->emit('refreshEnvs');
2023-05-04 22:29:14 +02:00
}
}