coolify/app/Livewire/Project/Shared/Storages/Add.php

68 lines
1.7 KiB
PHP
Raw Normal View History

2023-05-05 12:08:38 +02:00
<?php
2023-12-07 19:06:32 +01:00
namespace App\Livewire\Project\Shared\Storages;
2023-05-05 12:08:38 +02:00
2023-12-18 14:01:25 +01:00
use App\Models\Application;
2023-05-05 12:08:38 +02:00
use Livewire\Component;
class Add extends Component
{
2023-10-02 09:08:41 +02:00
public $uuid;
2023-05-05 12:08:38 +02:00
public $parameters;
2023-12-18 14:01:25 +01:00
public $isSwarm = false;
2023-05-05 12:08:38 +02:00
public string $name;
public string $mount_path;
2023-12-18 14:01:25 +01:00
public ?string $host_path = null;
2023-05-05 14:20:10 +02:00
2023-12-18 14:01:25 +01:00
public $rules = [
2023-05-05 12:08:38 +02:00
'name' => 'required|string',
'mount_path' => 'required|string',
'host_path' => 'string|nullable',
];
2023-12-18 14:01:25 +01:00
protected $listeners = ['clearAddStorage' => 'clear'];
2023-06-16 12:35:40 +02:00
protected $validationAttributes = [
'name' => 'name',
'mount_path' => 'mount',
'host_path' => 'host',
];
2023-05-05 12:08:38 +02:00
public function mount()
{
$this->parameters = get_route_parameters();
2023-12-18 14:01:25 +01:00
$applicationUuid = $this->parameters['application_uuid'];
$application = Application::where('uuid', $applicationUuid)->first();
if (!$application) {
abort(404);
}
if ($application->destination->server->isSwarm()) {
$this->isSwarm = true;
$this->rules['host_path'] = 'required|string';
}
2023-05-05 12:08:38 +02:00
}
2023-05-05 12:08:38 +02:00
public function submit()
{
2023-12-18 14:01:25 +01:00
try {
$this->validate($this->rules);
$name = $this->uuid . '-' . $this->name;
$this->dispatch('addNewVolume', [
'name' => $name,
'mount_path' => $this->mount_path,
'host_path' => $this->host_path,
]);
$this->dispatch('closeStorageModal');
} catch (\Throwable $e) {
return handleError($e, $this);
}
2023-05-05 14:20:10 +02:00
}
2023-05-05 14:20:10 +02:00
public function clear()
{
$this->name = '';
$this->mount_path = '';
$this->host_path = null;
2023-05-05 12:08:38 +02:00
}
}