如何确保用户名不会与现有路由冲突?

时间:2012-03-28 17:53:57

标签: ruby-on-rails-3 routing

所以我想在我的网站上添加网址,例如http://foobar.com/hadees,这些网址会转到某个人的个人资料中。但是,在注册用户名时,我如何确保他们不会选择与我现有路由冲突的内容?

我猜我需要获得现有路线的清单,但我不知道该怎么做。

2 个答案:

答案 0 :(得分:10)

简短的谷歌搜索给了我:

http://henrik.nyh.se/2008/10/validating-slugs-against-existing-routes-in-rails

在rails 3中,该方法已移至Rails.application.routes.recognize_path

所以我总结一下:

class User < ActiveRecord::Base
  validates_format_of :name, :with => /\A[\w-]+\Z/
  validates_uniqueness_of :name
  validate :name_is_not_a_route

protected

  def name_is_not_a_route
    path = Rails.application.routes.recognize_path("/#{name}", :method => :get) rescue nil
    errors.add(:name, "conflicts with existing path (/#{name})") if path && !path[:username]
  end

end

答案 1 :(得分:2)

好问题。通过一点修修补补,我发现您可以通过以下方式获取应用中的路线:

Rails.application.routes.routes.collect{|r| r.path}