Class: Epics::INI
Instance Attribute Summary
#client, #transaction_id
Instance Method Summary
collapse
#auth_signature, #initialize, #nonce, #timestamp, #to_receipt_xml, #to_transfer_xml
Instance Method Details
#body ⇒ Object
28
29
30
31
32
33
34
|
# File 'lib/epics/ini.rb', line 28
def body
{
"DataTransfer" => {
"OrderData" => Base64.strict_encode64(Zlib::Deflate.deflate(key_signature))
}
}
end
|
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# File 'lib/epics/ini.rb', line 7
def
{
:@authenticate => true,
static: {
"HostID" => host_id,
"PartnerID" => partner_id,
"UserID" => user_id,
"Product" => {
:@Language => "de",
:content! => "EPICS - a ruby ebics kernel"
},
"OrderDetails" => {
"OrderType" => "INI",
"OrderAttribute" => "DZNNN"
},
"SecurityMedium" => "0000"
},
"mutable" => ""
}
end
|
#key_signature ⇒ Object
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
# File 'lib/epics/ini.rb', line 36
def key_signature
"<?xml version='1.0' encoding='utf-8'?>\n"+
Gyoku.xml("SignaturePubKeyOrderData" => {
:"@xmlns:ds" => "http://www.w3.org/2000/09/xmldsig#",
:"@xmlns" => "http://www.ebics.org/S001",
"SignaturePubKeyInfo" => {
"PubKeyValue" => {
"ds:RSAKeyValue" => {
"ds:Modulus" => Base64.strict_encode64([client.a.n].pack("H*")),
"ds:Exponent" => Base64.strict_encode64(client.a.key.e.to_s(2))
},
"TimeStamp" => timestamp
},
"SignatureVersion" => "A006"
},
"PartnerID" => partner_id,
"UserID" => user_id
})
end
|
#root ⇒ Object
3
4
5
|
# File 'lib/epics/ini.rb', line 3
def root
"ebicsUnsecuredRequest"
end
|
#to_xml ⇒ Object
56
57
58
59
60
61
62
63
64
65
66
67
|
# File 'lib/epics/ini.rb', line 56
def to_xml
Nokogiri::XML.parse(Gyoku.xml( {
root => {
:"@xmlns:ds" => "http://www.w3.org/2000/09/xmldsig#",
:@xmlns => "urn:org:ebics:H004",
:@Version => "H004",
:@Revision => "1",
:header => ,
"body" => body
}
}), nil, "utf-8").to_xml(save_with: Nokogiri::XML::Node::SaveOptions::AS_XML)
end
|