2012-01-30 20:39:34 +00:00
|
|
|
# -*- encoding : utf-8 -*-
|
2011-10-11 21:56:51 +01:00
|
|
|
class Users::OmniauthCallbacksController < Devise::OmniauthCallbacksController
|
2013-03-25 23:13:15 +00:00
|
|
|
require 'uuidtools'
|
|
|
|
|
|
|
|
# def facebook
|
|
|
|
# generic
|
|
|
|
# end
|
|
|
|
|
|
|
|
def facebook
|
|
|
|
oauthorize 'Facebook'
|
|
|
|
end
|
|
|
|
|
|
|
|
def google_oauth2
|
|
|
|
oauthorize 'google_oauth2'
|
|
|
|
end
|
|
|
|
|
|
|
|
def github
|
|
|
|
oauthorize 'GitHub'
|
2011-10-11 21:56:51 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def passthru
|
|
|
|
render :file => "#{Rails.root}/public/404.html", :status => 404, :layout => false
|
|
|
|
end
|
2013-03-25 23:13:15 +00:00
|
|
|
|
|
|
|
private
|
2011-10-11 21:56:51 +01:00
|
|
|
|
2013-03-25 23:13:15 +00:00
|
|
|
def oauthorize(kind)
|
|
|
|
provider = kind.downcase
|
|
|
|
@user = find_for_ouath(env["omniauth.auth"], current_user)
|
|
|
|
if @user.persisted?
|
|
|
|
flash[:notice] = I18n.t "devise.omniauth_callbacks.success", :kind => action_name.classify
|
|
|
|
sign_in_and_redirect @user, :event => :authentication
|
|
|
|
else
|
|
|
|
session["devise.#{provider}_data"] = env["omniauth.auth"]
|
|
|
|
redirect_to new_user_registration_url
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def find_for_ouath(auth, resource=nil)
|
|
|
|
provider, uid = auth['provider'], auth['uid']
|
|
|
|
authentication = Authentication.find_or_initialize_by_provider_and_uid(provider, uid)
|
2011-10-11 21:56:51 +01:00
|
|
|
if authentication.new_record?
|
2013-03-25 23:13:15 +00:00
|
|
|
unless user_signed_in? # Register new user from session
|
|
|
|
case provider
|
|
|
|
when 'facebook'
|
|
|
|
name = auth['extra']['raw_info']['name']
|
|
|
|
email = auth['info']['email']
|
|
|
|
when 'google_oauth2'
|
|
|
|
name = auth['info']['nickname']
|
|
|
|
email = auth['info']['email']
|
|
|
|
when 'github'
|
|
|
|
|
|
|
|
else
|
|
|
|
raise 'Provider #{provider} not handled'
|
|
|
|
end
|
|
|
|
user = User.create(
|
|
|
|
:uname => "#{provider}-#{uid}",
|
|
|
|
:name => name,
|
|
|
|
:email => email,
|
|
|
|
:password => Devise.friendly_token[0,20]
|
|
|
|
)
|
2011-10-11 21:56:51 +01:00
|
|
|
end
|
2013-03-25 23:13:15 +00:00
|
|
|
authentication.user = current_user
|
|
|
|
authentication.save
|
2011-10-11 21:56:51 +01:00
|
|
|
end
|
2013-03-25 23:13:15 +00:00
|
|
|
return user
|
2011-10-11 21:56:51 +01:00
|
|
|
end
|
2013-03-25 23:13:15 +00:00
|
|
|
|
|
|
|
end
|