Class: Contour::AuthenticationsController

Inherits:
ApplicationController
  • Object
show all
Defined in:
app/controllers/contour/authentications_controller.rb

Instance Method Summary collapse

Instance Method Details

#createObject



14
15
16
17
18
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
# File 'app/controllers/contour/authentications_controller.rb', line 14

def create
  omniauth = request.env["omniauth.auth"]
  if omniauth
    omniauth['uid'] = omniauth['info']['email'] if omniauth['provider'] == 'google_apps' and omniauth['info']
    authentication = Authentication.find_by_provider_and_uid(omniauth['provider'], omniauth['uid'])
    omniauth['info']['email'] = omniauth['extra']['raw_info']['email'] if omniauth['info'] and omniauth['info']['email'].blank? and omniauth['extra'] and omniauth['extra']['raw_info']
    if authentication
      logger.info "Existing authentication found."
      session["user_return_to"] = request.env["action_dispatch.request.unsigned_session_cookie"]["user_return_to"] if request.env and request.env["action_dispatch.request.unsigned_session_cookie"] and request.env["action_dispatch.request.unsigned_session_cookie"]["user_return_to"] and session["user_return_to"].blank?
      flash[:notice] = "Signed in successfully." if authentication.user.active_for_authentication?
      (:user, authentication.user)
    elsif current_user
      logger.info "Logged in user found, creating associated authentication."
      current_user.authentications.create!( provider: omniauth['provider'], uid: omniauth['uid'] )
      redirect_to authentications_path, notice: "Authentication successful."
    else
      logger.info "Creating new user with new authentication."
      user = User.new(params[:user])
      user.apply_omniauth(omniauth)
      if user.save
        session["user_return_to"] = request.env["action_dispatch.request.unsigned_session_cookie"]["user_return_to"] if request.env and request.env["action_dispatch.request.unsigned_session_cookie"] and request.env["action_dispatch.request.unsigned_session_cookie"]["user_return_to"] and session["user_return_to"].blank?
        flash[:notice] = "Signed in successfully." if user.active_for_authentication?
        (:user, user)
      else
        session[:omniauth] = omniauth.except('extra')
        redirect_to new_user_registration_path
      end
    end
  else
    redirect_to authentications_path, alert: "Authentication not successful."
  end
end

#destroyObject



47
48
49
50
51
52
# File 'app/controllers/contour/authentications_controller.rb', line 47

def destroy
  @authentication = current_user.authentications.find(params[:id])
  @authentication.destroy
  flash[:notice] = "Successfully destroyed authentication."
  redirect_to authentications_path
end

#failureObject



10
11
12
# File 'app/controllers/contour/authentications_controller.rb', line 10

def failure
  redirect_to new_user_session_path, alert: params[:message].blank? ? nil : params[:message].humanize
end

#indexObject



2
3
4
# File 'app/controllers/contour/authentications_controller.rb', line 2

def index
  @authentications = current_user.authentications if current_user
end

#passthruObject



6
7
8
# File 'app/controllers/contour/authentications_controller.rb', line 6

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