Method: Epics::CDZ#header

Defined in:
lib/epics/cdz.rb

#headerObject



10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# File 'lib/epics/cdz.rb', line 10

def header
  Nokogiri::XML::Builder.new do |xml|
    xml.header(authenticate: true) {
      xml.static {
        xml.HostID host_id
        xml.Nonce nonce
        xml.Timestamp timestamp
        xml.PartnerID partner_id
        xml.UserID user_id
        xml.Product("EPICS - a ruby ebics kernel", 'Language' => 'de')
        xml.OrderDetails {
          xml.OrderType 'CDZ'
          xml.OrderAttribute 'DZHNN'
          if !!from && !!to
            xml.StandardOrderParams {
              xml.DateRange {
                xml.Start from
                xml.End to
              }
            }
          else
            xml.StandardOrderParams
          end
        }  
        xml.BankPubKeyDigests {
          xml.Authentication(client.bank_x.public_digest, Version: 'X002', Algorithm: "http://www.w3.org/2001/04/xmlenc#sha256")
          xml.Encryption(client.bank_e.public_digest, Version: 'E002', Algorithm: "http://www.w3.org/2001/04/xmlenc#sha256" )
        }
        xml.SecurityMedium '0000'
      }
      xml.mutable {
        xml.TransactionPhase 'Initialisation'
      }
    }
  end.doc.root
end