0

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 の有効なマッピングが見つかりませんでした」というエラーになります。ここに画像の説明を入力

この問題を解決するための助けをいただければ幸いです。

ありがとう!

4

1 に答える 1

1

わかった。私はそれを認めます。舞台裏で何が起こっているのかを学ぶためにデバイスルーティングを勉強せずに、チュートリアルから認証コントローラーを実装しました。昨夜、私はドキュメントを確認し、自分の問題を理解しました。面白いのは、上記のルーチンは古いバージョンのデバイスでは機能しましたが、デバイス1.5.3では機能しないことです。

破棄アクションでは、current_userをサインアウトしてから、「current_user」をパラメーターとして送信するnew_password_pathにルーティングしようとします。当然のことながら、その時点で「current_user」は無効になっています。そのため、「nilの有効なマッピングが見つかりませんでした」というエラーが発生します。これが私の簡単な修正です:

  def destroy
    @authentication = current_user.authentications.find(params[:id])
    user = current_user
    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(user) and return
    else
      redirect_back_or(root_path)
    end
  end
于 2012-04-26T16:21:39.673 に答える