![]() 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/CampaignBundle/EventListener/ |
<?php namespace Mautic\CampaignBundle\EventListener; use Mautic\CampaignBundle\CampaignEvents; use Mautic\CampaignBundle\Event as Events; use Mautic\CampaignBundle\Service\CampaignAuditService; use Mautic\CoreBundle\Helper\IpLookupHelper; use Mautic\CoreBundle\Model\AuditLogModel; use Symfony\Component\EventDispatcher\EventSubscriberInterface; class CampaignSubscriber implements EventSubscriberInterface { public function __construct( private IpLookupHelper $ipLookupHelper, private AuditLogModel $auditLogModel, private CampaignAuditService $campaignAuditService, ) { } public static function getSubscribedEvents(): array { return [ CampaignEvents::CAMPAIGN_POST_SAVE => ['onCampaignPostSave', 0], CampaignEvents::CAMPAIGN_POST_DELETE => ['onCampaignDelete', 0], ]; } /** * Add an entry to the audit log. */ public function onCampaignPostSave(Events\CampaignEvent $event): void { $campaign = $event->getCampaign(); $details = $event->getChanges(); if ($campaign->isPublished()) { $this->campaignAuditService->addWarningForUnpublishedEmails($campaign); } // don't set leads unset($details['leads']); if (!empty($details)) { $log = [ 'bundle' => 'campaign', 'object' => 'campaign', 'objectId' => $campaign->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 onCampaignDelete(Events\CampaignEvent $event): void { $campaign = $event->getCampaign(); $log = [ 'bundle' => 'campaign', 'object' => 'campaign', 'objectId' => $campaign->deletedId, 'action' => 'delete', 'details' => ['name' => $campaign->getName()], 'ipAddress' => $this->ipLookupHelper->getIpAddressFromRequest(), ]; $this->auditLogModel->writeToLog($log); } }