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



10
11
12
13
14
# File 'app/controllers/spree/omniauth_callbacks_controller.rb', line 10

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

Instance Method Details

#auth_hashObject



68
69
70
# File 'app/controllers/spree/omniauth_callbacks_controller.rb', line 68

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

#failureObject



59
60
61
62
# File 'app/controllers/spree/omniauth_callbacks_controller.rb', line 59

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

#omniauth_callbackObject



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
56
57
# File 'app/controllers/spree/omniauth_callbacks_controller.rb', line 21

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

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

  if authentication.present? && 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] = I18n.t('spree.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



64
65
66
# File 'app/controllers/spree/omniauth_callbacks_controller.rb', line 64

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