![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/mautic.corals.io/app/bundles/WebhookBundle/EventListener/ |
<?php namespace Mautic\WebhookBundle\EventListener; use Mautic\CoreBundle\Helper\IpLookupHelper; use Mautic\CoreBundle\Model\AuditLogModel; use Mautic\WebhookBundle\Event\WebhookEvent; use Mautic\WebhookBundle\Notificator\WebhookKillNotificator; use Mautic\WebhookBundle\WebhookEvents; use Symfony\Component\EventDispatcher\EventSubscriberInterface; class WebhookSubscriber implements EventSubscriberInterface { public function __construct( private IpLookupHelper $ipLookupHelper, private AuditLogModel $auditLogModel, private WebhookKillNotificator $webhookKillNotificator ) { } public static function getSubscribedEvents(): array { return [ WebhookEvents::WEBHOOK_POST_SAVE => ['onWebhookSave', 0], WebhookEvents::WEBHOOK_POST_DELETE => ['onWebhookDelete', 0], WebhookEvents::WEBHOOK_KILL => ['onWebhookKill', 0], ]; } /** * Add an entry to the audit log. */ public function onWebhookSave(WebhookEvent $event): void { $webhook = $event->getWebhook(); if ($details = $event->getChanges()) { $log = [ 'bundle' => 'webhook', 'object' => 'webhook', 'objectId' => $webhook->getId(), 'action' => ($event->isNew()) ? 'create' : 'update', 'details' => $details, 'ipAddress' => $this->ipLookupHelper->getIpAddressFromRequest(), ]; $this->auditLogModel->writeToLog($log); } } /** * Add a delete entry to the audit log. */ public function onWebhookDelete(WebhookEvent $event): void { $webhook = $event->getWebhook(); $log = [ 'bundle' => 'webhook', 'object' => 'webhook', 'objectId' => $event->getWebhook()->deletedId, 'action' => 'delete', 'details' => ['name' => $webhook->getName()], 'ipAddress' => $this->ipLookupHelper->getIpAddressFromRequest(), ]; $this->auditLogModel->writeToLog($log); } /** * Send notification about killed webhook. */ public function onWebhookKill(WebhookEvent $event): void { $this->webhookKillNotificator->send($event->getWebhook(), $event->getReason()); } }