vote up 1 vote down star
1

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

flag

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

4 Answers

vote up 1 vote down check

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|flag
vote up 0 vote down

You can get most any data pertaining to the current path/route via the request object. This is accessible in your controller. You can read more about it here.

Take note of the "path_parameters" attribute, which returns a hash that contains the controller and the action that was requested.

link|flag
vote up 0 vote down

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

link|flag
vote up 1 vote down

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|flag
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 at 8:12

Your Answer

Get an OpenID
or

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