![]() 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/AssetBundle/EventListener/ |
<?php namespace Mautic\AssetBundle\EventListener; use Mautic\AssetBundle\AssetEvents; use Mautic\AssetBundle\Event as Events; use Mautic\CoreBundle\Helper\IpLookupHelper; use Mautic\CoreBundle\Model\AuditLogModel; use Symfony\Component\EventDispatcher\EventSubscriberInterface; class AssetSubscriber implements EventSubscriberInterface { public function __construct( private IpLookupHelper $ipLookupHelper, private AuditLogModel $auditLogModel ) { } public static function getSubscribedEvents(): array { return [ AssetEvents::ASSET_POST_SAVE => ['onAssetPostSave', 0], AssetEvents::ASSET_POST_DELETE => ['onAssetDelete', 0], ]; } /** * Add an entry to the audit log. */ public function onAssetPostSave(Events\AssetEvent $event): void { $asset = $event->getAsset(); if ($details = $event->getChanges()) { $log = [ 'bundle' => 'asset', 'object' => 'asset', 'objectId' => $asset->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 onAssetDelete(Events\AssetEvent $event): void { $asset = $event->getAsset(); $log = [ 'bundle' => 'asset', 'object' => 'asset', 'objectId' => $asset->deletedId, 'action' => 'delete', 'details' => ['name' => $asset->getTitle()], 'ipAddress' => $this->ipLookupHelper->getIpAddressFromRequest(), ]; $this->auditLogModel->writeToLog($log); // In case of batch delete, this method call remove the uploaded file $asset->removeUpload(); } }