Symfony2 - 将当前登录的用户注入监听器
Posted
技术标签:
【中文标题】Symfony2 - 将当前登录的用户注入监听器【英文标题】:Symfony2 - Inject the currently logged in user into a listener 【发布时间】:2013-07-26 20:24:38 【问题描述】:我正在尝试将当前登录的用户注入到侦听器中。我的目标是每次用户执行任何操作时都将当前的 \DateTime() 写入我的“demo_user”表的“last_active”列(这两种this 方法都对我不起作用)。
app/config/config.yml
# ...
services:
demo.listener:
class: Demo\UserBundle\EventListener\ActivityWatcher.php
arguments: ['@service_container']
tags:
- name: doctrine.event_listener, event: postLoad
src/Demo/UserBundle/EventListener/ActivityWatcher.php
namespace Demo\UserBundle\EventListener;
use Doctrine\ORM\Event\LifecycleEventArgs;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Demo\UserBundle\Entity\DemoUser;
class ActivityWatcher
protected $container;
public function __construct(ContainerInterface $container)
$this->container = $container;
public function postLoad(LifecycleEventArgs $args)
$entity = $args->getEntity();
$entityManager = $args->getEntityManager();
if ($entity instanceof DemoUser)
$token = $this->container->get('security.context')->getToken();
$user = $token->getUser();
if($entity->getId() == $user->getId())
$entity->setLastActivity( new \DateTime() );
$entityManager->persist($entity);
$entityManager->flush();
但是 $token 总是空的... 更新:没有提到,发生这种情况时我已登录并通过身份验证
FatalErrorException: Error: Call to a member function getUser()
on a non-object ...
有什么想法吗?啊,谢谢,Jan
更新:
我也尝试只注入 security.context:
arguments: ["@security.context"]
但有一个
ServiceCircularReferenceException: Circular reference detected for "doctrine.orm.default_entity_manager", path: "doctrine.orm.default_entity_manager -> doctrine.dbal.default_connection -> wwk.listener -> security.context -> security.authentication.manager -> security.user.provider.concrete.administrators".
【问题讨论】:
不是一个优雅的解决方案,但是:***.com/questions/7561013/… 我想我现在正在尝试这样做,但没有任何成功 @JovanPerovic 提供的链接很好。正确答案是这个:***.com/questions/7561013/… 【参考方案1】:对于symfony 2.4
,你应该可以注入表达式,
所以而不是@service_container
采用
@=service('security.context').getToken().getUser()
直接获取用户
【讨论】:
嗨,我试过了,但我遇到了同样的问题:检测到服务“doctrine.orm.default_entity_manager”的循环引用。看起来在使用doctrine.event_listener̀
时调用 @security.context
仍然会引发错误。
这对我来说非常有效。谢谢 Symfony 精灵【参考方案2】:
注入当前用户时循环引用问题的解决方案是实现一个用户可调用。
您可以使用 KnpDoctrineBehaviors 提供的 UserCallable 类。
首先,您需要从用户可调用类创建一个服务并将容器注入其中。
您可以在KnpDoctrineBehaviors 提供的配置中找到有关如何执行此操作的 YML 示例。
现在将您的 UserCallable 服务注入您的侦听器并从用户可调用中检索用户,如您在 source of Blameable listener 中看到的那样。
【讨论】:
以上是关于Symfony2 - 将当前登录的用户注入监听器的主要内容,如果未能解决你的问题,请参考以下文章
2018.5.6 解决问题:oracle------ORA-12514 TNS 监听程序当前无法识别连接描述符中请求服务