SSO using Amazon added

This commit is contained in:
Christoph Haas 2017-04-06 20:18:57 +02:00
parent 194a990656
commit 909be1c8ae
5 changed files with 40 additions and 11 deletions

View file

@ -1,9 +1,9 @@
class Users::OmniauthCallbacksController < Devise::OmniauthCallbacksController
def passthru
raise
send(params[:provider]) if providers.include?(params[:provider])
end
# def passthru
# raise
# send(params[:provider]) if providers.include?(params[:provider])
# end
def launchpad
# You need to implement the method below in your model (e.g. app/models/user.rb)
@ -32,13 +32,26 @@ class Users::OmniauthCallbacksController < Devise::OmniauthCallbacksController
end
end
def failure
redirect_to root_path
def amazon
# 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"
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
private
# def failure
# redirect_to root_path
# end
def providers
["twitter", "google_oauth2"]
end
# private
#
# def providers
# ["twitter", "google_oauth2", "launchpad", "amazon"]
# end
end