Sha256: 1de6c676e0698b325a842d69d1fafffbdeb0d2aeaf7a4e3af0cb3a4b44cb31cb
Contents?: true
Size: 1.45 KB
Versions: 1
Compression:
Stored size: 1.45 KB
Contents
require 'devise/strategies/base' module Devise module Strategies class CasAuthenticatable < Base # True if the mapping supports authenticate_with_cas_ticket. def valid? request = Rack::Request.new(env) mapping.to.respond_to?(:authenticate_with_cas_details) && request.session['cas'] end # Try to authenticate a user using the CAS ticket passed in params. # If the ticket is valid and the model's authenticate_with_cas_ticket method # returns a user, then return success. If the ticket is invalid, then either # fail (if we're just returning from the CAS server, based on the referrer) # or attempt to redirect to the CAS server's login URL. def authenticate! request = Rack::Request.new(env) cas_details = request.session['cas'] if cas_details resource = mapping.to.authenticate_with_cas_details(cas_details) if resource success!(resource) else username = cas_details['user'] redirect!(::Devise.cas_unregistered_url(request.url, mapping), :username => username) end else # Throw to rack-cas to initiate a login rack_cas_authenticate_response = Rack::Response.new(nil, 401) custom!(rack_cas_authenticate_response.to_a) throw :warden end end end end end Warden::Strategies.add(:cas_authenticatable, Devise::Strategies::CasAuthenticatable)
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
devise_cas_authenticatable-2.0.2 | lib/devise_cas_authenticatable/strategy.rb |