12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <?php
- /*
- * This file is part of the Symfony package.
- *
- * (c) Fabien Potencier <fabien@symfony.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- namespace Symfony\Component\Security\Core\Authorization;
- use Symfony\Component\ExpressionLanguage\ExpressionFunction;
- use Symfony\Component\ExpressionLanguage\ExpressionFunctionProviderInterface;
- /**
- * Define some ExpressionLanguage functions.
- *
- * @author Fabien Potencier <fabien@symfony.com>
- */
- class ExpressionLanguageProvider implements ExpressionFunctionProviderInterface
- {
- public function getFunctions()
- {
- return [
- new ExpressionFunction('is_anonymous', function () {
- return '$token && $auth_checker->isGranted("IS_ANONYMOUS")';
- }, function (array $variables) {
- return $variables['token'] && $variables['auth_checker']->isGranted('IS_ANONYMOUS');
- }),
- new ExpressionFunction('is_authenticated', function () {
- return '$token && !$auth_checker->isGranted("IS_ANONYMOUS")';
- }, function (array $variables) {
- return $variables['token'] && !$variables['auth_checker']->isGranted('IS_ANONYMOUS');
- }),
- new ExpressionFunction('is_fully_authenticated', function () {
- return '$token && $auth_checker->isGranted("IS_AUTHENTICATED_FULLY")';
- }, function (array $variables) {
- return $variables['token'] && $variables['auth_checker']->isGranted('IS_AUTHENTICATED_FULLY');
- }),
- new ExpressionFunction('is_granted', function ($attributes, $object = 'null') {
- return sprintf('$auth_checker->isGranted(%s, %s)', $attributes, $object);
- }, function (array $variables, $attributes, $object = null) {
- return $variables['auth_checker']->isGranted($attributes, $object);
- }),
- new ExpressionFunction('is_remember_me', function () {
- return '$token && $auth_checker->isGranted("IS_REMEMBERED")';
- }, function (array $variables) {
- return $variables['token'] && $variables['auth_checker']->isGranted('IS_REMEMBERED');
- }),
- ];
- }
- }
|