Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
2  
What are you trying to accomplish with this? When you say "route" do you mean "URI"? – jdl Jul 30 '09 at 1:14

7 Answers

up vote 59 down vote accepted

To find out URI:

current_uri = request.env['PATH_INFO']
# If you are browsing http://example.com/my/test/path, 
# then above line will yield current_uri as "/my/test/path"

To find out the route i.e. controller, action and params:

path = ActionController::Routing::Routes.recognize_path "/your/path/here/"
controller = path[:controller]
action = path[:action]
# You will most certainly know that params are available in 'params' hash
share|improve this answer
1  
Would you happen to know if this is the same/right way to do it in Rails 3? I'm sure it's still accessible, but I just want to be sure that I'm adhering to the latest conventions. – John Oct 29 '10 at 20:46
16  
The current controller and action are always available in params[:controller] and params[:action]. However, outside of it, if you want to recognize the route, this API is not available anymore. It has now shifted to ActionDispatch::Routing and I haven't tried out the recognize_path on it yet. – Swanand Oct 30 '10 at 7:53
1  
It’s better to use request.path for finding the current path. – Daniel Brockman Aug 21 '12 at 19:02
You could also call request.env['ORIGINAL_FULLPATH'] to include the possible parameters in the path, see my answer below. – Darmen Feb 18 at 16:46

If you are trying to special case something in a view, you can use current_page as in:

<% if current_page?(users_path) %>
share|improve this answer
7  
Note that you can also use current_page? with named routes: current_page?(users_path) – tothemario Sep 9 '11 at 12:13
Nice tothemario. I didn't know that. I'm modifying the answer. – IAmNaN Dec 4 '11 at 19:33

In rails 3 you can access the Rack::Mount::RouteSet object via the Rails.application.routes object, then call recognize on it directly

route, match, params = Rails.application.routes.set.recognize(controller.request)

that gets the first (best) match, the following block form loops over the matching routes:

Rails.application.routes.set.recognize(controller.request) do |r, m, p|
  ... do something here ...
end

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.

share|improve this answer

You can do this

Rails.application.routes.recognize_path "/your/path"

It works for me in rails 3.1.0.rc4

share|improve this answer

I'll assume you mean the URI:

class BankController < ActionController::Base
  before_filter :pre_process 

  def index
    # do something
  end

  private
    def pre_process
      logger.debug("The URL" + request.url)
    end
end

As per your comment below, if you need the name of the controller, you can simply do this:

  private
    def pre_process
      self.controller_name        #  Will return "order"
      self.controller_class_name  # Will return "OrderController"
    end
share|improve this answer
yes I did that, but I hoped in a better way. What I need is to know which controller has been called, but I have pretty complicated nested resources.. request.path_parameters('controller') doesn't seem to work properly to me. – luca Jul 30 '09 at 8:12

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 <%= debug request.env %> in a view to see all the available options.

share|improve this answer

You can see all routes via rake:routes (this might help you).

share|improve this answer
1  
rails 3.0 --> $ rake routes – Intentss Aug 12 '10 at 0:00

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.