mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-11-25 09:44:04 +01:00
104 lines
2.3 KiB
PHP
104 lines
2.3 KiB
PHP
<?php
|
|
|
|
namespace App\Policies;
|
|
|
|
use App\Models\User;
|
|
use Illuminate\Support\Facades\Log;
|
|
|
|
class UserPolicy
|
|
{
|
|
use SelfTrait;
|
|
|
|
/**
|
|
* Perform pre-authorization checks.
|
|
*/
|
|
public function before(User $user, string $ability) : ?bool
|
|
{
|
|
if ($user->isAdministrator()) {
|
|
return true;
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
/**
|
|
* Determine whether the user can view any models.
|
|
*/
|
|
// public function viewAny(User $user) : bool
|
|
// {
|
|
// return false;
|
|
// }
|
|
|
|
/**
|
|
* Determine whether the user can view the model.
|
|
*
|
|
* @codeCoverageIgnore
|
|
* Ignored as long as the before() method restrict the access to admins only
|
|
*/
|
|
public function view(User $user, User $model) : bool
|
|
{
|
|
$can = $this->isHimself($user, $model);
|
|
|
|
if (! $can) {
|
|
Log::notice(sprintf('User ID #%s cannot view users other than himself)', $user->id));
|
|
}
|
|
|
|
return $can;
|
|
}
|
|
|
|
/**
|
|
* Determine whether the user can create models.
|
|
*
|
|
* @codeCoverageIgnore
|
|
* Ignored as long as the before() method restrict the access to admins only
|
|
*/
|
|
public function create(?User $user) : bool
|
|
{
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* Determine whether the user can update the model.
|
|
*
|
|
* Not ignored because the user can update itself
|
|
*/
|
|
public function update(User $user, User $model) : bool
|
|
{
|
|
$can = $this->isHimself($user, $model);
|
|
|
|
if (! $can) {
|
|
Log::notice(sprintf('User ID #%s cannot update users other than himself)', $user->id));
|
|
}
|
|
|
|
return $can;
|
|
}
|
|
|
|
/**
|
|
* Determine whether the user can delete the model.
|
|
*
|
|
* @codeCoverageIgnore
|
|
* Ignored as long as the before() method restrict the access to admins only
|
|
*/
|
|
public function delete(User $user, User $model) : bool
|
|
{
|
|
$can = $this->isHimself($user, $model);
|
|
|
|
if (! $can) {
|
|
Log::notice(sprintf('User ID #%s cannot delete users other than himself)', $user->id));
|
|
}
|
|
|
|
return $can;
|
|
}
|
|
|
|
/**
|
|
* Determine whether the user can promote the model.
|
|
*
|
|
* @codeCoverageIgnore
|
|
* Ignored as long as the before() method restrict the access to admins only
|
|
*/
|
|
public function promote(User $user) : bool
|
|
{
|
|
return false;
|
|
}
|
|
}
|