69 lines
1.5 KiB
PHP
69 lines
1.5 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the Kimai time-tracking app.
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace App\Voter;
|
|
|
|
use App\Entity\Activity;
|
|
use App\Entity\User;
|
|
use Symfony\Component\Security\Core\Authentication\Token\TokenInterface;
|
|
|
|
/**
|
|
* A voter to check permissions on Activities.
|
|
*/
|
|
class ActivityVoter extends AbstractVoter
|
|
{
|
|
public const VIEW = 'view';
|
|
public const EDIT = 'edit';
|
|
public const DELETE = 'delete';
|
|
|
|
/**
|
|
* support rules based on the given $subject (here: Activity)
|
|
*/
|
|
public const ALLOWED_ATTRIBUTES = [
|
|
self::VIEW,
|
|
self::EDIT,
|
|
self::DELETE
|
|
];
|
|
|
|
/**
|
|
* @param string $attribute
|
|
* @param Activity $subject
|
|
* @return bool
|
|
*/
|
|
protected function supports($attribute, $subject)
|
|
{
|
|
if (!($subject instanceof Activity)) {
|
|
return false;
|
|
}
|
|
|
|
if (!in_array($attribute, self::ALLOWED_ATTRIBUTES)) {
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* @param string $attribute
|
|
* @param Activity $subject
|
|
* @param TokenInterface $token
|
|
* @return bool
|
|
*/
|
|
protected function voteOnAttribute($attribute, $subject, TokenInterface $token)
|
|
{
|
|
$user = $token->getUser();
|
|
|
|
if (!$user instanceof User) {
|
|
return false;
|
|
}
|
|
|
|
return $this->hasRolePermission($user, $attribute . '_activity');
|
|
}
|
|
}
|