Class: Spree::OmniauthCallbacksController

Inherits:
Devise::OmniauthCallbacksController
  • Object
show all
Includes:
Core::ControllerHelpers::Auth, Core::ControllerHelpers::Common, Core::ControllerHelpers::Order, Core::ControllerHelpers::Store
Defined in:
app/controllers/spree/omniauth_callbacks_controller.rb

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.provides_callback_for(*providers) ⇒ Object



8
9
10
11
12
# File 'app/controllers/spree/omniauth_callbacks_controller.rb', line 8

def provides_callback_for(*providers)
  providers.each do |provider|
    define_method(provider) { omniauth_callback }
  end
end

Instance Method Details

#auth_hashObject



66
67
68
# File 'app/controllers/spree/omniauth_callbacks_controller.rb', line 66

def auth_hash
  request.env['omniauth.auth']
end

#failureObject



57
58
59
60
# File 'app/controllers/spree/omniauth_callbacks_controller.rb', line 57

def failure
  set_flash_message :alert, :failure, kind: failed_strategy.name.to_s.humanize, reason: failure_message
  redirect_to spree.
end

#omniauth_callbackObject



19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# File 'app/controllers/spree/omniauth_callbacks_controller.rb', line 19

def omniauth_callback
  if request.env['omniauth.error'].present?
    flash[:error] = I18n.t('devise.omniauth_callbacks.failure', kind: auth_hash['provider'], reason: Spree.t(:user_was_not_valid))
    redirect_back_or_default(root_url)
    return
  end

  authentication = Spree::UserAuthentication.find_by_provider_and_uid(auth_hash['provider'], auth_hash['uid'])

  if authentication.present? and authentication.try(:user).present?
    flash[:notice] = I18n.t('devise.omniauth_callbacks.success', kind: auth_hash['provider'])
     :spree_user, authentication.user
  elsif spree_current_user
    spree_current_user.apply_omniauth(auth_hash)
    spree_current_user.save!
    flash[:notice] = I18n.t('devise.sessions.signed_in')
    redirect_back_or_default()
  else
    user = Spree.user_class.find_by_email(auth_hash['info']['email']) || Spree.user_class.new
    user.apply_omniauth(auth_hash)
    if user.save
      flash[:notice] = I18n.t('devise.omniauth_callbacks.success', kind: auth_hash['provider'])
       :spree_user, user
    else
      session[:omniauth] = auth_hash.except('extra')
      flash[:notice] = Spree.t(:one_more_step, kind: auth_hash['provider'].capitalize)
      redirect_to new_spree_user_registration_url
      return
    end
  end

  if current_order
    user = spree_current_user || authentication.user
    current_order.associate_user!(user)
    session[:guest_token] = nil
  end
end

#passthruObject



62
63
64
# File 'app/controllers/spree/omniauth_callbacks_controller.rb', line 62

def passthru
  render file: "#{Rails.root}/public/404", formats: [:html], status: 404, layout: false
end