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

57 lines
1.4 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-09-27 15:48:19 +02:00
use Illuminate\Support\Str;
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-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-06-16 12:35:40 +02:00
protected $validationAttributes = [
'key' => 'key',
'value' => 'value',
'is_build_time' => 'build',
];
2023-05-04 22:29:14 +02:00
public function mount()
{
2023-09-27 15:48:19 +02:00
$this->isDisabled = false;
if (Str::of($this->env->key)->startsWith('SERVICE_FQDN') || Str::of($this->env->key)->startsWith('SERVICE_URL')) {
$this->isDisabled = true;
}
2023-07-13 13:16:24 +02:00
$this->modalId = new Cuid2(7);
$this->parameters = get_route_parameters();
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
}
}