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

时间:2016-10-05 10:30:43

标签: php symfony twig

我试图获取user中的当前NotificationExtension.php。但是页面加载速度很慢,我也收到了这个错误:

  

错误:在null

上调用成员函数getUser()

错误说不可能获得当前用户,但我登录。

这是我的服务:

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

添加

服务

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

获取当前用户:

public function getUser()
{
    return $this->tokenStorage->getToken()->getUser();
}

2 个答案:

答案 0 :(得分:4)

将服务定义为全局Twig变量:

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

服务定义:

# app/config/config.yml

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

最后,对于所有模板,您都可以使用此服务:

# foo.html.twig

{{ user_notification.unreadMessages|length }}

每当在模板中访问全局变量时,将从服务容器中请求服务,并且您可以访问该对象。

更多信息http://symfony.com/doc/current/templating/global_variables.html

答案 1 :(得分:1)

您可以访问类似的用户名:app.user.username

如果要检查用户是否已登录,可以使用is_granted twig功能。

例如:

.menu {
    width:250px;
    position:fixed;
}

.content {
    position:relative;
    left:250px; 
    max-width:400px; /* not working */
}