mirror of
https://github.com/flarum/core.git
synced 2025-06-02 20:55:07 +02:00
Event priorities are no longer in Laravel - see dbbfc62bef
Updated the AbstractPolicy terminology to reflect the new behaviour,
which is that there is no guarantee that the catch-all methods will run
after all specific methods have run globally. This behaviour is only
guaranteed within the policy.
46 lines
890 B
PHP
46 lines
890 B
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of Flarum.
|
|
*
|
|
* (c) Toby Zerner <toby.zerner@gmail.com>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Flarum\User;
|
|
|
|
use Illuminate\Database\Eloquent\Builder;
|
|
|
|
class UserPolicy extends AbstractPolicy
|
|
{
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
protected $model = User::class;
|
|
|
|
/**
|
|
* @param User $actor
|
|
* @param string $ability
|
|
* @return bool|null
|
|
*/
|
|
public function can(User $actor, $ability)
|
|
{
|
|
if ($actor->hasPermission('user.'.$ability)) {
|
|
return true;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @param User $actor
|
|
* @param Builder $query
|
|
*/
|
|
public function find(User $actor, Builder $query)
|
|
{
|
|
if ($actor->cannot('viewDiscussions')) {
|
|
$query->whereRaw('FALSE');
|
|
}
|
|
}
|
|
}
|