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
46
47
48
49
50
51
52
53
54
55
# File 'app/controllers/contour/authentications_controller.rb', line 14

def create
  logger.info "request #{request.env["omniauth.auth"].inspect}"
  omniauth = request.env["omniauth.auth"]
  logger.info "omniauth: #{omniauth.inspect}"
  
  if omniauth
  
    omniauth['uid'] = omniauth['user_info']['email'] if omniauth['provider'] == 'google_apps' and omniauth['user_info']
    authentication = Authentication.find_by_provider_and_uid(omniauth['provider'], omniauth['uid'])
    logger.info "OMNI AUTH INFO: #{omniauth.inspect}"
    omniauth['user_info']['email'] = omniauth['extra']['user_hash']['email'] if omniauth['user_info'] and omniauth['user_info']['email'].blank? and omniauth['extra'] and omniauth['extra']['user_hash']
    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
    request.env.keys.each do |key|
      logger.info "request.env[#{key}]: #{request.env[key]}"
    end
    redirect_to authentications_path, :alert => "Authentication not successful."
  end
  
end

#destroyObject



57
58
59
60
61
62
# File 'app/controllers/contour/authentications_controller.rb', line 57

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.html", :status => 404, :layout => false
end