EventProxyService
is a service class that provides functionality to wrap an object's instance with pre
and post
method interceptors. These interceptors are respectively triggered right before or after the invocation of the specified methods.
When an interceptor is triggered, an event is dispatched using the EventDispatcher
. The event name is composed of the lower case fully-qualified class name of the original object (with backslashes replaced by dots), the lower case method name, and the prefix (.pre
or .post
).
For example, for a pre-interceptor on the save
method of a class named App\Entity\User
, the event name will be app.entity.user.save.pre
.
This method creates a proxy of the given instance and binds pre
and post
method interceptors to it.
public function getEventDispatcherProxy(
object $instance,
array $preInterceptors = [],
array $postInterceptors = []
): object;
Parameters:
$instance
: The object instance that needs to be proxied.$preInterceptors
(optional): An array of method names that should be intercepted before their invocation.$postInterceptors
(optional): An array of method names that should be intercepted after their invocation.$customEventName
(optional): A custom event name that will be used in addition to the default one. (.pre
and.post
will be added)
Returns:
- A proxy of the given
$instance
.
:::info
Final classes can't be proxied.
:::
services:
# ... [other service definitions]
App\EventListener\InterceptorListener:
tags:
- { name: kernel.event_listener, event: 'app.entity.user.save.pre', method: 'onUserSavePre' }
- { name: kernel.event_listener, event: 'app.entity.user.save.post', method: 'onUserSavePost' }
To respond to the dispatched events when interceptors are triggered, you can set up listeners. Here's an example of a listener for the pre
interceptor of the save
method on the App\Entity\User
class:
namespace App\EventListener;
use Symfony\Component\EventDispatcher\GenericEvent;
class InterceptorListener
{
public function onUserSavePre(GenericEvent $event)
{
/** @var User $userInstance */
$userInstance = $event->getSubject();
// Your custom logic here. For instance:
// Logging, modifying data before save, etc.
}
public function onUserSavePost(GenericEvent $event)
{
/**
* @var User $userInstance
* get the original object instance.
*/
$userInstance = $event->getSubject();
/**
* get the called method
* e.g. 'save'
*/
$calledMethod = $event->getArgument('method');
/**
* in a post interceptor you can get the return value of the original method.
* E.g use it for caching.
*/
$returnValue = $event->getArgument('returnValue');
/**
* get the used parameter as associative array
* E.g. ['id' => 12]
*/
$paramters = $event->getArgument('params')
/**
* set the respone that will be returned by the proxy.
* return false if response is locked.
* if used in a pre in terceptor the proxy will return the response of the pre interceptor.
* the original method will not be called. E.g retun cache value.
*
* if used in a post interceptor the proxy will return the response of the post interceptor.
*/
$event->setResponse($userInstance);
/**
* disable future setting of the response.
*/
$event->lockResponse();
/**
* bool if the response is locked.
*/
$this->isResponseLocked();
// Your custom logic here. For instance:
// Logging, modifying data after save, etc.
}
}
use Pimcore\Bundle\StaticResolverBundle\Proxy\Service\EventProxyService;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use App\Entity\User;
class YourController extends AbstractController
{
public function someAction(EventProxyService $eventProxyService)
{
$originalObject = new User::getById('12');
$proxyObject = $eventProxyService->getEventDispatcherProxy(
$originalObject,
['save'], // Assuming 'save' is the method we want to pre-intercept
['save'] // Assuming 'save' is the method we want to post-intercept
);
$proxyObject->setLastname('Doe');
$proxyObject->save(); // This will trigger the interceptor(s) for the save method
// Your remaining code
}
}
:::info
When the pre-interceptor for the save
method is triggered, the onUserSavePre
method in the InterceptorListener
class will be executed, and you can handle the event as needed.
:::