Class: Saml::Assertion

Inherits:
Object
  • Object
show all
Includes:
Base, XMLHelpers
Defined in:
lib/saml/assertion.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from XMLHelpers

#add_signature, #to_soap, #to_xml

Constructor Details

#initialize(*args) ⇒ Assertion

Returns a new instance of Assertion.



33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# File 'lib/saml/assertion.rb', line 33

def initialize(*args)
  options          = args.extract_options!
  @subject         = Saml::Elements::Subject.new(:name_id        => options.delete(:name_id),
                                                 :name_id_format => options.delete(:name_id_format),
                                                 :recipient      => options.delete(:recipient),
                                                 :in_response_to => options.delete(:in_response_to))
  @conditions      = Saml::Elements::Conditions.new(:audience => options.delete(:audience))
  @authn_statement = Saml::Elements::AuthnStatement.new(:authn_instant           => Time.now,
                                                        :address                 => options.delete(:address),
                                                        :authn_context_class_ref => options.delete(:authn_context_class_ref),
                                                        :session_index           => options.delete(:session_index))
  super(*(args << options))
  @_id           ||= Saml.generate_id
  @issue_instant ||= Time.now
  @issuer        ||= Saml.current_provider.entity_id
  @version       ||= Saml::SAML_VERSION
end

Instance Attribute Details

#xml_valueObject

Returns the value of attribute xml_value.



6
7
8
# File 'lib/saml/assertion.rb', line 6

def xml_value
  @xml_value
end

Instance Method Details

#add_attribute(key, value) ⇒ Object



56
57
58
59
60
# File 'lib/saml/assertion.rb', line 56

def add_attribute(key, value)
  self.attribute_statement ||= Saml::Elements::AttributeStatement.new
  self.attribute_statement.attributes ||= []
  self.attribute_statement.attributes << Saml::Elements::Attribute.new(name: key, attribute_value: value)
end

#attribute_statementObject



82
83
84
# File 'lib/saml/assertion.rb', line 82

def attribute_statement
  attribute_statements.try(:first)
end

#attribute_statement=(attribute_statement) ⇒ Object



86
87
88
# File 'lib/saml/assertion.rb', line 86

def attribute_statement=(attribute_statement)
  self.attribute_statements = [attribute_statement]
end

#fetch_attribute(key) ⇒ Object



62
63
64
# File 'lib/saml/assertion.rb', line 62

def fetch_attribute(key)
  Array(fetch_attributes(key)).first
end

#fetch_attribute_value(key) ⇒ Object



72
73
74
# File 'lib/saml/assertion.rb', line 72

def fetch_attribute_value(key)
  Array(fetch_attribute_values(key)).first
end

#fetch_attribute_values(key) ⇒ Object



76
77
78
79
80
# File 'lib/saml/assertion.rb', line 76

def fetch_attribute_values(key)
  return unless self.attribute_statements
  return unless self.attribute_statements.flat_map(&:attributes)
  attribute_statements.flat_map { |attribute_statement| attribute_statement.fetch_attribute_values(key) }
end

#fetch_attributes(key) ⇒ Object



66
67
68
69
70
# File 'lib/saml/assertion.rb', line 66

def fetch_attributes(key)
  return unless self.attribute_statements
  return unless self.attribute_statements.flat_map(&:attributes)
  attribute_statements.flat_map { |attribute_statement| attribute_statement.fetch_attributes(key) }
end

#providerSaml::Provider

Returns:



52
53
54
# File 'lib/saml/assertion.rb', line 52

def provider
  @provider ||= Saml.provider(issuer)
end