嗨,我来这里遇到了类似的问题,我遇到了这个解决方案,也许我会帮助下一个。在我的情况下,我有两个设计模型,我以不同的方式使用omniauth,我的第一个模型是可以通过普通设计注册或omniauth登录的用户,第二个是艺术家,他可以通过常规注册唱歌表格,但我仍然需要omniauth来验证来自twitter的值,验证字段(对twitters个人资料的小检查意味着如果一个著名的用户真的是那个人)。
所以当我来的时候,我不能有两个设计的omniauthable模型,我只是决定对两者都使用相同的omniauth。
class Users::OmniauthCallbacksController < Devise::OmniauthCallbacksController
def all
if artist_signed_in? and session["devise.authorize"] == current_artist.email
session["devise.authorize"] = nil
if current_artist.artist_profile.update_from_omniauth(request.env["omniauth.auth"])
if current_artist.artist_profile.verified
flash[:notice] = "You were verified"
else
flash[:alert] = "Twitter go well but you aren't verified there"
end
redirect_to edit_artist_profile_path(current_artist.artist_profile)
else
flash[:error] = "We can't connect with #{request.env["omniauth.auth"].provider.titleize.split(" ").first}"
redirect_to edit_artist_profile_path(current_artist.artist_profile)
end
elsif !user_signed_in?
user = User.from_omniauth(request.env["omniauth.auth"])
if user.persisted?
flash[:notice] = I18n.t "devise.omniauth_callbacks.success", :kind => user.provider.titleize.split(" ").first
user.user_profile.from_omniauth(request.env["omniauth.auth"])
sign_in_and_redirect user, :event => :authentication
else
session["count_errors"] = 0 if session["devise.user_attributes"] == nil
session["devise.user_attributes"] = user.attributes
redirect_to new_user_registration_url
end
else
flash[:notice] = "You are already log in #{current_user.email}"
redirect_to root_path
end
end
def after_omniauth_failure_path_for(scope)
if artist_signed_in? and session["devise.authorize"] == current_artist.email
session["devise.authorize"] = nil
edit_artist_profile_path(current_artist.artist_profile)
else
super
end
end
alias_method :twitter, :all
end
对于第一种情况,普通用户,我们有
elsif !user_signed_in?
它将执行正常过程,一切都像每个指南一样,但是对于第二种情况(经过验证的字段和艺术家资料),我发送了一个带有一些随机值的小会话
session["devise.authorize"]
我用我的艺术家资料控制器中的新路线调用链接
<%= link_to "Verify with Twitter", artist_profiles_integrate_twitter_path %>
谁加载会话并重定向到用户omniauth 路由
class ArtistProfilesController < ApplicationController
...
def integrate_twitter
session["devise.authorize"] = current_artist.email
redirect_to user_omniauth_authorize_path(:twitter)
end
end
然后我在每个类中定义了几个使用omniauth的方法,第一个创建用户(基于railscast剧集“devise-omniauth-revised”),第二个只是更新我的艺术家档案模型上的字段,你应该覆盖after_omniauth_failure_path_for (范围),这只是返回登录失败的路径,使用与更改后错误路径相同的技术(例如,当与 twitter 连接失败时,它将重定向到用户注册路径,并且会话将围绕一段时间)我们可以有正常的行为并在所有情况下清理会话。
希望它有帮助,问候!