在Sylius中将商店用户注册为我的Web应用程序的基本框架之后,该用户将收到一封带有验证链接的电子邮件。
用户单击此事件后,由于Sylius后面发生了一些不可思议的事情,因此将在数据库中启用该用户。
我想赶上这个事件,以便能够在此步骤中添加更多操作。
首先,我试图找到一个事件,该事件可能在成功进行用户身份验证的情况下触发。
bin/console debug:event-dispatcher
"sylius.admin_user.post_create" event
"sylius.admin_user.post_update" event
"sylius.admin_user.pre_delete" event
"sylius.admin_user.pre_update" event
"sylius.cart_change" event
"sylius.channel.pre_delete" event
"sylius.customer.post_register" event
"sylius.customer.pre_register" event
"sylius.customer.pre_update" event
"sylius.menu.shop.account" event
"sylius.oauth_user.post_create" event
"sylius.oauth_user.post_update" event
"sylius.oauth_user.pre_delete" event
"sylius.order.post_address" event
"sylius.order.post_complete" event
"sylius.order.post_payment" event
"sylius.order.post_select_shipping" event
"sylius.order.pre_complete" event
"sylius.order_item.pre_create" event
"sylius.order_item.pre_delete" event
"sylius.order_item.pre_update" event
"sylius.product.initialize_update" event
"sylius.product.pre_create" event
"sylius.product.pre_update" event
"sylius.product_review.pre_create" event
"sylius.product_variant.initialize_update" event
"sylius.shipment.post_ship" event
"sylius.shop_user.post_create" event
"sylius.shop_user.post_update" event
"sylius.shop_user.pre_delete" event
"sylius.taxon.pre_create" event
"sylius.taxon.pre_update" event
"sylius.user.email_verification.token" event
"sylius.user.password_reset.request.pin" event
"sylius.user.password_reset.request.token" event
"sylius.user.post_email_verification" event
"sylius.user.pre_password_change" event
"sylius.user.pre_password_reset" event
"sylius.user.security.impersonate" event
"sylius.user.security.implicit_login" event
这将列出许多事件,但除了“ sylius.user.email_verification.token”(仅负责创建最终的身份验证令牌)外,没有任何指示任何电子邮件验证过程的信息。
然后我浏览了Sylius的代码,发现了 UserController 和操作 verifyAction ,听起来很有希望。
在此操作中,将调度几个事件:
$eventDispatcher->dispatch(UserEvents::PRE_EMAIL_VERIFICATION, new GenericEvent($user));
和
$eventDispatcher->dispatch(UserEvents::POST_EMAIL_VERIFICATION, new GenericEvent($user));
这些常量定义为:
public const PRE_EMAIL_VERIFICATION = 'sylius.user.pre_email_verification';
public const POST_EMAIL_VERIFICATION = 'sylius.user.post_email_verification';
但是,这两种事件类型均未在symfony的全局事件分派器中注册,它们都未在 debug:event-dispatcher 中列出,因此无法监听。
我们已经有一个自定义EventLister,可以很好地完成注册过程,但是不会捕获任何电子邮件验证事件:
/**
* {@inheritdoc}
*/
public static function getSubscribedEvents()
{
return [
'sylius.customer.pre_register' => ['onCustomerPreRegister', 0],
'sylius.customer.post_register' => ['onCustomerPostRegister', 0],
UserEvents::POST_EMAIL_VERIFICATION => ['onPostEmailVerification', 0]
];
}
然后,我尝试在自己的实现中覆盖UserController,以覆盖原始控制器并复制 verifyAction -Method(尽管事实并非如此,长尾巴不是一个好选择)< / p>
仍然没有成功。
虽然我们已经成功覆盖了多个控制器,但UserController似乎位于一个不能更改为另一个类的岛上:
我们的 services.yml 如下:
sylius.controller.shop_user:
class: AppBundle\Controller\User\UserController
public: true
sylius.controller.shop.homepage:
class: AppBundle\Controller\Shop\HomepageController
public: true
主页的自定义控制器运行良好,而UserController的任何条目将始终被忽略。
简而言之,我尝试了几种方法,并在考虑其他方法(甚至是那些非常丑陋的方法):
任何想法如何解决我们的问题?
答案 0 :(得分:1)
尝试以下代码,并在打开验证链接后成功收到转储消息(在我的情况下为http://localhost/app_dev.php/en_US/verify/mUJjxjiI0OjWhRC2)
<?php
namespace AppBundle\EventListener;
use Sylius\Bundle\UserBundle\UserEvents;
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
use Symfony\Component\EventDispatcher\GenericEvent;
class CustomVerificationSubscriber implements EventSubscriberInterface
{
public static function getSubscribedEvents()
{
return [
UserEvents::POST_EMAIL_VERIFICATION => 'onVerification'
];
}
public function onVerification(GenericEvent $event)
{
dump('it works');
}
}