module Maestrano::SSO

Public Class Methods

build_request(get_params = {}) click to toggle source

Build a new SAML Request

# File lib/maestrano/sso.rb, line 17
def self.build_request(get_params = {})
  Maestrano::Saml::Request.new(get_params)
end
build_response(saml_post_param) click to toggle source

Build a new SAML response

# File lib/maestrano/sso.rb, line 22
def self.build_response(saml_post_param)
  Maestrano::Saml::Response.new(saml_post_param)
end
clear_session(session) click to toggle source

Destroy the maestrano session in http session

# File lib/maestrano/sso.rb, line 76
def self.clear_session(session)
  session.delete(:maestrano)
  session.delete('maestrano')
end
Also aliased as: unset_session
consume_url() click to toggle source
# File lib/maestrano/sso.rb, line 36
def self.consume_url
  host = Maestrano.param('sso.idm')
  path = Maestrano.param('sso.consume_path')
  return "#{host}#{path}"
end
enabled?() click to toggle source
# File lib/maestrano/sso.rb, line 26
def self.enabled?
  !!Maestrano.param('sso.enabled')
end
idp_url() click to toggle source
# File lib/maestrano/sso.rb, line 54
def self.idp_url
  host = Maestrano.param('api_host')
  api_base = Maestrano.param('api_base')
  endpoint = 'auth/saml'
  return "#{host}#{api_base}#{endpoint}"
end
init_url() click to toggle source
# File lib/maestrano/sso.rb, line 30
def self.init_url
  host = Maestrano.param('sso.idm')
  path = Maestrano.param('sso.init_path')
  return "#{host}#{path}"
end
logout_url() click to toggle source
# File lib/maestrano/sso.rb, line 42
def self.logout_url
  host = Maestrano.param('api_host')
  path = '/app_logout'
  return "#{host}#{path}"
end
saml_settings() click to toggle source

Return the saml_settings based on Maestrano configuration

# File lib/maestrano/sso.rb, line 6
def self.saml_settings
  settings = Maestrano::Saml::Settings.new
  settings.assertion_consumer_service_url = self.consume_url
  settings.issuer                         = Maestrano.param('api.id')
  settings.idp_sso_target_url             = self.idp_url
  settings.idp_cert_fingerprint           = Maestrano.param('sso_x509_fingerprint')
  settings.name_identifier_format         = Maestrano.param('sso_name_id_format')
  settings
end
session_check_url(user_uid,sso_session) click to toggle source
# File lib/maestrano/sso.rb, line 61
def self.session_check_url(user_uid,sso_session) 
  host = Maestrano.param('api_host')
  api_base = Maestrano.param('api_base')
  endpoint = 'auth/saml'
  return URI.escape("#{host}#{api_base}#{endpoint}/#{user_uid}?session=#{sso_session}")
end
set_session(session, auth) click to toggle source

Set maestrano attributes in session Takes the BaseUser hash representation and current session in arguments

# File lib/maestrano/sso.rb, line 71
def self.set_session(session, auth)
  Maestrano::SSO::Session.from_user_auth_hash(session,auth).save
end
unauthorized_url() click to toggle source
# File lib/maestrano/sso.rb, line 48
def self.unauthorized_url
  host = Maestrano.param('api_host')
  path = '/app_access_unauthorized'
  return "#{host}#{path}";
end
unset_session(session)
Alias for: clear_session