I need to know the current route in a filter in Rails. How can I find out what it is?
I'm doing REST resources, and see no named routes.
|
I need to know the current route in a filter in Rails. How can I find out what it is? I'm doing REST resources, and see no named routes. |
|||||
|
|
To find out URI:
To find out the route i.e. controller, action and params:
|
|||||||||||||||
|
|
If you are trying to special case something in a view, you can use current_page as in:
|
|||||||
|
|
In rails 3 you can access the Rack::Mount::RouteSet object via the Rails.application.routes object, then call recognize on it directly
that gets the first (best) match, the following block form loops over the matching routes:
once you have the route, you can get the route name via route.name. If you need to get the route name for a particular URL, not the current request path, then you'll need to mock up a fake request object to pass down to rack, check out ActionController::Routing::Routes.recognize_path to see how they're doing it. |
||||
|
|
|
You can do this
It works for me in rails 3.1.0.rc4 |
|||
|
|
|
I'll assume you mean the URI:
As per your comment below, if you need the name of the controller, you can simply do this:
|
||||
|
|
Would you also need the parameters: current_fullpath = request.env['ORIGINAL_FULLPATH'] # If you are browsing http://example.com/my/test/path?param_n=N # then current_fullpath will point to "/my/test/path?param_n=N" And remember you can always call |
|||
|
|
|
You can see all routes via rake:routes (this might help you). |
|||||
|