OpenID auth using Launchpad and Stackexchange works

This commit is contained in:
Christoph Haas 2017-04-16 23:58:08 +02:00
parent 2c135e1ca0
commit 4bad4d3a36
7 changed files with 38 additions and 86 deletions

View file

@ -1,45 +1,24 @@
class Users::OmniauthCallbacksController < Devise::OmniauthCallbacksController
# def passthru
# raise
# send(params[:provider]) if providers.include?(params[:provider])
# end
# Workaround for https://github.com/plataformatec/devise/issues/2432
skip_before_filter :verify_authenticity_token
def launchpad
# You need to implement the method below in your model (e.g. app/models/user.rb)
@user = User.from_omniauth(request.env["omniauth.auth"])
if @user.persisted?
flash[:notice] = I18n.t "devise.omniauth_callbacks.success", :kind => "Launchpad"
sign_in_and_redirect @user, :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_user_session_url, alert: @user.errors.full_messages.join("\n")
end
login_via 'Launchpad'
end
def google_oauth2
# You need to implement the method below in your model (e.g. app/models/user.rb)
@user = User.from_omniauth(request.env["omniauth.auth"])
if @user.persisted?
flash[:notice] = I18n.t "devise.omniauth_callbacks.success", :kind => "Google"
sign_in_and_redirect @user, :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_user_session_url, alert: @user.errors.full_messages.join("\n")
end
def stackexchange
login_via 'StackExchange'
end
def amazon
def login_via(provider_name)
# You need to implement the method below in your model (e.g. app/models/user.rb)
@user = User.from_omniauth(request.env["omniauth.auth"])
if @user.persisted?
flash[:notice] = I18n.t "devise.omniauth_callbacks.success", :kind => "Amazon"
flash[:notice] = I18n.t "devise.omniauth_callbacks.success", :kind => provider_name
sign_in_and_redirect @user, :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_user_session_url, alert: @user.errors.full_messages.join("\n")
end
end
@ -48,9 +27,4 @@ class Users::OmniauthCallbacksController < Devise::OmniauthCallbacksController
redirect_to root_path
end
private
# def providers
# ["twitter", "google_oauth2", "launchpad", "amazon"]
# end
end