forked from Paybear/paybear-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpaybear.rb
87 lines (71 loc) · 1.79 KB
/
paybear.rb
1
2
3
4
5
6
7
8
9
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
require 'open-uri'
$PAYBEAR_SECRET = "secAPIKEY"
def get_address(order_id, token = 'ETH')
token = token.downcase
callback_url = "http://CHANGEME.com/callback/#{order_id}"
url = "https://api.paybear.io/v2/#{token}/payment/#{CGI.escape(callback_url)}?token=#{$PAYBEAR_SECRET}"
begin
response = ActiveSupport::JSON.decode(open(url).read)
rescue *HTTP_ERRORS => e
{
error: e,
address: nil
}
else
if response['success']
{
error: nil,
address: response['data']['address']
}
end
end
end
def get_currencies
$currencies ||= nil
if $currencies.nil?
url = "https://api.paybear.io/v2/currencies?token=#{$PAYBEAR_SECRET}"
response = ActiveSupport::JSON.decode(open(url).read)
if response['success']
$currencies = response['data']
end
end
$currencies
end
def get_currency(token, order_id, get_address = false)
rate = get_rate(token)
if rate
fiat_value = 19.99
coins_value = (fiat_value / rate).round(8)
token = token.downcase
currencies = get_currencies
if currencies[token]
currency = currencies[token]
currency[:coinsValue] = coins_value
if get_address
currency[:address] = get_address(order_id, token)
else
currency[:currencyUrl] = "currencies/#{order_id}/#{token}"
end
currency
end
else
puts "can't get rate for #{token}"
nil
end
end
def get_rate(cur_code)
rates = get_rates
cur_code = cur_code.downcase
rates[cur_code] ? rates[cur_code]['mid'] : nil
end
def get_rates
$rates ||= nil
if $rates.nil?
url = 'https://api.paybear.io/v2/exchange/usd/rate'
response = ActiveSupport::JSON.decode(open(url).read)
if response['success']
$rates = response['data']
end
end
$rates
end