Class: OneLogin::RubySaml::Settings

Inherits:
Object
  • Object
show all
Defined in:
lib/onelogin/ruby-saml/settings.rb

Overview

SAML2 Toolkit Settings

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(overrides = {}) ⇒ Settings

Returns a new instance of Settings.



12
13
14
15
16
17
18
19
20
21
22
# File 'lib/onelogin/ruby-saml/settings.rb', line 12

def initialize(overrides = {})
  config = DEFAULTS.merge(overrides)
  config.each do |k,v|
    acc = "#{k.to_s}=".to_sym
    if respond_to? acc
      value = v.is_a?(Hash) ? v.dup : v
      send(acc, value)
    end
  end
  @attribute_consuming_service = AttributeService.new
end

Instance Attribute Details

#assertion_consumer_logout_service_bindingObject

Returns the value of attribute assertion_consumer_logout_service_binding.



58
59
60
# File 'lib/onelogin/ruby-saml/settings.rb', line 58

def assertion_consumer_logout_service_binding
  @assertion_consumer_logout_service_binding
end

#assertion_consumer_logout_service_urlObject

Compability



57
58
59
# File 'lib/onelogin/ruby-saml/settings.rb', line 57

def assertion_consumer_logout_service_url
  @assertion_consumer_logout_service_url
end

#assertion_consumer_service_bindingObject

Returns the value of attribute assertion_consumer_service_binding.



35
36
37
# File 'lib/onelogin/ruby-saml/settings.rb', line 35

def assertion_consumer_service_binding
  @assertion_consumer_service_binding
end

#assertion_consumer_service_urlObject

Returns the value of attribute assertion_consumer_service_url.



34
35
36
# File 'lib/onelogin/ruby-saml/settings.rb', line 34

def assertion_consumer_service_url
  @assertion_consumer_service_url
end

#attribute_consuming_serviceObject (readonly)

Returns the value of attribute attribute_consuming_service.



52
53
54
# File 'lib/onelogin/ruby-saml/settings.rb', line 52

def attribute_consuming_service
  @attribute_consuming_service
end

#attributes_indexObject

Returns the value of attribute attributes_index.



45
46
47
# File 'lib/onelogin/ruby-saml/settings.rb', line 45

def attributes_index
  @attributes_index
end

#authn_contextObject

Returns the value of attribute authn_context.



49
50
51
# File 'lib/onelogin/ruby-saml/settings.rb', line 49

def authn_context
  @authn_context
end

#authn_context_comparisonObject

Returns the value of attribute authn_context_comparison.



50
51
52
# File 'lib/onelogin/ruby-saml/settings.rb', line 50

def authn_context_comparison
  @authn_context_comparison
end

#authn_context_decl_refObject

Returns the value of attribute authn_context_decl_ref.



51
52
53
# File 'lib/onelogin/ruby-saml/settings.rb', line 51

def authn_context_decl_ref
  @authn_context_decl_ref
end

#certificateObject

Returns the value of attribute certificate.



47
48
49
# File 'lib/onelogin/ruby-saml/settings.rb', line 47

def certificate
  @certificate
end

#compress_requestObject

Returns the value of attribute compress_request.



40
41
42
# File 'lib/onelogin/ruby-saml/settings.rb', line 40

def compress_request
  @compress_request
end

#compress_responseObject

Returns the value of attribute compress_response.



41
42
43
# File 'lib/onelogin/ruby-saml/settings.rb', line 41

def compress_response
  @compress_response
end

#double_quote_xml_attribute_valuesObject

Returns the value of attribute double_quote_xml_attribute_values.



42
43
44
# File 'lib/onelogin/ruby-saml/settings.rb', line 42

def double_quote_xml_attribute_values
  @double_quote_xml_attribute_values
end

#force_authnObject

Returns the value of attribute force_authn.



46
47
48
# File 'lib/onelogin/ruby-saml/settings.rb', line 46

def force_authn
  @force_authn
end

#idp_attribute_namesObject

Returns the value of attribute idp_attribute_names.



31
32
33
# File 'lib/onelogin/ruby-saml/settings.rb', line 31

def idp_attribute_names
  @idp_attribute_names
end

#idp_certObject

Returns the value of attribute idp_cert.



28
29
30
# File 'lib/onelogin/ruby-saml/settings.rb', line 28

def idp_cert
  @idp_cert
end

#idp_cert_fingerprintObject

Returns the value of attribute idp_cert_fingerprint.



29
30
31
# File 'lib/onelogin/ruby-saml/settings.rb', line 29

def idp_cert_fingerprint
  @idp_cert_fingerprint
end

#idp_cert_fingerprint_algorithmObject

Returns the value of attribute idp_cert_fingerprint_algorithm.



30
31
32
# File 'lib/onelogin/ruby-saml/settings.rb', line 30

def idp_cert_fingerprint_algorithm
  @idp_cert_fingerprint_algorithm
end

#idp_entity_idObject

IdP Data



25
26
27
# File 'lib/onelogin/ruby-saml/settings.rb', line 25

def idp_entity_id
  @idp_entity_id
end

#idp_slo_target_urlObject

Returns the value of attribute idp_slo_target_url.



27
28
29
# File 'lib/onelogin/ruby-saml/settings.rb', line 27

def idp_slo_target_url
  @idp_slo_target_url
end

#idp_sso_target_urlObject

Returns the value of attribute idp_sso_target_url.



26
27
28
# File 'lib/onelogin/ruby-saml/settings.rb', line 26

def idp_sso_target_url
  @idp_sso_target_url
end

#issuerObject

SP Data



33
34
35
# File 'lib/onelogin/ruby-saml/settings.rb', line 33

def issuer
  @issuer
end

#name_identifier_formatObject

Returns the value of attribute name_identifier_format.



37
38
39
# File 'lib/onelogin/ruby-saml/settings.rb', line 37

def name_identifier_format
  @name_identifier_format
end

#name_identifier_valueObject

Returns the value of attribute name_identifier_value.



38
39
40
# File 'lib/onelogin/ruby-saml/settings.rb', line 38

def name_identifier_value
  @name_identifier_value
end

#passiveObject

Returns the value of attribute passive.



43
44
45
# File 'lib/onelogin/ruby-saml/settings.rb', line 43

def passive
  @passive
end

#private_keyObject

Returns the value of attribute private_key.



48
49
50
# File 'lib/onelogin/ruby-saml/settings.rb', line 48

def private_key
  @private_key
end

#protocol_bindingObject

Returns the value of attribute protocol_binding.



44
45
46
# File 'lib/onelogin/ruby-saml/settings.rb', line 44

def protocol_binding
  @protocol_binding
end

#securityObject

Work-flow



54
55
56
# File 'lib/onelogin/ruby-saml/settings.rb', line 54

def security
  @security
end

#sessionindexObject

Returns the value of attribute sessionindex.



39
40
41
# File 'lib/onelogin/ruby-saml/settings.rb', line 39

def sessionindex
  @sessionindex
end

#softObject

Returns the value of attribute soft.



55
56
57
# File 'lib/onelogin/ruby-saml/settings.rb', line 55

def soft
  @soft
end

#sp_name_qualifierObject

Returns the value of attribute sp_name_qualifier.



36
37
38
# File 'lib/onelogin/ruby-saml/settings.rb', line 36

def sp_name_qualifier
  @sp_name_qualifier
end

Instance Method Details

#get_fingerprintString

Calculates the fingerprint of the IdP x509 certificate.

Returns:

  • (String)

    The fingerprint



107
108
109
110
111
112
113
114
115
# File 'lib/onelogin/ruby-saml/settings.rb', line 107

def get_fingerprint
  idp_cert_fingerprint || begin
    idp_cert = get_idp_cert
    if idp_cert
      fingerprint_alg = XMLSecurity::BaseDocument.new.algorithm(idp_cert_fingerprint_algorithm).new
      fingerprint_alg.hexdigest(idp_cert.to_der).upcase.scan(/../).join(":")
    end
  end
end

#get_idp_certOpenSSL::X509::Certificate|nil

Returns Build the IdP certificate from the settings (previously format it).

Returns:

  • (OpenSSL::X509::Certificate|nil)

    Build the IdP certificate from the settings (previously format it)



119
120
121
122
123
124
# File 'lib/onelogin/ruby-saml/settings.rb', line 119

def get_idp_cert
  return nil if idp_cert.nil? || idp_cert.empty?

  formatted_cert = OneLogin::RubySaml::Utils.format_cert(idp_cert)
  OpenSSL::X509::Certificate.new(formatted_cert)
end

#get_sp_certOpenSSL::X509::Certificate|nil

Returns Build the SP certificate from the settings (previously format it).

Returns:

  • (OpenSSL::X509::Certificate|nil)

    Build the SP certificate from the settings (previously format it)



128
129
130
131
132
133
# File 'lib/onelogin/ruby-saml/settings.rb', line 128

def get_sp_cert
  return nil if certificate.nil? || certificate.empty?

  formatted_cert = OneLogin::RubySaml::Utils.format_cert(certificate)
  OpenSSL::X509::Certificate.new(formatted_cert)
end

#get_sp_keyOpenSSL::PKey::RSA

Returns Build the SP private from the settings (previously format it).

Returns:

  • (OpenSSL::PKey::RSA)

    Build the SP private from the settings (previously format it)



137
138
139
140
141
142
# File 'lib/onelogin/ruby-saml/settings.rb', line 137

def get_sp_key
  return nil if private_key.nil? || private_key.empty?

  formatted_private_key = OneLogin::RubySaml::Utils.format_private_key(private_key)
  OpenSSL::PKey::RSA.new(formatted_private_key)
end

#single_logout_service_bindingString

Returns Single Logout Service Binding.

Returns:

  • (String)

    Single Logout Service Binding.



83
84
85
86
87
88
89
90
91
92
93
# File 'lib/onelogin/ruby-saml/settings.rb', line 83

def single_logout_service_binding
  val = nil
  if @single_logout_service_binding.nil?
    if @assertion_consumer_logout_service_binding
      val = @assertion_consumer_logout_service_binding
    end
  else
    val = @single_logout_service_binding
  end
  val
end

#single_logout_service_binding=(url) ⇒ Object

Setter for Single Logout Service Binding.

(Currently we only support “urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect”)

Parameters:

  • url (String)


100
101
102
# File 'lib/onelogin/ruby-saml/settings.rb', line 100

def single_logout_service_binding=(url)
  @single_logout_service_binding = url
end

#single_logout_service_urlString

Returns Single Logout Service URL.

Returns:

  • (String)

    Single Logout Service URL.



62
63
64
65
66
67
68
69
70
71
72
# File 'lib/onelogin/ruby-saml/settings.rb', line 62

def single_logout_service_url
  val = nil
  if @single_logout_service_url.nil?
    if @assertion_consumer_logout_service_url
      val = @assertion_consumer_logout_service_url
    end
  else
    val = @single_logout_service_url
  end
  val
end

#single_logout_service_url=(url) ⇒ Object

Setter for the Single Logout Service URL.

Parameters:

  • url (String)

    .



77
78
79
# File 'lib/onelogin/ruby-saml/settings.rb', line 77

def single_logout_service_url=(url)
  @single_logout_service_url = url
end