Skip to content

Instantly share code, notes, and snippets.

@i8ramin
Created October 16, 2010 22:24
Show Gist options
  • Save i8ramin/630342 to your computer and use it in GitHub Desktop.
Save i8ramin/630342 to your computer and use it in GitHub Desktop.
AuthenticationsController
class AuthenticationsController < ApplicationController
def index
@authentications = current_user.authentications if current_user
end
def create
omniauth = request.env["omniauth.auth"]
authentication = Authentication.find_by_provider_and_uid(omniauth['provider'], omniauth['uid'])
if authentication
flash[:notice] = "Signed in successfully."
# use devise helper method to sign in user and redirect
sign_in_and_redirect(:user, authentication.user)
elsif current_user
current_user.authentications.create!(:provider => omniauth['provider'], :uid => omniauth['uid'])
flash[:notice] = "Authentication successful."
redirect_to authentications_url
else
user = User.new
user.apply_omniauth(omniauth)
if user.save
flash[:notice] = "Signed in successfully."
sign_in_and_redirect(:user, user)
else
session[:omniauth] = omniauth.except('extra') # exclude the extra stuff - won't fit in cookie
redirect_to new_user_registration_url
end
end
end
def destroy
@authentication = current_user.authentications.find(params[:id])
@authentication.destroy
flash[:notice] = "Successfully destroyed authentication."
redirect_to authentications_url
end
def failure
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment