mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-22 03:02:20 +00:00
98 lines
3.5 KiB
PHP
98 lines
3.5 KiB
PHP
<?php
|
|
|
|
namespace App\Web\Pages\Servers\Databases;
|
|
|
|
use App\Actions\Database\CreateDatabase;
|
|
use App\Models\Database;
|
|
use App\Models\Server;
|
|
use App\Web\Components\Page;
|
|
use App\Web\Contracts\HasSecondSubNav;
|
|
use App\Web\Traits\PageHasServer;
|
|
use Exception;
|
|
use Filament\Actions\Action;
|
|
use Filament\Forms\Components\Checkbox;
|
|
use Filament\Forms\Components\TextInput;
|
|
use Filament\Notifications\Notification;
|
|
use Filament\Support\Enums\MaxWidth;
|
|
|
|
class Index extends Page implements HasSecondSubNav
|
|
{
|
|
use PageHasServer;
|
|
use Traits\Navigation;
|
|
|
|
protected static ?string $slug = 'servers/{server}/databases';
|
|
|
|
protected static bool $shouldRegisterNavigation = false;
|
|
|
|
protected static ?string $title = 'Databases';
|
|
|
|
public Server $server;
|
|
|
|
public static function canAccess(): bool
|
|
{
|
|
return auth()->user()?->can('viewAny', [Database::class, static::getServerFromRoute()]) ?? false;
|
|
}
|
|
|
|
protected function getHeaderActions(): array
|
|
{
|
|
return [
|
|
Action::make('Create Database')
|
|
->icon('heroicon-o-plus')
|
|
->modalWidth(MaxWidth::Large)
|
|
->authorize(fn () => auth()->user()?->can('create', [Database::class, $this->server]))
|
|
->form([
|
|
TextInput::make('name')
|
|
->rules(fn (callable $get) => CreateDatabase::rules($this->server, $get())['name']),
|
|
Checkbox::make('user')
|
|
->label('Create User')
|
|
->default(false)
|
|
->reactive(),
|
|
TextInput::make('username')
|
|
->label('Username')
|
|
->rules(fn (callable $get) => CreateDatabase::rules($this->server, $get())['username'])
|
|
->hidden(fn (callable $get) => $get('user') !== true),
|
|
TextInput::make('password')
|
|
->label('Password')
|
|
->rules(fn (callable $get) => CreateDatabase::rules($this->server, $get())['password'])
|
|
->hidden(fn (callable $get) => $get('user') !== true),
|
|
Checkbox::make('remote')
|
|
->label('Remote')
|
|
->default(false)
|
|
->hidden(fn (callable $get) => $get('user') !== true)
|
|
->reactive(),
|
|
TextInput::make('host')
|
|
->label('Host')
|
|
->rules(fn (callable $get) => CreateDatabase::rules($this->server, $get())['host'])
|
|
->hidden(fn (callable $get) => $get('remote') !== true),
|
|
])
|
|
->modalSubmitActionLabel('Create')
|
|
->action(function (array $data) {
|
|
try {
|
|
app(CreateDatabase::class)->create($this->server, $data);
|
|
|
|
$this->dispatch('$refresh');
|
|
|
|
Notification::make()
|
|
->success()
|
|
->title('Database Created!')
|
|
->send();
|
|
} catch (Exception $e) {
|
|
Notification::make()
|
|
->danger()
|
|
->title($e->getMessage())
|
|
->send();
|
|
|
|
throw $e;
|
|
}
|
|
}),
|
|
];
|
|
}
|
|
|
|
public function getWidgets(): array
|
|
{
|
|
return [
|
|
[Widgets\DatabasesList::class, ['server' => $this->server]],
|
|
];
|
|
}
|
|
}
|