Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am wondering if it is possible to define routes in FOSRestBundle methods that specify the format with something other than a "dot" preceding them.

For example, suppose I'd like the following to work:

 http://somesite.com/api/user/20        (renders in the default/fallback format)
 http://somesite.com/api/user/20/json   (renders in JSON)
 http://somesite.com/api/user/20/xml    (renders in XML)

If I attempt to define a route like:

/**
 * @Get("/user/{id}/{_format}
 */
public function getUserAction($id)
{
  // do stuff
}

I get this:

Route pattern "/api/users/{maximum}/{_format}.{_format}" cannot reference variable name "_format" more than once.

That made me realize that it -- and by it, I assume we are talking FOSRestBundle and not Symfony2 by default -- is automatically adding the ".{_format}" to the end of whatever route I define. I was surprised!

So right now, in my earlier example, it works as follows:

 http://somesite.com/api/user/20        (renders in the default/fallback format)
 http://somesite.com/api/user/20.json   (renders in JSON)
 http://somesite.com/api/user/20.xml    (renders in XML)

A small difference to be sure, but, I am trying to port over a legacy app that uses this syntax. Is what I am trying to do possible? If so, how can I disable that automatic addition of ".{_format}" to each route?

Thanks!

share|improve this question
1  
I think that this is currently not possible, see github.com/FriendsOfSymfony/FOSRestBundle/issues/333 – AdrienBrault Dec 8 '12 at 14:47
Thanks for the link -- that at least shows me where to modify the bundle code to make it work. Perhaps it is time for me to commit a patch! :) – futureal Dec 8 '12 at 17:47
Johannes did it simply like that : github.com/schmittjoh/FOSRestBundle/commit/… – AdrienBrault Dec 9 '12 at 10:45

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.