-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathDapiApp.java
More file actions
430 lines (392 loc) · 23.3 KB
/
DapiApp.java
File metadata and controls
430 lines (392 loc) · 23.3 KB
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
package co.dapi;
import co.dapi.response.*;
import co.dapi.types.UserInput;
import com.google.gson.JsonSyntaxException;
import okhttp3.Response;
import java.io.IOException;
import java.time.LocalDate;
import java.util.HashMap;
/**
* {@link DapiApp} represents a client app that's using one or more of the Dapi products.
*/
public class DapiApp {
private final Config config;
private final Auth a;
private final Data d;
private final Payment p;
private final ACH ach;
private final Metadata m;
public DapiApp(Config config) {
this.config = config;
this.a = new Auth(config);
this.d = new Data(config);
this.p = new Payment(config);
this.m = new Metadata(config);
this.ach = new ACH(config);
}
/**
* exchangeToken talks to the ExchangeToken endpoint of Dapi, with this {@link DapiApp}'s appSecret.
*
* @param accessCode retrieved from user login.
* @param connectionID retrieved from user login.
* @return an {@link ExchangeTokenResponse}.
* @throws IOException in case of trouble happened while executing the request or reading the response.
*/
public ExchangeTokenResponse exchangeToken(String accessCode, String connectionID) throws IOException {
return this.a.exchangeToken(accessCode, connectionID);
}
/**
* getIdentity talks to the GetIdentity endpoint of Dapi, with this {@link DapiApp}'s appSecret.
*
* @param accessToken retrieved from the ExchangeToken process.
* @param userSecret retrieved from the user login.
* @return a {@link GetIdentityResponse}.
* @throws IOException in case of trouble happened while executing the request or reading the response.
*/
public GetIdentityResponse getIdentity(String accessToken, String userSecret) throws IOException {
return this.d.getIdentity(accessToken, userSecret, "", null);
}
/**
* getIdentity talks to the GetIdentity endpoint of Dapi, with this {@link DapiApp}'s appSecret,
* to continue a previous operation that required to provide some userInputs.
*
* @param accessToken retrieved from the ExchangeToken process.
* @param userSecret retrieved from the user login.
* @param operationID retrieved from the previous call's response.
* @param userInputs built from the previous call's response, and the required user input.
* @return a {@link GetIdentityResponse}.
* @throws IOException in case of trouble happened while executing the request or reading the response.
*/
public GetIdentityResponse getIdentity(String accessToken, String userSecret, String operationID, UserInput[] userInputs) throws IOException {
return this.d.getIdentity(accessToken, userSecret, operationID, userInputs);
}
/**
* getAccounts talks to the GetAccounts endpoint of Dapi, with this {@link DapiApp}'s appSecret.
*
* @param accessToken retrieved from the ExchangeToken process.
* @param userSecret retrieved from the user login.
* @return an {@link GetAccountsResponse}.
* @throws IOException in case of trouble happened while executing the request or reading the response.
*/
public GetAccountsResponse getAccounts(String accessToken, String userSecret) throws IOException {
return this.d.getAccounts(accessToken, userSecret, "", null);
}
/**
* getAccounts talks to the GetAccounts endpoint of Dapi, with this {@link DapiApp}'s appSecret,
* to continue a previous operation that required to provide some userInputs.
*
* @param accessToken retrieved from the ExchangeToken process.
* @param userSecret retrieved from the user login.
* @param operationID retrieved from the previous call's response.
* @param userInputs built from the previous call's response, and the required user input.
* @return an {@link GetAccountsResponse}.
* @throws IOException in case of trouble happened while executing the request or reading the response.
*/
public GetAccountsResponse getAccounts(String accessToken, String userSecret, String operationID, UserInput[] userInputs) throws IOException {
return this.d.getAccounts(accessToken, userSecret, operationID, userInputs);
}
/**
* getBalance talks to the GetBalance endpoint of Dapi, with this {@link DapiApp}'s appSecret.
*
* @param accountID the id of the account which this operation is about.
* @param accessToken retrieved from the ExchangeToken process.
* @param userSecret retrieved from the user login.
* @return an {@link GetBalanceResponse}.
* @throws IOException in case of trouble happened while executing the request or reading the response.
*/
public GetBalanceResponse getBalance(String accountID, String accessToken, String userSecret) throws IOException {
return this.d.getBalance(accountID, accessToken, userSecret, "", null);
}
/**
* getBalance talks to the GetBalance endpoint of Dapi, with this {@link DapiApp}'s appSecret,
* to continue a previous operation that required to provide some userInputs.
*
* @param accountID the id of the account which this operation is about.
* @param accessToken retrieved from the ExchangeToken process.
* @param userSecret retrieved from the user login.
* @param operationID retrieved from the previous call's response.
* @param userInputs built from the previous call's response, and the required user input.
* @return an {@link GetBalanceResponse}.
* @throws IOException in case of trouble happened while executing the request or reading the response.
*/
public GetBalanceResponse getBalance(String accountID, String accessToken, String userSecret, String operationID, UserInput[] userInputs) throws IOException {
return this.d.getBalance(accountID, accessToken, userSecret, operationID, userInputs);
}
/**
* getTransactions talks to the GetTransactions endpoint of Dapi, with this {@link DapiApp}'s appSecret,
* to continue a previous operation that required to provide some userInputs.
*
* @param accountID the id of the account which this operation is about.
* @param fromDate the start date of the transactions we want.
* @param toDate the end date of the transactions we want.
* @param accessToken retrieved from the ExchangeToken process.
* @param userSecret retrieved from the user login.
* @return an {@link GetTransactionsResponse}.
* @throws IOException in case of trouble happened while executing the request or reading the response.
*/
public GetTransactionsResponse getTransactions(String accountID, LocalDate fromDate, LocalDate toDate, String accessToken, String userSecret) throws IOException {
return this.d.getTransactions(accountID, fromDate, toDate, accessToken, userSecret, "", null);
}
/**
* getTransactions talks to the GetTransactions endpoint of Dapi, with this {@link DapiApp}'s appSecret,
* to continue a previous operation that required to provide some userInputs.
*
* @param accountID the id of the account which this operation is about.
* @param fromDate the start date of the transactions we want.
* @param toDate the end date of the transactions we want.
* @param accessToken retrieved from the ExchangeToken process.
* @param userSecret retrieved from the user login.
* @param operationID retrieved from the previous call's response.
* @param userInputs built from the previous call's response, and the required user input.
* @return an {@link GetTransactionsResponse}.
* @throws IOException in case of trouble happened while executing the request or reading the response.
*/
public GetTransactionsResponse getTransactions(String accountID, LocalDate fromDate, LocalDate toDate, String accessToken, String userSecret, String operationID, UserInput[] userInputs) throws IOException {
return this.d.getTransactions(accountID, fromDate, toDate, accessToken, userSecret, operationID, userInputs);
}
/**
* createBeneficiary talks to the CreateBeneficiary endpoint of Dapi, with this {@link DapiApp}'s appSecret.
*
* @param accessToken retrieved from the ExchangeToken process.
* @param userSecret retrieved from the user login.
* @return an {@link CreateBeneficiaryResponse}.
* @throws IOException in case of trouble happened while executing the request or reading the response.
*/
public CreateBeneficiaryResponse createBeneficiary(Payment.BeneficiaryInfo beneficiary, String accessToken, String userSecret) throws IOException {
return this.p.createBeneficiary(beneficiary, accessToken, userSecret, "", null);
}
/**
* createBeneficiary talks to the CreateBeneficiary endpoint of Dapi, with this {@link DapiApp}'s appSecret,
* to continue a previous operation that required to provide some userInputs.
*
* @param accessToken retrieved from the ExchangeToken process.
* @param userSecret retrieved from the user login.
* @param operationID retrieved from the previous call's response.
* @param userInputs built from the previous call's response, and the required user input.
* @return an {@link CreateBeneficiaryResponse}.
* @throws IOException in case of trouble happened while executing the request or reading the response.
*/
public CreateBeneficiaryResponse createBeneficiary(Payment.BeneficiaryInfo beneficiary, String accessToken, String userSecret, String operationID, UserInput[] userInputs) throws IOException {
return this.p.createBeneficiary(beneficiary, accessToken, userSecret, operationID, userInputs);
}
/**
* getBeneficiaries talks to the GetBeneficiaries endpoint of Dapi, with this {@link DapiApp}'s appSecret.
*
* @param accessToken retrieved from the ExchangeToken process.
* @param userSecret retrieved from the user login.
* @return an {@link GetBeneficiariesResponse}.
* @throws IOException in case of trouble happened while executing the request or reading the response.
*/
public GetBeneficiariesResponse getBeneficiaries(String accessToken, String userSecret) throws IOException {
return this.p.getBeneficiaries(accessToken, userSecret, "", null);
}
/**
* getBeneficiaries talks to the GetBeneficiaries endpoint of Dapi, with this {@link DapiApp}'s appSecret,
* to continue a previous operation that required to provide some userInputs.
*
* @param accessToken retrieved from the ExchangeToken process.
* @param userSecret retrieved from the user login.
* @param operationID retrieved from the previous call's response.
* @param userInputs built from the previous call's response, and the required user input.
* @return an {@link GetBeneficiariesResponse}.
* @throws IOException in case of trouble happened while executing the request or reading the response.
*/
public GetBeneficiariesResponse getBeneficiaries(String accessToken, String userSecret, String operationID, UserInput[] userInputs) throws IOException {
return this.p.getBeneficiaries(accessToken, userSecret, operationID, userInputs);
}
/**
* createTransfer talks to the CreateTransfer endpoint of Dapi, with this {@link DapiApp}'s appSecret.
*
* @param transfer the transfer details that we want to initiate.
* @param accessToken retrieved from the ExchangeToken process.
* @param userSecret retrieved from the user login.
* @return an {@link CreateTransferResponse}.
* @throws IOException in case of trouble happened while executing the request or reading the response.
*/
public CreateTransferResponse createTransfer(Payment.Transfer transfer, String accessToken, String userSecret) throws IOException {
return this.p.createTransfer(transfer, accessToken, userSecret, "", null);
}
/**
* createTransfer talks to the CreateTransfer endpoint of Dapi, with this {@link DapiApp}'s appSecret,
* to continue a previous operation that required to provide some userInputs.
*
* @param transfer the transfer details that we want to initiate.
* @param accessToken retrieved from the ExchangeToken process.
* @param userSecret retrieved from the user login.
* @param operationID retrieved from the previous call's response.
* @param userInputs built from the previous call's response, and the required user input.
* @return an {@link CreateTransferResponse}.
* @throws IOException in case of trouble happened while executing the request or reading the response.
*/
public CreateTransferResponse createTransfer(Payment.Transfer transfer, String accessToken, String userSecret, String operationID, UserInput[] userInputs) throws IOException {
return this.p.createTransfer(transfer, accessToken, userSecret, operationID, userInputs);
}
/**
* transferAutoflow talks to the TransferAutoflow endpoint of Dapi, with this {@link DapiApp}'s appSecret.
*
* @param transferAutoflow the details required to create a TransferAutoflow operation.
* @param accessToken retrieved from the ExchangeToken process.
* @param userSecret retrieved from the user login.
* @return an {@link TransferAutoflowResponse}.
* @throws IOException in case of trouble happened while executing the request or reading the response.
*/
public TransferAutoflowResponse transferAutoflow(Payment.TransferAutoflow transferAutoflow, String accessToken, String userSecret) throws IOException {
return this.p.transferAutoflow(transferAutoflow, accessToken, userSecret, "", null);
}
/**
* transferAutoflow talks to the TransferAutoflow endpoint of Dapi, with this {@link DapiApp}'s appSecret,
* to continue a previous operation that required to provide some userInputs.
*
* @param transferAutoflow the details required to create a TransferAutoflow operation.
* @param accessToken retrieved from the ExchangeToken process.
* @param userSecret retrieved from the user login.
* @param operationID retrieved from the previous call's response.
* @param userInputs built from the previous call's response, and the required user input.
* @return an {@link TransferAutoflowResponse}.
* @throws IOException in case of trouble happened while executing the request or reading the response.
*/
public TransferAutoflowResponse transferAutoflow(Payment.TransferAutoflow transferAutoflow, String accessToken, String userSecret, String operationID, UserInput[] userInputs) throws IOException {
return this.p.transferAutoflow(transferAutoflow, accessToken, userSecret, operationID, userInputs);
}
/**
* getAccountsMetadata talks to the GetAccountsMetadata endpoint of Dapi, with this {@link DapiApp}'s appSecret.
*
* @param accessToken retrieved from the ExchangeToken process.
* @param userSecret retrieved from the user login.
* @return an {@link GetAccountsMetadataResponse}.
* @throws IOException in case of trouble happened while executing the request or reading the response.
*/
public GetAccountsMetadataResponse getAccountsMetadata(String accessToken, String userSecret) throws IOException {
return this.m.getAccountsMetadata(accessToken, userSecret, "", null);
}
/**
* getAccountsMetadata talks to the GetAccountsMetadata endpoint of Dapi, with this {@link DapiApp}'s appSecret,
* to continue a previous operation that required to provide some userInputs.
*
* @param accessToken retrieved from the ExchangeToken process.
* @param userSecret retrieved from the user login.
* @param operationID retrieved from the previous call's response.
* @param userInputs built from the previous call's response, and the required user input.
* @return an {@link GetAccountsMetadataResponse}.
* @throws IOException in case of trouble happened while executing the request or reading the response.
*/
public GetAccountsMetadataResponse getAccountsMetadata(String accessToken, String userSecret, String operationID, UserInput[] userInputs) throws IOException {
return this.m.getAccountsMetadata(accessToken, userSecret, operationID, userInputs);
}
/**
* createACHPull talks to the CreatePull endpoint of Dapi, with this {@link DapiApp}'s appSecret,
*
* @param transfer the transfer details that we want to initiate.
* @param accessToken retrieved from the ExchangeToken process.
* @param userSecret retrieved from the user login.
* @return an {@link CreateACHPullResponse}.
* @throws IOException in case of trouble happened while executing the request or reading the response.
*/
public CreateACHPullResponse createACHPull(ACH.PullTransfer transfer, String accessToken, String userSecret) throws IOException {
return this.ach.createPull(transfer, accessToken, userSecret, "", null);
}
/**
* createACHPull talks to the CreatePull endpoint of Dapi, with this {@link DapiApp}'s appSecret,
* to continue a previous operation that required to provide some userInputs.
*
* @param transfer the transfer details that we want to initiate.
* @param accessToken retrieved from the ExchangeToken process.
* @param userSecret retrieved from the user login.
* @param operationID retrieved from the previous call's response.
* @param userInputs built from the previous call's response, and the required user input.
* @return an {@link CreateACHPullResponse}.
* @throws IOException in case of trouble happened while executing the request or reading the response.
*/
public CreateACHPullResponse createACHPull(ACH.PullTransfer transfer, String accessToken, String userSecret, String operationID, UserInput[] userInputs) throws IOException {
return this.ach.createPull(transfer, accessToken, userSecret, operationID, userInputs);
}
/**
* getACHPull talks to the GetPull endpoint of Dapi, with this {@link DapiApp}'s appSecret,
*
* @param accessToken retrieved from the ExchangeToken process.
* @param userSecret retrieved from the user login.
* @param operationID OperationID of the createACHPull request
* @param userInputs built from the previous call's response, and the required user input.
* @return an {@link GetACHPullResponse}.
* @throws IOException in case of trouble happened while executing the request or reading the response.
*/
public GetACHPullResponse getACHPull(String accessToken, String userSecret, String operationID) throws IOException {
return this.ach.getPull(accessToken, userSecret, operationID, null);
}
/**
* getACHPull talks to the GetPull endpoint of Dapi, with this {@link DapiApp}'s appSecret,
* to continue a previous operation that required to provide some userInputs.
*
* @param accessToken retrieved from the ExchangeToken process.
* @param userSecret retrieved from the user login.
* @param operationID OperationID of the createACHPull request
* @param userInputs built from the previous call's response, and the required user input.
* @return an {@link GetACHPullResponse}.
* @throws IOException in case of trouble happened while executing the request or reading the response.
*/
public GetACHPullResponse getACHPull(String accessToken, String userSecret, String operationID, UserInput[] userInputs) throws IOException {
return this.ach.getPull(accessToken, userSecret, operationID, userInputs);
}
/**
* handleSDKRequest injects this {@link DapiApp}'s appSecret in the provided request body, bodyJson, and then
* forwards the request to Dapi, with the passed headers, headersMap, and returns the RAW response got.
*
* @param bodyJson the body of the request, in JSON format.
* @param headersMap any headers that need to be passed with the request.
* @return an {@link Response} representing the HTTP response of this operation.
* @throws IOException in case of trouble happened while executing the request.
* @throws JsonSyntaxException in case of trouble happened while reading the request body.
*/
public Response handleSDKRequest(String bodyJson, HashMap<String, String> headersMap) throws IOException, JsonSyntaxException {
HashMap bodyMap = DapiRequest.jsonAgent.fromJson(bodyJson, HashMap.class);
// handling passing empty body string
if (bodyMap == null) bodyMap = new HashMap();
bodyMap.put("appSecret", this.config.getAppSecret());
bodyJson = DapiRequest.jsonAgent.toJson(bodyMap);
return DapiRequest.HandleSDK(bodyJson, headersMap);
}
/**
* handleSDKRequest injects this {@link DapiApp}'s appSecret in the provided request body, bodyJson, and then
* forwards the request to Dapi, and returns the RAW response got.
*
* @param bodyJson the body of the request, in JSON format.
* @return an {@link Response} representing the HTTP response of this operation.
* @throws IOException in case of trouble happened while executing the request.
* @throws JsonSyntaxException in case of trouble happened while reading the request body.
*/
public Response handleSDKRequest(String bodyJson) throws IOException, JsonSyntaxException {
return this.handleSDKRequest(bodyJson, new HashMap<>());
}
/**
* handleSecureSDKRequest injects this {@link DapiApp}'s appSecret in the provided request body, bodyJson, and then
* forwards the request to Dapi, with the provided headers, headersMap, and returns the RAW response got.
* For more info about this function, please contact support@dapi.com
*
* @param bodyJson the body of the request, in JSON format.
* @param headersMap any headers that need to be passed with the request.
* @return an {@link Response} representing the HTTP response of this operation.
* @throws IOException in case of trouble happened while executing the request.
* @throws JsonSyntaxException in case of trouble happened while reading the request body.
*/
public Response handleSecureSDKRequest(String bodyJson, HashMap<String, String> headersMap) throws IOException, JsonSyntaxException {
HashMap bodyMap = DapiRequest.jsonAgent.fromJson(bodyJson, HashMap.class);
// handling passing empty body string
if (bodyMap == null) bodyMap = new HashMap();
bodyMap.put("appSecret", this.config.getAppSecret());
bodyJson = DapiRequest.jsonAgent.toJson(bodyMap);
return DapiRequest.HandleSecureSDK(bodyJson, headersMap);
}
/**
* handleSecureSDKRequest injects this {@link DapiApp}'s appSecret in the provided request body, bodyJson, and then
* forwards the request to Dapi, and returns the RAW response got
* For more info about this function, please contact support@dapi.com
*
* @param bodyJson the body of the request, in JSON format.
* @return an {@link Response} representing the HTTP response of this operation.
* @throws IOException in case of trouble happened while executing the request.
* @throws JsonSyntaxException in case of trouble happened while reading the request body.
*/
public Response handleSecureSDKRequest(String bodyJson) throws IOException, JsonSyntaxException {
return this.handleSecureSDKRequest(bodyJson, new HashMap<>());
}
}