-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
462 lines (365 loc) · 12.4 KB
/
index.js
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
/**
* BlockBee's Node.js Library
* @author BlockBee <info@blockbee.io>
*/
class BlockBee {
static #baseURL = 'https://api.blockbee.io'
constructor( coin, ownAddress, callbackUrl, parameters = {}, bbParams = {}, apiKey ) {
if ( !apiKey ) {
throw new Error('Missing API Key')
}
if (!coin || !callbackUrl) {
throw new Error('Missing required parameters')
}
coin = coin.replace('/', '_')
BlockBee.getSupportedCoins(apiKey).then(validCoins => {
if ( !validCoins.hasOwnProperty(coin) ) {
throw new Error('The cryptocurrency/token requested is not supported.')
}
})
this.coin = coin
this.ownAddress = ownAddress
this.callbackUrl = callbackUrl
this.parameters = parameters
this.bbParams = bbParams
this.apiKey = apiKey
this.paymentAddress = ''
}
/**
* Gets all the supported cryptocurrencies and tokens from the API
* @param apiKey
* @returns {Promise<{}|null>}
*/
static async getSupportedCoins( apiKey ) {
const info = await this.getInfo(null, true, apiKey)
if ( !info ) {
return null
}
delete info['fee_tiers']
const coins = {}
for ( const chain of Object.keys(info) ) {
const data = info[chain]
const isBaseCoin = data.hasOwnProperty('ticker')
if ( isBaseCoin ) {
coins[chain] = data
} else {
const baseTicker = `${chain}_`
Object.entries(data).forEach(( [token, subData] ) => {
coins[baseTicker + token] = subData
})
}
}
return coins
}
/**
* Actually makes the request to the API returning the address.
* It's necessary to run this before running the other non-static functions
* @returns {Promise<*|null>}
*/
async getAddress() {
if ( !this.coin || !this.callbackUrl || !this.apiKey ) {
return null
}
let callbackUrl = new URL(this.callbackUrl)
const parameters = this.parameters
if ( Object.entries(parameters).length > 0 ) {
Object.entries(parameters).forEach(( [k, v] ) => callbackUrl.searchParams.append(k, v))
}
const params = this.ownAddress
? {
...this.bbParams, ...{
callback: encodeURI(callbackUrl.toString()),
address: this.ownAddress,
apikey: this.apiKey
}
} : {
...this.bbParams, ...{
callback: encodeURI(callbackUrl.toString()),
apikey: this.apiKey
}
}
const response = await BlockBee.#_request_get(this.coin, 'create', params)
const addressIn = response.address_in
this.paymentAddress = addressIn
return addressIn
}
/**
* Checks the logs related to a request.
* (Can be used to check for callbacks)
* @returns {Promise<any|null>}
*/
async checkLogs() {
if ( !this.coin || !this.callbackUrl ) {
return null
}
let callbackUrl = new URL(this.callbackUrl)
const parameters = this.parameters
if ( Object.entries(parameters).length > 0 ) {
Object.entries(parameters).forEach(( [k, v] ) => callbackUrl.searchParams.append(k, v))
}
callbackUrl = encodeURI(callbackUrl.toString())
const params = {
callback: callbackUrl,
apikey: this.apiKey
}
const response = await BlockBee.#_request_get(this.coin, 'logs', params)
if ( response.status === 'success' ) {
return response
}
return null
}
/**
* Gets the QRCode for a payment.
* @param value
* @param size
* @returns {Promise<any|null>}
*/
async getQrcode( value = null, size = 512 ) {
let address = this.paymentAddress
if ( !address ) {
address = await this.getAddress()
}
const params = {
address: address,
apikey: this.apiKey
}
if ( value ) {
params['value'] = value
}
params['size'] = size
const response = await BlockBee.#_request_get(this.coin, 'qrcode', params)
if ( response.status === 'success' ) {
return response
}
return null
}
/**
* Get information related to a cryptocurrency/token.
* If coin=null it calls the /info/ endpoint returning general information
* @param coin
* @param assoc
* @param apiKey
* @returns {Promise<any|null>}
*/
static async getInfo( coin = null, assoc = false, apiKey = '' ) {
const params = {}
if ( !coin ) {
params['prices'] = 0
}
return await this.#_request_get(coin, 'info', params)
}
/**
* Gets an estimate of the blockchain fees for the coin provided.
* @param coin
* @param apiKey
* @param addresses
* @param priority
* @returns {Promise<any|null>}
*/
static async getEstimate( coin, apiKey = '', addresses = 1, priority = 'default' ) {
return await BlockBee.#_request_get(coin, 'estimate', {
addresses,
priority
})
}
/**
* This method allows you to easily convert prices from FIAT to Crypto or even between cryptocurrencies
* @param coin
* @param value
* @param from
* @param apiKey
* @returns {Promise<any|null>}
*/
static async getConvert( coin, value, from, apiKey = '' ) {
return await BlockBee.#_request_get(coin, 'convert', {
value,
from
})
}
static async createPayout( coin, requests, apiKey, process = false ) {
if ( !requests ) {
throw new Error('No requests provided')
}
const body = {
'outputs': requests
}
let endpoint = 'payout/request/bulk'
if ( process ) {
endpoint = endpoint + '/process'
}
return await BlockBee.#_request_post(coin, endpoint, apiKey, body, true)
}
static async listPayouts( coin, status, page, apiKey, requests = false ) {
const params = {}
if ( status ) {
params.status = status
}
if ( page ) {
params.p = page
}
let endpoint = 'payout/list'
if ( requests ) {
endpoint = 'payout/request/list'
}
return await this.#_request_get(coin, endpoint, {...params, apikey: apiKey})
}
static async getPayoutWallet( coin, apiKey, balance = false ) {
let wallet = await this.#_request_get(coin, 'payout/address', {apikey: apiKey})
const output = {address: wallet.address}
if ( balance ) {
wallet = await this.#_request_get(coin, 'payout/balance', {apikey: apiKey})
if ( wallet.status === 'success' ) {
output.balance = wallet.balance
}
}
return output
}
static async createPayoutByIds( apiKey, ids = [] ) {
if ( ids.length === 0 ) {
throw new Error('Please provide the Payout Request(s) ID(s)')
}
return await this.#_request_post('', 'payout/create', apiKey, {request_ids: ids.join(',')})
}
static async processPayout( apiKey, id ) {
const response = await this.#_request_post('', 'payout/process', apiKey, {payout_id: id})
return response.status === 'success' ? response : null
}
static async checkPayoutStatus( apiKey, id ) {
if ( !id ) {
throw new Error('Please provide the Payout ID')
}
return await this.#_request_post('', 'payout/status', apiKey, {payout_id: id})
}
/**
* Requests a Payment Link
* @returns {Promise<*|null>}
*/
static async paymentRequest( redirectUrl, notifyUrl, value, apiKey, params = {}, bbParams = {} ) {
if (!notifyUrl) {
throw new Error('notifyUrl is required')
}
if (!redirectUrl) {
throw new Error('paymentRequest is required')
}
redirectUrl = new URL(redirectUrl)
notifyUrl = new URL(notifyUrl)
if ( Object.entries(params).length > 0 ) {
Object.entries(params).forEach(( [k, v] ) => redirectUrl.searchParams.append(k, v))
Object.entries(params).forEach(( [k, v] ) => notifyUrl.searchParams.append(k, v))
}
const reqParams = {
...bbParams, ...{
redirect_url: encodeURI(redirectUrl.toString()),
notify_url: encodeURI(notifyUrl.toString()),
value: value,
apikey: apiKey
}
}
return await BlockBee.#_request_get('', 'checkout/request', reqParams)
}
/**
* Fetch payment logs
* @param {string} token
* @param {string} apiKey
* @returns {Promise<null|Object>}
*/
static async paymentLogs( token, apiKey ) {
const params = {
apikey: apiKey,
token: token
}
return await BlockBee.#_request_get('', 'checkout/logs', params)
}
/**
* Requests a Deposit Link
* @returns {Promise<*|null>}
*/
static async depositRequest( notifyUrl, apiKey, parameters = {}, bbParams = {} ) {
if ( !notifyUrl ) {
throw new Error('notifyUrl is required')
}
notifyUrl = new URL(notifyUrl)
if ( Object.entries(parameters).length > 0 ) {
Object.entries(parameters).forEach(( [k, v] ) => notifyUrl.searchParams.append(k, v))
}
const params = {
...bbParams, ...{
notify_url: encodeURI(notifyUrl.toString()),
apikey: apiKey
}
}
return await BlockBee.#_request_get('', 'deposit/request', params)
}
/**
* Fetch deposit logs
* @param {string} token
* @param {string} apiKey
* @returns {Promise<null|Object>}
*/
static async depositLogs( token, apiKey ) {
if ( !token ) {
throw new Error('Token is Empty')
}
const params = {
apikey: apiKey,
token: token
}
return await BlockBee.#_request_get('', 'deposit/logs', params)
}
/**
* Helper function to make a request to API
* @param coin
* @param endpoint
* @param params
* @returns {Promise<any>}
*/
static async #_request_get( coin = null, endpoint = '', params = {} ) {
const url = coin ? new URL(`${this.#baseURL}/${coin.replace('_', '/')}/${endpoint}/`) : new URL(`${this.#baseURL}/${endpoint}/`)
if ( params ) {
Object.keys(params).forEach(key => url.searchParams.append(key, params[key]))
}
const fetchParams = {
method: 'GET',
headers: {
referer: this.#baseURL
},
credentials: 'include'
}
const response = await fetch(url, fetchParams)
const response_obj = await response.json()
if ( response_obj.status === 'error' ) {
throw new Error(response_obj.error)
}
return response_obj
}
static async #_request_post( coin, endpoint, apiKey, body = {}, isJson = false ) {
const baseURL = this.#baseURL
const coinPath = coin ? `${coin.replace('_', '/')}` : ''
let url = new URL(`${baseURL}/${endpoint}/`)
if ( coin ) {
url = new URL(`${baseURL}/${coinPath}/${endpoint}/`)
}
url.searchParams.append('apikey', apiKey)
const headers = {}
let data
if ( isJson ) {
headers['Content-Type'] = 'application/json'
data = JSON.stringify(body)
} else {
data = new URLSearchParams(body).toString()
headers['Content-Type'] = 'application/x-www-form-urlencoded'
}
const fetchParams = {
method: 'POST',
headers: headers,
body: data
}
const response = await fetch(url, fetchParams)
const response_obj = await response.json()
if ( response_obj.status === 'error' ) {
throw new Error(response_obj.error)
}
return response_obj
}
}
module.exports = BlockBee