使用Rails 5,我试图实现Omniauth Facebook和Clearance以进行用户身份验证。
注意:我的代码与Gist完全相同
我大部分时间都在工作。然而,当使用Facebook注册时(即用户从未访问过该网站),Rails会抛出一个错误,称为Validation failed: User must exist
。我已经将问题缩小到Gist:中的这个块
def self.create_with_omniauth(auth_hash)
create! do |auth|
auth.provider = auth_hash["provider"]
auth.uid = auth_hash["uid"]
auth.token = auth_hash["credentials"]["token"]
end
end
当它达到这个值时,它尝试在没有auth.user
对象的情况下create!
,但失败了。以下是来自sessions
控制器的相关代码:
#-- Spectically, the line below
authentication = Authentication.find_by_provider_and_uid(auth_hash["provider"], auth_hash["uid"]) || Authentication.create_with_omniauth(auth_hash)
#-- More code, for context
if authentication.user
user = authentication.user
authentication.update_token(auth_hash)
@next = root_url
@notice = "Signed in!"
else
user = User.create_with_auth_and_hash(authentication,auth_hash)
@next = edit_user_path(user)
@notice = "User created - confirm or edit details..."
end
Gist中我唯一遗漏的是他的Authentications
表的结构。利用我发现的上下文线索,我创建了这个表:
def change
create_table :authentications do |t|
t.string :provider
t.string :uid
t.string :token
t.references :user, foreign_key: true
t.timestamps
end
end
如果需要更多信息,我将提供我所能提供的
在Rails中,默认情况下需要5个belongs_tohttp://blog.bigbinary.com/2016/02/15/rails-5-makes-belong-to-association-required-by-default.html,所以如果没有它,你会得到一个验证错误。
在本例中,您试图在没有User
的情况下创建Authentication
对象,这就是为什么您会得到"验证失败:用户必须存在"。
如果您真的想在没有User的情况下创建Authentication对象,这应该可以:
class Authentication < ActiveRecord::Base
belongs_to :user, optional: true
end