Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to get request type (master/sub) in Symfony2 controller?

Tags:

symfony

Is there possible get request type in controller? How?

like image 932
Koc Avatar asked Jul 17 '11 10:07

Koc


2 Answers

To detect if the request is a master or not requires the use of the RequestStack, which should be injected into your controller. The request stack has 3 useful methods

getCurrentRequest();
getMasterRequest();
getParentRequest();

The getParentRequest() will always return null if the current request is the master.

like image 119
Twifty Avatar answered Dec 03 '22 08:12

Twifty


I was looking for this myself, and it seems it is just passed around, so there doesn't seem to be one single place that knows what it is.

My thought for solving this would be to create a simple kernel.request listener that just adds an attribute to the request. Rough (un-tested) code below:

public function onKernelRequest(GetResponseEvent $event)
{
    $event->getRequest()->attributes->set('_request_type', $event->getRequestType());
}

Then in the controller you should be able to do:

$requestType = $this->getRequest()->attributes->get('_request_type');

Again this is untested. You would need to write out the full listener class and add it to the services config file, but other than that I think this will work.

like image 26
KSolo Avatar answered Dec 03 '22 09:12

KSolo