Class: Cex::Paymium
- Inherits:
-
Object
- Object
- Cex::Paymium
- Defined in:
- lib/cex/paymium.rb
Overview
classe para processar saldos & transacoes ledger
Instance Attribute Summary collapse
-
#api ⇒ Apius
readonly
API paymium.
-
#dbq ⇒ Array<Hash>
readonly
Todos os dados bigquery.
-
#ops ⇒ Thor::CoreExt::HashWithIndifferentAccess
readonly
Opcoes trabalho.
Instance Method Summary collapse
-
#exd ⇒ Hash
Dados exchange paymium - saldos & transacoes ledger.
-
#formata_ledger(hlx) ⇒ String
Texto formatado transacao ledger.
-
#formata_saldos(bqm) ⇒ String
Texto formatado saldos (paymium/bigquery) & iguais/ok/nok?.
-
#formata_uuid(uid, max) ⇒ String
Texto formatado identificacor da ledger apifr.
-
#initialize(dad, pop) ⇒ Paymium
constructor
API paymium - obter saldos & transacoes ledger.
-
#kyl ⇒ Array<String>
Lista txid de transacoes ledger.
-
#ledger ⇒ Hash
Transacoes ledger.
-
#mostra_ledger ⇒ String
Texto transacoes ledger.
-
#mostra_resumo ⇒ String
Texto saldos & transacoes & ajuste dias.
Constructor Details
Instance Attribute Details
#api ⇒ Apius (readonly)
Returns API paymium.
10 11 12 |
# File 'lib/cex/paymium.rb', line 10 def api @api end |
#dbq ⇒ Array<Hash> (readonly)
Returns todos os dados bigquery.
12 13 14 |
# File 'lib/cex/paymium.rb', line 12 def dbq @dbq end |
#ops ⇒ Thor::CoreExt::HashWithIndifferentAccess (readonly)
Returns opcoes trabalho.
14 15 16 |
# File 'lib/cex/paymium.rb', line 14 def ops @ops end |
Instance Method Details
#exd ⇒ Hash
Returns dados exchange paymium - saldos & transacoes ledger.
30 31 32 33 34 35 |
# File 'lib/cex/paymium.rb', line 30 def exd @exd ||= { sl: api.account, kl: api.ledger } end |
#formata_ledger(hlx) ⇒ String
Returns texto formatado transacao ledger.
66 67 68 69 70 71 72 73 74 75 |
# File 'lib/cex/paymium.rb', line 66 def formata_ledger(hlx) format( '%<ky>-18.18s %<dt>19.19s %<ty>-17.17s %<mo>-4.4s %<vl>18.7f', ky: formata_uuid(hlx[:uuid], 18), dt: Time.at(hlx[:created_at_int]), ty: hlx[:name], mo: hlx[:currency].upcase, vl: hlx[:amount].to_d ) end |
#formata_saldos(bqm) ⇒ String
Returns texto formatado saldos (paymium/bigquery) & iguais/ok/nok?.
51 52 53 54 55 56 57 58 59 60 61 |
# File 'lib/cex/paymium.rb', line 51 def formata_saldos(bqm) b = dbq[:sl][bqm].to_d t = exd[:sl]["balance_#{bqm}".to_sym].to_d format( '%<mo>-5.5s %<kr>21.9f %<bq>21.9f %<ok>3.3s', mo: bqm.upcase, kr: t, bq: b, ok: t == b ? 'OK' : 'NOK' ) end |
#formata_uuid(uid, max) ⇒ String
Returns texto formatado identificacor da ledger apifr.
81 82 83 84 |
# File 'lib/cex/paymium.rb', line 81 def formata_uuid(uid, max) i = Integer(max / 2) max < 7 ? 'erro' : "#{uid[0, i]}#{uid[-i..]}" end |
#kyl ⇒ Array<String>
Returns lista txid de transacoes ledger.
38 39 40 41 |
# File 'lib/cex/paymium.rb', line 38 def kyl @kyl ||= exd[:kl].map { |h| h[:account_operations].map { |o| o[:uuid] } }.flatten - (ops[:t] ? [] : dbq[:nl].map { |e| e[:txid] }) end |
#ledger ⇒ Hash
Returns transacoes ledger.
44 45 46 |
# File 'lib/cex/paymium.rb', line 44 def ledger @ledger ||= exd[:kl].map { |h| h[:account_operations].select { |o| kyl.include?(o[:uuid]) } }.flatten end |
#mostra_ledger ⇒ String
Returns texto transacoes ledger.
99 100 101 102 103 104 |
# File 'lib/cex/paymium.rb', line 99 def mostra_ledger return unless ops[:v] && ledger.count.positive? puts("\nledger data hora tipo moeda -------quantidade") ledger.sort { |a, b| b[:created_at_int] <=> a[:created_at_int] }.each { |o| puts(formata_ledger(o)) } end |
#mostra_resumo ⇒ String
Returns texto saldos & transacoes & ajuste dias.
87 88 89 90 91 92 93 94 95 96 |
# File 'lib/cex/paymium.rb', line 87 def mostra_resumo puts("\nPAYMIUM\nmoeda saldo paymium saldo bigquery") puts(formata_saldos(:btc)) puts(formata_saldos(:eur)) mostra_ledger return unless ledger.count.positive? puts("\nstring ajuste dias da ledger\n-h=#{kyl.map { |e| "#{e}:0" }.join(' ')}") end |