123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- <?php
- namespace Symfony\Component\HttpKernel\DataCollector;
- use Symfony\Component\Security\SecurityContext;
- use Symfony\Component\HttpFoundation\Request;
- use Symfony\Component\HttpFoundation\Response;
- /*
- * This file is part of the Symfony framework.
- *
- * (c) Fabien Potencier <fabien.potencier@symfony-project.com>
- *
- * This source file is subject to the MIT license that is bundled
- * with this source code in the file LICENSE.
- */
- /**
- * SecurityDataCollector.
- *
- * @author Fabien Potencier <fabien.potencier@symfony-project.com>
- */
- class SecurityDataCollector extends DataCollector
- {
- protected $context;
- public function __construct(SecurityContext $context = null)
- {
- $this->context = $context;
- }
- /**
- * {@inheritdoc}
- */
- public function collect(Request $request, Response $response, \Exception $exception = null)
- {
- if (null === $this->context) {
- $this->data = array(
- 'enabled' => false,
- 'authenticated' => false,
- 'user' => '',
- 'roles' => array(),
- );
- } elseif (null === $token = $this->context->getToken()) {
- $this->data = array(
- 'enabled' => true,
- 'authenticated' => false,
- 'user' => '',
- 'roles' => array(),
- );
- } else {
- $this->data = array(
- 'enabled' => true,
- 'authenticated' => $token->isAuthenticated(),
- 'user' => (string) $token->getUser(),
- 'roles' => array_map(function ($role){ return $role->getRole();}, $token->getRoles()),
- );
- }
- }
- /**
- * Checks if security is enabled.
- *
- * @return Boolean true if security is enabled, false otherwise
- */
- public function isEnabled()
- {
- return $this->data['enabled'];
- }
- /**
- * Gets the user.
- *
- * @return string The user
- */
- public function getUser()
- {
- return $this->data['user'];
- }
- /**
- * Gets the roles of the user.
- *
- * @return array The roles
- */
- public function getRoles()
- {
- return $this->data['roles'];
- }
- /**
- * Checks if the user is authenticated or not.
- *
- * @return Boolean true if the user is authenticated, false otherwise
- */
- public function isAuthenticated()
- {
- return $this->data['authenticated'];
- }
- /**
- * {@inheritdoc}
- */
- public function getName()
- {
- return 'security';
- }
- }
|