I need to know the current route in a filter in rails.. how can I find out?

I'm doing REST resources, and no named routes

link|improve this question

58% accept rate
2  
What are you trying to accomplish with this? When you say "route" do you mean "URI"? – jdl Jul 30 '09 at 1:14
feedback

6 Answers

up vote 40 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
link|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
12  
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
feedback

Like jdl asks above, why do you want to know? If you are trying to special case something in a view, you can use current_page as in:

<% if current_page?(users_path) %>
link|improve this answer
4  
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
feedback

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.

link|improve this answer
feedback

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
link|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
feedback

You can do this

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

It works for me in rails 3.1.0.rc4

link|improve this answer
feedback

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

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

Your Answer

 
or
required, but never shown

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