<?php
namespace FlexApp\EventSubscriber;
use FlexApp\Events\CommentEvent;
use FlexApp\Events\Style43\CommentCreateFromFormSavedSuccessfullyEvent;
use FlexApp\Events\Style43\CommentUpdateFromFormSavedSuccessfullyEvent;
use FlexApp\Events\Style43\ExistingCommentSavedEvent;
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
use WebBundle\Helper\PortalHelper;
class CommentSendToPortalSubscriber implements EventSubscriberInterface
{
/**
* @var PortalHelper
*/
private $portalHelper;
/**
* CommentSendToPortalSubscriber constructor.
*/
public function __construct(PortalHelper $portalHelper)
{
$this->portalHelper = $portalHelper;
}
/**
* Returns an array of event names this subscriber wants to listen to.
*
* The array keys are event names and the value can be:
*
* * The method name to call (priority defaults to 0)
* * An array composed of the method name to call and the priority
* * An array of arrays composed of the method names to call and respective
* priorities, or 0 if unset
*
* For instance:
*
* * array('eventName' => 'methodName')
* * array('eventName' => array('methodName', $priority))
* * array('eventName' => array(array('methodName1', $priority), array('methodName2')))
*
* @return array The event names to listen to
*/
public static function getSubscribedEvents()
{
return [
CommentCreateFromFormSavedSuccessfullyEvent::class => [
['send', -5],
// ['anotherMethodWhichInvokesWhenEventOccurs', 10],
],
CommentUpdateFromFormSavedSuccessfullyEvent::class => [
['send', -5],
],
ExistingCommentSavedEvent::class => [
['sendExistingComment', 0],
],
];
}
/**
* При возникновении перечисленных событий отправляет
* коммент на портал с помощью PortalHelper.
*/
public function send(CommentEvent $commentEvent)
{
$comment = $commentEvent->getComment();
$this->portalHelper->sendCommentEntity($comment);
}
public function sendExistingComment(CommentEvent $commentEvent)
{
$comment = $commentEvent->getComment();
$this->portalHelper->sendUpdateCommentEntity($comment);
}
}