coolify/app/Livewire/Project/DeleteEnvironment.php

48 lines
1.2 KiB
PHP
Raw Normal View History

2023-05-23 08:15:12 +00:00
<?php
2023-12-07 18:06:32 +00:00
namespace App\Livewire\Project;
2023-05-23 08:15:12 +00:00
use App\Models\Environment;
use Illuminate\Foundation\Auth\Access\AuthorizesRequests;
2023-05-23 08:15:12 +00:00
use Livewire\Component;
class DeleteEnvironment extends Component
{
use AuthorizesRequests;
2023-05-23 08:15:12 +00:00
public int $environment_id;
2024-06-10 20:43:34 +00:00
2024-01-31 13:18:59 +00:00
public bool $disabled = false;
2023-05-23 08:15:12 +00:00
2024-08-30 18:00:04 +00:00
public string $environmentName = '';
public array $parameters;
2023-05-23 08:15:12 +00:00
public function mount()
{
try {
$this->environmentName = Environment::findOrFail($this->environment_id)->name;
$this->parameters = get_route_parameters();
} catch (\Exception $e) {
return handleError($e, $this);
}
2023-05-23 08:15:12 +00:00
}
2024-09-02 17:27:21 +00:00
public function delete()
2023-05-23 08:15:12 +00:00
{
$this->validate([
'environment_id' => 'required|int',
]);
$environment = Environment::findOrFail($this->environment_id);
$this->authorize('delete', $environment);
if ($environment->isEmpty()) {
$environment->delete();
2024-06-10 20:43:34 +00:00
return redirect()->route('project.show', parameters: ['project_uuid' => $this->parameters['project_uuid']]);
2023-05-23 08:15:12 +00:00
}
2024-06-10 20:43:34 +00:00
return $this->dispatch('error', "<strong>Environment {$environment->name}</strong> has defined resources, please delete them first.");
2023-05-23 08:15:12 +00:00
}
}