Class: Casablanca::Rails::Filter

Inherits:
Object
  • Object
show all
Defined in:
lib/casablanca/rails/filter.rb

Direct Known Subclasses

GatewayFilter, RenewFilter

Class Method Summary collapse

Class Method Details

.authenticate_ticket(controller) ⇒ Object



87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
# File 'lib/casablanca/rails/filter.rb', line 87

def authenticate_ticket(controller)
  client = Casablanca::Client.new(:cas_server_url => Config.cas_server_url, :service_url => service_url(controller))
  ticket = Casablanca::Ticket.new(controller.params[:ticket], client.service_url, controller.session[:cas_renew])
  if client.authenticate_ticket(ticket)
    logger.debug "Ticket authenticated"
    controller.session[:cas_user] = ticket.user
    controller.session[:cas_renew] = nil
    return true
  else          
    logger.debug "Ticket authentication failed: #{ticket.failure_message}"
    logout(controller)
    logger.debug "Renew login credentials"
    (controller)
    return false
  end
end

.authentication_required?(controller) ⇒ Boolean

Has the user already talked to the Cas server?

Returns:

  • (Boolean)


73
74
75
# File 'lib/casablanca/rails/filter.rb', line 73

def authentication_required?(controller)
  controller.session[:cas_user].nil? && controller.params[:ticket].nil?
end

.filter(controller) ⇒ Object

Require a authenticated user to the CAS server otherwise redirect to the CAS server login url. Set session to the authenticated CAS user if authenticated



38
39
40
41
42
43
44
45
46
# File 'lib/casablanca/rails/filter.rb', line 38

def filter(controller)        
  if authentication_required?(controller)
    return get_credentials(controller)
  elsif controller.params[:ticket]
    return authenticate_ticket(controller)
  else
    return true
  end
end

.get_credentials(controller) ⇒ Object



81
82
83
84
85
# File 'lib/casablanca/rails/filter.rb', line 81

def get_credentials(controller)
  logger.debug "Not authenticated yet. Ticket parameter required"
  (controller)
  return false
end

.loggerObject



68
69
70
# File 'lib/casablanca/rails/filter.rb', line 68

def logger
  Casablanca::Client.logger
end

.login_url(controller, params = {}) ⇒ Object

The login url of the Cas server. This page has the login form.



50
51
52
53
# File 'lib/casablanca/rails/filter.rb', line 50

def (controller, params={})
  client = Casablanca::Client.new(:cas_server_url => Config.cas_server_url, :service_url => service_url(controller))        
  client.(params)
end

.logout(controller) ⇒ Object

Logs out of the Cas server.



64
65
66
# File 'lib/casablanca/rails/filter.rb', line 64

def logout(controller)
  controller.session[:cas_user] = nil
end

.logout_url(controller, params = {}) ⇒ Object

The logout url of the Cas server.



57
58
59
60
# File 'lib/casablanca/rails/filter.rb', line 57

def logout_url(controller, params={})
  client = Casablanca::Client.new(:cas_server_url => Config.cas_server_url, :service_url => service_url(controller))
  client.logout_url(params)
end

.redirect_to_cas_login(controller) ⇒ Object



77
78
79
# File 'lib/casablanca/rails/filter.rb', line 77

def (controller)
  controller.send(:redirect_to, (controller))
end