feat: add UserLevel enum and integrate it in User Modal, UserResource and UserFactory
This commit is contained in:
@@ -2,16 +2,14 @@
|
||||
|
||||
namespace App\Filament\Resources;
|
||||
|
||||
use BackedEnum;
|
||||
use UnitEnum;
|
||||
use Illuminate\Support\Facades\DB;
|
||||
use App\enum\UserLevel;
|
||||
use App\Filament\Resources\UserResource\Pages\CreateUser;
|
||||
use App\Filament\Resources\UserResource\Pages\EditUser;
|
||||
use App\Filament\Resources\UserResource\Pages\ListUsers;
|
||||
use App\Filament\Resources\UserResource\RelationManagers\LogsRelationManager;
|
||||
use App\Filament\Resources\UserResource\RelationManagers\UsageLogsRelationManager;
|
||||
use App\Models\User;
|
||||
use Exception;
|
||||
use BackedEnum;
|
||||
use Filament\Actions\BulkAction;
|
||||
use Filament\Actions\BulkActionGroup;
|
||||
use Filament\Actions\DeleteBulkAction;
|
||||
@@ -22,12 +20,14 @@ use Filament\Forms\Components\TextInput;
|
||||
use Filament\Notifications\Notification;
|
||||
use Filament\Resources\Resource;
|
||||
use Filament\Schemas\Schema;
|
||||
use Filament\Tables\Columns\BadgeColumn;
|
||||
use Filament\Tables\Columns\IconColumn;
|
||||
use Filament\Tables\Columns\TextColumn;
|
||||
use Filament\Tables\Filters\SelectFilter;
|
||||
use Filament\Tables\Table;
|
||||
use Illuminate\Database\Eloquent\Collection;
|
||||
use Illuminate\Support\Facades\DB;
|
||||
use Illuminate\Support\Facades\Log;
|
||||
use UnitEnum;
|
||||
|
||||
class UserResource extends Resource
|
||||
{
|
||||
@@ -75,12 +75,10 @@ class UserResource extends Resource
|
||||
->displayFormat('Y-m-d H:i:s'),
|
||||
Select::make('level')
|
||||
->label('User Level')
|
||||
->options([
|
||||
0 => 'Normal User',
|
||||
1 => 'Banned',
|
||||
9 => 'Super Admin',
|
||||
])
|
||||
->required(),
|
||||
->options(UserLevel::class)
|
||||
->enum(UserLevel::class)
|
||||
->required()
|
||||
->helperText('Select the appropriate user level. Super Admin has full system access.'),
|
||||
|
||||
]);
|
||||
}
|
||||
@@ -100,19 +98,12 @@ class UserResource extends Resource
|
||||
->falseColor('danger')
|
||||
->getStateUsing(fn ($record): bool => ! is_null($record->email_verified_at))
|
||||
->sortable(),
|
||||
BadgeColumn::make('level')
|
||||
TextColumn::make('level')
|
||||
->label('User Level')
|
||||
->getStateUsing(fn($record): string => match ($record->level) {
|
||||
0 => 'Normal User',
|
||||
1 => 'Banned',
|
||||
9 => 'Super Admin',
|
||||
default => 'Unknown', // In case some invalid level exists
|
||||
})
|
||||
->colors([
|
||||
'success' => fn ($state): bool => $state === 'Normal User',
|
||||
'danger' => fn ($state): bool => $state === 'Banned',
|
||||
'warning' => fn ($state): bool => $state === 'Super Admin',
|
||||
])
|
||||
->badge()
|
||||
->getStateUsing(fn ($record): string => $record->level->getLabel())
|
||||
->color(fn ($record): string => $record->level->getColor())
|
||||
->icon(fn ($record): string => $record->level->getIcon())
|
||||
->sortable(),
|
||||
TextColumn::make('stripe_id')->label('Stripe ID')->copyable(),
|
||||
TextColumn::make('pm_last_four')->label('Card Last 4'),
|
||||
@@ -120,6 +111,9 @@ class UserResource extends Resource
|
||||
])
|
||||
->defaultSort('created_at', 'desc')
|
||||
->filters([
|
||||
SelectFilter::make('level')
|
||||
->label('User Level')
|
||||
->options(UserLevel::class),
|
||||
SelectFilter::make('subscription_status')
|
||||
->label('Subscription Status')
|
||||
->options([
|
||||
@@ -162,14 +156,37 @@ class UserResource extends Resource
|
||||
BulkAction::make('updateLevel')
|
||||
->label('Update User Level')
|
||||
->action(function (Collection $records, array $data): void {
|
||||
$newLevel = (int) $data['new_level'];
|
||||
|
||||
$newLevel = $data['new_level'];
|
||||
throw_if($newLevel === 9, Exception::class, 'User level cannot be 9 or higher.');
|
||||
// Prevent bulk updating to Super Admin level for security
|
||||
if ($newLevel === UserLevel::SUPERADMIN->value) {
|
||||
$message = 'Cannot bulk assign Super Admin level for security reasons.';
|
||||
|
||||
Log::warning('Attempted bulk Super Admin assignment', [
|
||||
'user_ids' => $records->pluck('id')->toArray(),
|
||||
'attempted_level' => $newLevel,
|
||||
'ip' => request()->ip(),
|
||||
]);
|
||||
|
||||
Notification::make()
|
||||
->title('Security Restriction')
|
||||
->body($message)
|
||||
->danger()
|
||||
->send();
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
DB::table('users')
|
||||
->whereIn('id', $records->pluck('id'))
|
||||
->update(['level' => $newLevel]);
|
||||
|
||||
Log::info('Bulk user level update completed', [
|
||||
'user_ids' => $records->pluck('id')->toArray(),
|
||||
'new_level' => $newLevel,
|
||||
'updated_by' => auth()->id(),
|
||||
]);
|
||||
|
||||
Notification::make()
|
||||
->title('User Level Updated')
|
||||
->body('The selected users\' levels have been updated successfully.')
|
||||
@@ -179,15 +196,18 @@ class UserResource extends Resource
|
||||
->icon('heroicon-o-pencil')
|
||||
->color('primary')
|
||||
->modalHeading('Select User Level')
|
||||
->modalSubheading('Please choose the user level to apply to the selected users.')
|
||||
->modalDescription('Please choose the user level to apply to the selected users.')
|
||||
->modalSubmitActionLabel('Update Level')
|
||||
->modalCancelActionLabel('Cancel')
|
||||
->form([
|
||||
Select::make('new_level')
|
||||
->label('Select User Level')
|
||||
->options([
|
||||
0 => 'Unban (Normal User)',
|
||||
1 => 'Ban',
|
||||
UserLevel::NORMALUSER->value => UserLevel::NORMALUSER->getLabel(),
|
||||
UserLevel::BANNEDUSER->value => UserLevel::BANNEDUSER->getLabel(),
|
||||
])
|
||||
->required(),
|
||||
->required()
|
||||
->helperText('Super Admin level cannot be assigned via bulk action for security.'),
|
||||
]),
|
||||
]),
|
||||
]);
|
||||
|
||||
Reference in New Issue
Block a user