解決したいこと
画像投稿アプリを作成しておりまして、ログインしていないユーザーが、URLの直接入力にて投稿編集ページに
飛べないようにauthenticate_user!メソッドを使用したのですが、trainerとcliantの2パターンでユーザー
登録を分けているため、例えばcliantがログインしている場合はauthenticate_trainer!が働いてしまい、
うまくいきません。
deviseで複数モデル管理をしている場合のauthenticate_user!メソッドの記述方法についてご教示
いただきたいです。
該当するソースコード
application.controller
1class ApplicationController < ActionController::Base 2 before_action :basic_auth 3 before_action :authenticate_trainer!, except: [:index, :show] 4 before_action :authenticate_cliant!, except: [:index, :show] 5 6 def after_sign_in_path_for(resource) 7 posts_path(resource) 8 end 9 10 def basic_auth 11 authenticate_or_request_with_http_basic do |username, password| 12 username == ENV["BASIC_AUTH_USER"] && password == ENV["BASIC_AUTH_PASSWORD"] 13 end 14 end 15end
自分で試したこと
application.controller
1class ApplicationController < ActionController::Base 2 before_action :basic_auth 3 before_action :authenticate_any! 4 5 def authenticate_any! 6 if cliant_signed_in? 7 true 8 else 9 authenticate_trainer! 10 end 11 end 12 13 def after_sign_in_path_for(resource) 14 posts_path(resource) 15 end 16 17 def basic_auth 18 authenticate_or_request_with_http_basic do |username, password| 19 username == ENV["BASIC_AUTH_USER"] && password == ENV["BASIC_AUTH_PASSWORD"] 20 end 21 end 22end
上記のように自分でメソッドを作って記述もしてみましたがうまくいかず、、、
アドバイスお願い致します。
非標準のDeviseの使い方ですね。十分解決可能だと思います。しかし、解決策は、具体的にお使いのRailsアプリでどのように(Deviseを使った)認証を実装しているかに大いに依存します。現在の質問では、情報が不足しすぎています。
`authenticate_trainer`というメソッドを自分で実装されていて、それによって、trainerをログインさせるように実装しているのですね? もしユーザーがログインしていない場合は、何が呼ばれるべきですか? `authenticate_trainer`? 逆に、ユーザーがすでにログインしている場合は、そのユーザーがclient/trainerのどちらであるかはどのように判定できますか?
あなたの回答
tips
プレビュー