前提・実現したいこと
deviseを利用し、sns認証機能を実装しているのですがログイン画面にgoogleでサインインのリンクを配置し、クリックしてgoogleアカウントを選択した時、サイトにアカウント登録がされていればそのままログイン、されていなければ新しくクリエイトされるようにしたいのですがgoogleから必要な情報をひっぱって来れていないようで何も入力されていない新規会員登録が表示されてしまいます。
発生している問題・エラーメッセージ
会員未登録の際googleアカウントの情報を利用して新規会員登録したいができない。
該当のソースコード
class Customer::OmniauthCallbacksController < Devise::OmniauthCallbacksController def google_oauth2 # You need to implement the method below in your model (e.g. app/models/.rb) @customer = Customer.from_omniauth(request.env['omniauth.auth']) if @customer.persisted? flash[:notice] = I18n.t 'devise.omniauth_callbacks.success', kind: 'Google' sign_in_and_redirect @customer, event: :authentication else session['devise.google_data'] = request.env['omniauth.auth'].except(:extra) # Removing extra as it can overflow some session stores redirect_to new_customer_registration_path end end # You should configure your model like this: # devise :omniauthable, omniauth_providers: [:twitter] # You should also create an action method in this controller like this: # def twitter # end # More info at: # https://github.com/heartcombo/devise#omniauth # GET|POST /resource/auth/twitter # def passthru # super # end # GET|POST /users/auth/twitter/callback # def failure # super # end # protected # The path used when OmniAuth fails # def after_omniauth_failure_path_for(scope) # super(scope) # end end
class Customer < ApplicationRecord # Include default devise modules. Others available are: # :confirmable, :lockable, :timeoutable, :trackable and :omniauthable devise :database_authenticatable, :registerable, :recoverable, :rememberable, :validatable, :omniauthable, omniauth_providers: [:google_oauth2] has_many :contributions, dependent: :destroy has_many :favorites, dependent: :destroy attachment :customer_image def self.from_omniauth(access_token) data = access_token.info customer = Customer.where(email: data['email']).first unless customer customer = Customer.create( last_name: data['family_name'], # last_name: data['last_name'], first_name: data['first_name'], email: data['email'], password: Devise.friendly_token[0,20] ) end customer end # def self.from_omniauth(auth) # where(provider: auth.provider, uid: auth.uid).first_or_create do |user| # user.email = auth.info.email # user.password = Devise.friendly_token[0,20] # user.name = auth.info.name # assuming the user model has a name # end # end def already_favorited?(contribution) favorites.where(contribution_id: contribution.id).exists? end def active_for_authentication? super && (!self.is_deleted) end validates :last_name, presence: true validates :first_name, presence: true validates :last_name_kana, presence: true validates :first_name_kana, presence: true end
試したこと
googleの認証画面は表示されるのでdevise.rbの記述等は問題ないと思います。
下のコードのself.from_omniauthメソッド内でunless以下の記述に問題があると思いますがどのように記述すればいいかがわからず教えていただきたいです。
補足情報(FW/ツールのバージョンなど)
rails 5.2.5
devise
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。