我在rails app中使用devise进行身份验证,我的应用程序可以有很多子域名。 目前,它使用电子邮件作为身份验证,电子邮件对于整个应用程序应该是唯一的。
现在有什么方法可以将电子邮件地址的唯一性范围扩展到子域,而不是整个应用程序? 我试过了:
validates_uniqueness_of :email, :scope => :account_id
但没有奏效。它仍然在寻找整个应用程序的唯一性,而不是在注册新用户时寻找特定的子域名。
任何帮助都将受到高度赞赏。
答案 0 :(得分:7)
好的,我这样做了。
在devise.rb中将config.authentication_keys编辑为
config.authentication_keys = [ :login, :account_id ]
我还创建了隐藏字段,以便在登录表单中包含account_id
<%= f.hidden_field :account_id, :value => @account.id %>
此处@account持有与当前子域相关的帐户。
并在user.rb中添加了以下protected方法以覆盖find_for_database_authentication类方法
protected
def self.find_for_database_authentication(warden_conditions)
conditions = warden_conditions.dup
login = conditions.delete(:login)
account_id = conditions.delete(:account_id)
where(conditions).where(["lower(username) = :value OR lower(email) = :value", { :value => login.downcase }]).where("account_id = ?", account_id).first
end
如果有更好的解决方案,请随时评论一下... 干杯!
答案 1 :(得分:0)
如何保存用户,是否在尝试保存之前在用户模型上设置帐户?如果没有,那么你将确定一个零的account_id - 因此看起来没有范围。