lib/epics/c53.rb in epics-1.5.1 vs lib/epics/c53.rb in epics-1.5.2
- old
+ new
@@ -6,47 +6,37 @@
self.from = from
self.to = to
end
def header
- {
- :@authenticate => true,
- static: {
- "HostID" => host_id,
- "Nonce" => nonce,
- "Timestamp" => timestamp,
- "PartnerID" => partner_id,
- "UserID" => user_id,
- "Product" => {
- :@Language => "de",
- :content! => "EPICS - a ruby ebics kernel"
- },
- "OrderDetails" => {
- "OrderType" => "C53",
- "OrderAttribute" => "DZHNN",
- "StandardOrderParams" => {
- "DateRange" => {
- "Start" => from,
- "End" => to
+ 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 'C53'
+ xml.OrderAttribute 'DZHNN'
+ xml.StandardOrderParams {
+ xml.DateRange {
+ xml.Start from
+ xml.End to
+ }
}
}
- },
- "BankPubKeyDigests" => {
- "Authentication" => {
- :@Version => "X002",
- :@Algorithm => "http://www.w3.org/2001/04/xmlenc#sha256",
- :content! => client.bank_x.public_digest
- },
- "Encryption" => {
- :@Version => "E002",
- :@Algorithm => "http://www.w3.org/2001/04/xmlenc#sha256",
- :content! => client.bank_e.public_digest
+ 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" )
}
- },
- "SecurityMedium" => "0000"
- },
- "mutable" => {
- "TransactionPhase" => "Initialisation"
+ xml.SecurityMedium '0000'
+ }
+ xml.mutable {
+ xml.TransactionPhase 'Initialisation'
+ }
}
- }
+ end.doc.root
end
end