Module: Saml::XMLHelpers
- Extended by:
- ActiveSupport::Concern
- Included in:
- Assertion, ComplexTypes::RequestAbstractType, Elements::EncryptedID, Elements::EntitiesDescriptor, Elements::EntityAttributes, Elements::EntityDescriptor, Elements::MDExtensions, Elements::PublicationInfo, Elements::SAMLPExtensions
- Defined in:
- lib/saml/xml_helpers.rb
Instance Method Summary collapse
Instance Method Details
#add_signature ⇒ Object
6 7 8 9 10 |
# File 'lib/saml/xml_helpers.rb', line 6 def add_signature self.signature = Saml::Elements::Signature.new(uri: "##{self._id}") x509certificate = OpenSSL::X509::Certificate.new(provider.certificate) rescue nil self.signature.key_info = Saml::Elements::KeyInfo.new(x509certificate.to_pem) if x509certificate end |
#to_soap(options = {}) ⇒ Object
34 35 36 37 38 39 40 41 42 43 44 45 46 |
# File 'lib/saml/xml_helpers.rb', line 34 def to_soap( = {}) builder = Nokogiri::XML::Builder.new body = self.to_xml(builder) builder = Nokogiri::XML::Builder.new(:encoding => "UTF-8") builder.Envelope(:'xmlns:soapenv' => "http://schemas.xmlsoap.org/soap/envelope/") do |xml| builder.parent.namespace = builder.parent.namespace_definitions.find { |n| n.prefix == 'soapenv' } builder.Body do builder.parent.add_child body.doc.root end end builder.to_xml(()) end |
#to_xml(*args) ⇒ Object
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
# File 'lib/saml/xml_helpers.rb', line 12 def to_xml(*args) = args. builder, default_namespace, instruct = args instruct = true if instruct.nil? write_xml = builder.nil? ? true : false builder ||= Nokogiri::XML::Builder.new builder.doc.encoding = "UTF-8" result = if xml_node && use_parsed? builder.send(:insert, xml_node) builder else super(builder, default_namespace) end if write_xml instruct ? result.to_xml(()) : result.doc.root else result end end |