mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-21 19:01:37 +00:00
114 lines
4.0 KiB
PHP
114 lines
4.0 KiB
PHP
<?php
|
|
|
|
namespace App\Web\Pages\Servers\Databases\Widgets;
|
|
|
|
use App\Actions\Database\RunBackup;
|
|
use App\Models\Backup;
|
|
use App\Models\BackupFile;
|
|
use App\Models\Server;
|
|
use Exception;
|
|
use Filament\Notifications\Notification;
|
|
use Filament\Support\Enums\MaxWidth;
|
|
use Filament\Tables\Actions\Action;
|
|
use Filament\Tables\Columns\TextColumn;
|
|
use Filament\Tables\Table;
|
|
use Filament\Widgets\TableWidget as Widget;
|
|
use Illuminate\Database\Eloquent\Builder;
|
|
|
|
class BackupsList extends Widget
|
|
{
|
|
public Server $server;
|
|
|
|
protected $listeners = ['$refresh'];
|
|
|
|
protected function getTableQuery(): Builder
|
|
{
|
|
return Backup::query()->where('server_id', $this->server->id);
|
|
}
|
|
|
|
protected static ?string $heading = '';
|
|
|
|
protected function getTableColumns(): array
|
|
{
|
|
return [
|
|
TextColumn::make('database.name')
|
|
->label('Database')
|
|
->searchable(),
|
|
TextColumn::make('storage.profile')
|
|
->label('Storage')
|
|
->searchable(),
|
|
TextColumn::make('status')
|
|
->label('Status')
|
|
->badge()
|
|
->color(fn (Backup $backup) => Backup::$statusColors[$backup->status])
|
|
->sortable(),
|
|
TextColumn::make('lastFile.status')
|
|
->label('Last file status')
|
|
->badge()
|
|
->color(fn ($state) => BackupFile::$statusColors[$state])
|
|
->sortable(),
|
|
TextColumn::make('created_at')
|
|
->label('Created At')
|
|
->formatStateUsing(fn ($record) => $record->created_at_by_timezone)
|
|
->sortable(),
|
|
];
|
|
}
|
|
|
|
public function getTable(): Table
|
|
{
|
|
return $this->table
|
|
->actions([
|
|
Action::make('files')
|
|
->hiddenLabel()
|
|
->icon('heroicon-o-rectangle-stack')
|
|
->modalHeading('Backup Files')
|
|
->color('gray')
|
|
->tooltip('Show backup files')
|
|
->authorize(fn (Backup $record) => auth()->user()->can('viewAny', [BackupFile::class, $record]))
|
|
->modalContent(fn (Backup $record) => view('components.dynamic-widget', [
|
|
'widget' => BackupFilesList::class,
|
|
'params' => [
|
|
'backup' => $record,
|
|
],
|
|
]))
|
|
->modalWidth(MaxWidth::FiveExtraLarge)
|
|
->slideOver()
|
|
->modalSubmitAction(false)
|
|
->modalCancelActionLabel('Close')
|
|
->modalFooterActions([
|
|
Action::make('backup')
|
|
->label('Run Backup')
|
|
->icon('heroicon-o-play')
|
|
->color('primary')
|
|
->action(function (Backup $record) {
|
|
app(RunBackup::class)->run($record);
|
|
|
|
$this->dispatch('$refresh');
|
|
}),
|
|
]),
|
|
Action::make('delete')
|
|
->hiddenLabel()
|
|
->icon('heroicon-o-trash')
|
|
->modalHeading('Delete Database')
|
|
->color('danger')
|
|
->tooltip('Delete')
|
|
->authorize(fn (Backup $record) => auth()->user()->can('delete', $record))
|
|
->requiresConfirmation()
|
|
->action(function (Backup $record) {
|
|
try {
|
|
$record->delete();
|
|
} catch (Exception $e) {
|
|
Notification::make()
|
|
->danger()
|
|
->title($e->getMessage())
|
|
->send();
|
|
|
|
throw $e;
|
|
}
|
|
|
|
$this->dispatch('$refresh');
|
|
}),
|
|
]);
|
|
}
|
|
}
|