mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-11-04 08:56:52 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			81 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			81 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace App\Filament\Components\Tables\Actions;
 | 
						|
 | 
						|
use App\Models\Egg;
 | 
						|
use App\Services\Eggs\Sharing\EggImporterService;
 | 
						|
use Exception;
 | 
						|
use Filament\Actions\StaticAction;
 | 
						|
use Filament\Notifications\Notification;
 | 
						|
use Filament\Tables\Actions\BulkAction;
 | 
						|
use Illuminate\Database\Eloquent\Collection;
 | 
						|
 | 
						|
class UpdateEggBulkAction extends BulkAction
 | 
						|
{
 | 
						|
    public static function getDefaultName(): ?string
 | 
						|
    {
 | 
						|
        return 'update';
 | 
						|
    }
 | 
						|
 | 
						|
    protected function setUp(): void
 | 
						|
    {
 | 
						|
        parent::setUp();
 | 
						|
 | 
						|
        $this->label(trans_choice('admin/egg.update', 2));
 | 
						|
 | 
						|
        $this->icon('tabler-cloud-download');
 | 
						|
 | 
						|
        $this->color('success');
 | 
						|
 | 
						|
        $this->requiresConfirmation();
 | 
						|
 | 
						|
        $this->modalHeading(trans_choice('admin/egg.update_question', 2));
 | 
						|
 | 
						|
        $this->modalDescription(trans_choice('admin/egg.update_description', 2));
 | 
						|
 | 
						|
        $this->modalIconColor('danger');
 | 
						|
 | 
						|
        $this->modalSubmitAction(fn (StaticAction $action) => $action->color('danger'));
 | 
						|
 | 
						|
        $this->action(function (Collection $records, EggImporterService $eggImporterService) {
 | 
						|
            if ($records->count() === 0) {
 | 
						|
                Notification::make()
 | 
						|
                    ->title(trans('admin/egg.no_updates'))
 | 
						|
                    ->warning()
 | 
						|
                    ->send();
 | 
						|
 | 
						|
                return;
 | 
						|
            }
 | 
						|
 | 
						|
            $success = 0;
 | 
						|
            $failed = 0;
 | 
						|
 | 
						|
            /** @var Egg $egg */
 | 
						|
            foreach ($records as $egg) {
 | 
						|
                try {
 | 
						|
                    $eggImporterService->fromUrl($egg->update_url, $egg);
 | 
						|
 | 
						|
                    $success++;
 | 
						|
 | 
						|
                    cache()->forget("eggs.$egg->uuid.update");
 | 
						|
                } catch (Exception $exception) {
 | 
						|
                    $failed++;
 | 
						|
 | 
						|
                    report($exception);
 | 
						|
                }
 | 
						|
            }
 | 
						|
 | 
						|
            Notification::make()
 | 
						|
                ->title(trans_choice('admin/egg.updated', 2, ['count' => $success, 'total' => $records->count()]))
 | 
						|
                ->body($failed > 0 ? trans('admin/egg.updated_failed', ['count' => $failed]) : null)
 | 
						|
                ->status($failed > 0 ? 'warning' : 'success')
 | 
						|
                ->persistent()
 | 
						|
                ->send();
 | 
						|
        });
 | 
						|
 | 
						|
        $this->authorize(fn () => auth()->user()->can('import egg'));
 | 
						|
 | 
						|
        $this->deselectRecordsAfterCompletion();
 | 
						|
    }
 | 
						|
}
 |