-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.js
336 lines (299 loc) · 11.1 KB
/
app.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
const https = require('https');
const { promisify } = require('util')
const sleep = promisify(setTimeout)
class Monnify {
constructor(secretKey, apiKey, baseUrl) {
this.secretKey = secretKey;
this.apiKey = apiKey;
this.baseUrl = baseUrl;
}
async makeRequest(method, path, headers, requestBody) {
try {
const options = {
hostname: this.baseUrl,
port: 443,
path: path,
method: method,
headers: headers
};
let p = new Promise((resolve, reject) => {
const req = https.request(options, (res) => {
let data = '';
res.on('data', (d) => {
data += d;
});
res.on('end', () => {
resolve(JSON.parse(data));
});
}).on('error', (error) => {
reject(error);
});
if (typeof (requestBody) !== 'undefined') {
req.write(JSON.stringify(requestBody));
}
req.end();
});
return await p
} catch (error) {
console.log(error)
return error
}
}
// to generate token
async genToken() {
const key = Buffer.from(this.apiKey + ':' + this.secretKey).toString('base64')
let path = '/api/v1/auth/login'
const headers = {
'Authorization': `Basic ${key}`
}
const data = await this.makeRequest('POST', path, headers)
// this.accessToken = data.responseBody.accessToken
return data
}
// to reserve an account
async reserveAccount(requestBody, accessToken) {
let path = '/api/v2/bank-transfer/reserved-accounts'
let headers = {
'Authorization': `Bearer ${accessToken}`,
'Content-Type': "application/json"
}
const data = await this.makeRequest('POST', path, headers, requestBody)
return data;
}
// to get list of all banks
async getBanks(accessToken) {
let path = '/api/v1/banks'
let headers = {
'Authorization': `Bearer ${accessToken}`
}
const data = await this.makeRequest('GET', path, headers)
return data
}
// to make single outbound transfer
async singleOutboundTransfer(requestBody, accessToken) {
let path = '/api/v2/disbursements/single'
let headers = {
'Authorization': `Bearer ${accessToken}`,
'Content-Type': "application/json"
}
const data = await this.makeRequest('POST', path, headers, requestBody)
return data
}
// to make bulk outbound transfer
async bulkOutboundTransfer(requestBody, accessToken) {
let path = '/api/v2/disbursements/batch'
let headers = {
'Authorization': `Bearer ${accessToken}`,
'Content-Type': "application/json"
}
const data = await this.makeRequest('POST', path, headers, requestBody)
return data
}
// to authorize single outbound transfer
async authorizeSingleTransfer(requestBody, accessToken) {
let path = '/api/v2/disbursements/single/validate-otp'
let headers = {
'Authorization': `Bearer ${accessToken}`,
'Content-Type': "application/json"
}
const data = await this.makeRequest('POST', path, headers, requestBody);
return data;
}
// to authorize bulk outbound transfer
async authorizeBulkTransfer(requestBody, accessToken) {
let path = '/api/v2/disbursements/batch/validate-otp'
let headers = {
'Authorization': `Bearer ${accessToken}`,
'Content-Type': "application/json"
}
const data = await this.makeRequest('POST', path, headers, requestBody)
return data
}
// resend OTP
async resendOtpSingle(requestBody, accessToken) {
let path = '/api/v2/disbursements/single/resend-otp'
let headers = {
'Authorization': `Bearer ${accessToken}`,
'Content-Type': "application/json"
}
const data = await this.makeRequest('POST', path, headers, requestBody)
return data
}
async resendOtpBulk(requestBody, accessToken) {
let path = '/api/v2/disbursements/batch/resend-otp'
let headers = {
'Authorization': `Bearer ${accessToken}`,
'Content-Type': "application/json"
}
const data = await this.makeRequest('POST', path, headers, requestBody)
return data
}
// to get single outbound transfer status
async getSingleTransferStatus(reference, accessToken) {
let path = `/api/v2/disbursements/single/summary?reference=${reference}`
let headers = {
'Authorization': `Bearer ${accessToken}`
}
const data = await this.makeRequest('GET', path, headers)
return data
}
// to get bulk outbound transfer status
async getBulkTransferStatus(reference, accessToken) {
let path = `/api/v2/disbursements/batch/summary?reference=${reference}`
let headers = {
'Authorization': `Bearer ${accessToken}`
}
const data = await this.makeRequest('GET', path, headers)
return data
}
// to get merchant account wallet balance
async getWalletBalance(accountNumber, accessToken) {
let path = `/api/v2/disbursements/wallet-balance?accountNumber=${accountNumber}`
let headers = {
'Authorization': `Bearer ${accessToken}`
}
const data = await this.makeRequest('GET', path, headers)
return data
}
// to get reserved account details
async getAccountDetails(reference, accessToken) {
let path = `/api/v2/bank-transfer/reserved-accounts/${reference}`
let headers = {
'Authorization': `Bearer ${accessToken}`
}
const data = await this.makeRequest('GET', path, headers)
return data
}
// for merchant to receive payments
async initiatePayment(requestBody, accessToken) {
let path = '/api/v1/merchant/transactions/init-transaction'
let headers = {
'Authorization': `Bearer ${accessToken}`,
'Content-Type': "application/json"
}
const data = await this.makeRequest('POST', path, headers, requestBody)
return data
}
async payWithBankTransfer(requestBody, accessToken) {
let path = '/api/v1/merchant/bank-transfer/init-payment'
let headers = {
'Authorization': `Bearer ${accessToken}`,
'Content-Type': "application/json"
}
const data = await this.makeRequest('POST', path, headers, requestBody)
return data
}
async payWithCard(requestBody, accessToken) {
let path = '/api/v1/merchant/cards/charge'
let headers = {
'Authorization': `Bearer ${accessToken}`,
'Content-Type': "application/json"
}
const data = await this.makeRequest('POST', path, headers, requestBody)
return data
}
async authorizeOtpForCard(requestBody, accessToken) {
let path = '/api/v1/merchant/cards/otp/authorize'
let headers = {
'Authorization': `Bearer ${accessToken}`,
'Content-Type': "application/json"
}
const data = await this.makeRequest('POST', path, headers, requestBody)
return data
}
async chargeCardToken(requestBody, accessToken) {
let path = '/api/v1/merchant/cards/charge-card-token'
let headers = {
'Authorization': `Bearer ${accessToken}`,
'Content-Type': "application/json"
}
const data = await this.makeRequest('POST', path, headers, requestBody)
return data
}
async deleteReservedAccount(accountReference, accessToken) {
let path = `/api/v1/bank-transfer/reserved-accounts/reference/${accountReference}`
let headers = {
'Authorization': `Bearer ${accessToken}`
}
const data = await this.makeRequest('DELETE', path, headers)
return data
}
async createLimitProfile(requestBody, accessToken) {
let path = '/api/v1/limit-profile/'
let headers = {
'Authorization': `Bearer ${accessToken}`,
'Content-Type': "application/json"
}
const data = await this.makeRequest('POST', path, headers, requestBody)
return data
}
async updateLimitProfile(limitProfileCode, requestBody, accessToken) {
let path = `/api/v1/limit-profile/${limitProfileCode}`
let headers = {
'Authorization': `Bearer ${accessToken}`,
'Content-Type': "application/json"
}
const data = await this.makeRequest('PUT', path, headers, requestBody)
return data
}
async getLimitProfiles(accessToken) {
let path = '/api/v1/limit-profile/'
let headers = {
'Authorization': `Bearer ${accessToken}`
}
const data = await this.makeRequest('GET', path, headers)
return data
}
async reserveAccountWithLimit(requestBody, accessToken) {
let path = '/api/v1/bank-transfer/reserved-accounts/limit'
let headers = {
'Authorization': `Bearer ${accessToken}`,
'Content-Type': "application/json"
}
const data = await this.makeRequest('POST', path, headers, requestBody)
return data
}
async updateReserveAccountLimit(requestBody, accessToken) {
let path = '/api/v1/bank-transfer/reserved-accounts/limit'
let headers = {
'Authorization': `Bearer ${accessToken}`,
'Content-Type': "application/json"
}
const data = await this.makeRequest('PUT', path, headers, requestBody)
return data
}
async initiateRefund(requestBody, accessToken) {
let path = '/api/v1/refunds/initiate-refund'
let headers = {
'Authorization': `Bearer ${accessToken}`,
'Content-Type': "application/json"
}
const data = await this.makeRequest('POST', path, headers, requestBody)
return data
}
async getAllRefunds(page, size, accessToken) {
let path = `/api/v1/refunds?page=${page}&size=${size}`
let headers = {
'Authorization': `Bearer ${accessToken}`
}
const data = await this.makeRequest('GET', path, headers)
return data
}
async getRefundStatus(refundReference, accessToken) {
let path = `/api/v1/refunds/${refundReference}`
let headers = {
'Authorization': `Bearer ${accessToken}`
}
const data = await this.makeRequest('GET', path, headers)
return data
}
async validateBankAccount(accountNumber, bankCode, accessToken) {
let path = `/api/v1/disbursements/account/validate?accountNumber=${accountNumber}&bankCode=${bankCode}`
let headers = {
'Authorization': `Bearer ${accessToken}`
}
const data = await this.makeRequest('GET', path, headers)
return data
}
}
module.exports = Monnify