src/Eccube/Log/Processor/TokenProcessor.php line 18

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of EC-CUBE
  4.  *
  5.  * Copyright(c) EC-CUBE CO.,LTD. All Rights Reserved.
  6.  *
  7.  * http://www.ec-cube.co.jp/
  8.  *
  9.  * For the full copyright and license information, please view the LICENSE
  10.  * file that was distributed with this source code.
  11.  */
  12. namespace Eccube\Log\Processor;
  13. use Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorageInterface;
  14. class TokenProcessor
  15. {
  16.     /**
  17.      * @var TokenStorageInterface
  18.      */
  19.     protected $tokenStorage;
  20.     public function __construct(TokenStorageInterface $tokenStorage)
  21.     {
  22.         $this->tokenStorage $tokenStorage;
  23.     }
  24.     public function __invoke(array $records)
  25.     {
  26.         $records['extra']['user_id'] = 'N/A';
  27.         if (null !== $token $this->tokenStorage->getToken()) {
  28.             $user $token->getUser();
  29.             $records['extra']['user_id'] = is_object($user)
  30.                 ? $user->getId()
  31.                 : $user;
  32.         }
  33.         return $records;
  34.     }
  35. }