doufu2496 2016-10-05 10:30
浏览 117
已采纳

如何在twig扩展服务中获取当前用户[symfony2.8]

I'm trying to get the current user in my NotificationExtension.php. But the page become very slow to load and I also get this error:

Error: Call to a member function getUser() on null

The error say that is impossible to get the current user, but i'm login.

This is my service:

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:

service:

notification:
  class: Application\Sonata\UserBundle\Twig\NotificationExtension
  arguments: ['@doctrine.orm.entity_manager','@security.token_storage']
  tags:
        - { name: twig.extension }

get current user:

public function getUser()
{
    return $this->tokenStorage->getToken()->getUser();
}
  • 写回答

2条回答 默认 最新

  • dongyi1215 2016-10-05 14:40
    关注

    Define instead a service as a global Twig variable:

    # app/config/config.yml
    twig:
        # ...
        globals:
            user_notification: '@app.user_notification'
    

    The service class:

    // 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;
        }
    }
    

    The service definition:

    # app/config/config.yml
    
    services:
        app.user_notification:
            class: AppBundle\Twig\Globals\UserNotification
            arguments: ['@security.token_storage', ...]
    

    Finally, for all templates you can to use this service:

    # foo.html.twig
    
    {{ user_notification.unreadMessages|length }}
    

    Whenever the global variable is accessed in the template, the service will be requested from the service container and you get access to that object.


    More information http://symfony.com/doc/current/templating/global_variables.html

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥50 安装pyaudiokits失败
  • ¥15 计组这些题应该咋做呀
  • ¥60 更换迈创SOL6M4AE卡的时候,驱动要重新装才能使用,怎么解决?
  • ¥15 让node服务器有自动加载文件的功能
  • ¥15 jmeter脚本回放有的是对的有的是错的
  • ¥15 r语言蛋白组学相关问题
  • ¥15 Python时间序列如何拟合疏系数模型
  • ¥15 求学软件的前人们指明方向🥺
  • ¥50 如何增强飞上天的树莓派的热点信号强度,以使得笔记本可以在地面实现远程桌面连接
  • ¥20 双层网络上信息-疾病传播