私は現在user
を私のNotificationExtension.php
に入れようとしています。しかし、非常に遅くなるページがロードすると私はまた、このエラーが出る:twig拡張サービスで現在のユーザを取得する方法[symfony2.8]
Error: Call to a member function getUser() on null
エラーは、それが現在のユーザーを取得することは不可能であると言うが、私は、ログインよ。
これは私のサービスである:
notification:
class: Application\Sonata\UserBundle\Twig\NotificationExtension
arguments: ['@doctrine.orm.entity_manager', '@service_container', '@security.context']
tags:
- { name: twig.extension }
NotificationExtension:
<?php
namespace Application\Sonata\UserBundle\Twig;
use Doctrine\ORM\EntityManager;
use Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorage;
use Twig_Extension;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Symfony\Component\Security\Core\SecurityContext;
use Symfony\Component\Security\Core\Security;
class NotificationExtension extends \Twig_Extension
{
protected $container;
protected $em;
public function __construct(EntityManager $em,ContainerInterface $container, SecurityContext $context)
{
$this->container = $container;
$this->em = $em;
$this->doctrine = $container->get('doctrine');
$this->context = $context;
}
public function getGlobals()
{
$user = $this->container->get('security.context')->getToken()->getUser();
return(array(
'unreadMessagesCount' => $this->em->getRepository('ApplicationSonataUserBundle:Notif')->findBy(
array(
'user' => $user,
'seen' => true
),
array('date' => 'DESC')
)));
}
public function getName()
{
return 'notification';
}
}
ADD:
サービス:
notification:
class: Application\Sonata\UserBundle\Twig\NotificationExtension
arguments: ['@doctrine.orm.entity_manager','@security.token_storage']
tags:
- { name: twig.extension }
現在のユーザーを取得:
# app/config/config.yml
twig:
# ...
globals:
user_notification: '@app.user_notification'
サービスクラス:
// src/AppBundle/Twig/Globals/UserNotification.php
class UserNotification
{
private $tokenStorage;
// ...
public function __construct(TokenStorageInterface $tokenStorage, ...)
{
$this->tokenStorage = $tokenStorage;
// ...
}
public function getUnreadMessages()
{
if (null === $token = $this->tokenStorage->getToken()) {
return array();
}
$user = $token->getUser();
// $unreadMessages = <DB query for get the unread messages from current user>
return $unreadMessages;
}
}
サービス
public function getUser()
{
return $this->tokenStorage->getToken()->getUser();
}
@ security.token_storage' 'サービスを試してみて、アクセスユーザーとして:'ます$ this->ユーザー=($ tokenStorage->を入手トークン())? $ tokenStorage-> getToken() - > getUser():null; ' – Jeet
あなたの行を' public function getGlobals() 'に置くと、次のエラーが出ます。 'Notice:Undefined variable:tokenStorage' – Sirius
サービス定義とクラスで' $ tokenStorage'を使って 'SecurityContext $ context'を変更するつもりでした。 – Jeet