devise と omniauth を使用して、ユーザーが Twitter アカウントやローカル ログイン資格情報を使用して登録/ログインできるようにする rais 3 アプリがあります。登録とログインはすべて正常に機能します。問題は、ユーザーが最初にローカル パスワードを設定せずに Twitter 認証を破棄することを選択した場合に発生します。ユーザーが承認を破棄した場合、将来のログイン用のパスワードを選択できるように、それらを new_password_path にルーティングしたいと思います。
コントローラーのコードは次のとおりです。
class AuthenticationsController < ApplicationController
before_filter :authenticate_user!, :except => [:create, :failure]
def create
omniauth = request.env["omniauth.auth"]
authentication = Authentication.find_by_provider_and_uid(omniauth['provider'], omniauth['uid'])
if authentication #existing user is logging-in with existing authentication service
flash[:notice] = "Signed in successfully."
set_home_location_cookies(authentication.user, authentication.user.home_lat, authentication.user.home_lng)
sign_in(:user, authentication.user)
redirect_to root_path
elsif current_user #existing user who is already logged-in is creating a new authentication service for future use
current_user.authentications.create!(:provider => omniauth['provider'], :uid => omniauth['uid'], :token => omniauth['credentials']['token'])
current_user.update_posting_preferences(omniauth['provider'])
flash[:notice] = "Successfully linked to your #{omniauth['provider'].titleize} account."
redirect_to root_path
else #new user is creating a new authentication service and logging in
user = User.new
user.apply_omniauth(omniauth)
if user.save
flash[:notice] = "Signed in successfully."
sign_in(:user, user)
redirect_to root_path
else
session[:omniauth] = omniauth.except('extra')
session[:user_message] = {:success => false, :message => "userSaveError"}
redirect_to new_user_registration_url
end
end
end
def failure
flash[:alert] = "Could not authorize you from your social service."
redirect_to root_path
end
def destroy
@authentication = current_user.authentications.find(params[:id])
current_user.update_posting_preferences(@authentication.provider)
@authentication.destroy
flash[:notice] = "You have successfully destroyed your link to your #{@authentication.provider.titleize} account."
if current_user.authentications.empty? && current_user.encrypted_password.empty?
sign_out
flash[:alert] = "Alert: Your account does not currently have a password for account authorization. You are in danger of losing your account unless you create a new password by using this form."
redirect_to new_password_path(current_user) and return
else
redirect_back_or(root_path)
end
end
redirect_to new_password_path(current_user) and return
コードは、コマンド
によってトリガーされた「nil の有効なマッピングが見つかりませんでした」というエラーになります。
この問題を解決するための助けをいただければ幸いです。
ありがとう!