Determine if path exists as route in Rails controller

放肆的年华 提交于 2019-12-01 21:06:50
swrobel

For Rails 3 the call is

Rails.application.routes.recognize_path

Instead of

ActionController::Routing::Routes.recognize_path

Example:

def path_exists?(path)
  begin
    Rails.application.routes.recognize_path(path)
  rescue
    return false
  end

  true
end

SOLUTION:

@related_page_path = '/' + @page.path
begin
  ActionController::Routing::Routes.recognize_path(@related_page_path, :method => :get)
rescue
  @related_page_path = nil
end

You could possibly dynamically generate the route helper method and see if it exists (using respond_to? or even just catching any thrown exception).

If you want to connect an arbitrary path the a controller and and action, you can use map.connect

map.connect '/any/random/string/of/stuff', :controller => 'items', :action => 'new'

You can even call out embedded param designations in the path:

map.connect '/seeking/room/for/[:number_of_nights]/nights', :controller => 'rooms', :action => 'index'

with the above you will receive the value represented in the url as part of the params hash in the controller.

I recently came across an issue where I had to check if a path existed given an array of possible paths. I had tried the above suggestion Rails.application.routes.recognize_path, but it's depericated as of rails 4.2.1. I used the following instead:

Rails.application.routes.named_routes.routes.any?{ |key, value| key.to_s === "new_article" }
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!