Files
trafficpumper/app/Policies/UserPolicy.php
T

46 lines
1.1 KiB
PHP
Raw Normal View History

2026-08-29 15:53:53 +03:00
<?php
namespace App\Policies;
use App\Enums\RoleName;
use App\Models\User;
class UserPolicy
{
public function viewAny(User $actor): bool
{
return $actor->isActive() && $actor->hasPermission('users.view');
}
public function view(User $actor, User $subject): bool
{
return $this->viewAny($actor);
}
public function create(User $actor): bool
{
return $actor->isActive() && $actor->hasPermission('users.manage');
}
public function update(User $actor, User $subject): bool
{
if (! $actor->isActive() || ! $actor->hasPermission('users.manage')) {
return false;
}
if ($subject->hasRole(RoleName::SuperAdmin) && ! $actor->hasRole(RoleName::SuperAdmin)) {
return false;
}
return $actor->isNot($subject) || $actor->hasRole(RoleName::SuperAdmin);
}
public function delete(User $actor, User $subject): bool
{
if (! $this->update($actor, $subject) || $actor->is($subject)) {
return false;
}
return true;
}
}