Class: Epics::STA

Inherits:
GenericRequest show all
Defined in:
lib/epics/sta.rb

Instance Attribute Summary collapse

Attributes inherited from GenericRequest

#client, #transaction_id

Instance Method Summary collapse

Methods inherited from GenericRequest

#auth_signature, #body, #nonce, #root, #timestamp, #to_receipt_xml, #to_transfer_xml, #to_xml

Constructor Details

#initialize(client, from = nil, to = nil) ⇒ STA

Returns a new instance of STA.



4
5
6
7
8
# File 'lib/epics/sta.rb', line 4

def initialize(client, from = nil, to = nil)
  super(client)
  self.from = from
  self.to = to
end

Instance Attribute Details

#fromObject

Returns the value of attribute from.



2
3
4
# File 'lib/epics/sta.rb', line 2

def from
  @from
end

#toObject

Returns the value of attribute to.



2
3
4
# File 'lib/epics/sta.rb', line 2

def to
  @to
end

Instance Method Details

#date_rangeObject



10
11
12
13
14
15
16
# File 'lib/epics/sta.rb', line 10

def date_range
  if !!from && !!to
    { "DateRange" => { "Start" => from, "End" => to } }
  else
    { :content! => '' }
  end
end

#headerObject



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
46
47
48
49
50
51
52
53
54
# File 'lib/epics/sta.rb', line 18

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" => "STA",
        "OrderAttribute" => "DZHNN",
        "StandardOrderParams" => date_range
      },
      "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
        }
      },
      "SecurityMedium" => "0000"
   },
    "mutable" => {
      "TransactionPhase" => "Initialisation"
    }
  }
end