-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathReferralCustomerService.java
324 lines (279 loc) · 13.4 KB
/
ReferralCustomerService.java
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
package com.easypost.service;
import com.easypost.Constants;
import com.easypost.EasyPost;
import com.easypost.exception.API.EncodingError;
import com.easypost.exception.API.ExternalApiError;
import com.easypost.exception.EasyPostException;
import com.easypost.exception.General.EndOfPaginationError;
import com.easypost.http.Requestor;
import com.easypost.http.Requestor.RequestMethod;
import com.easypost.model.ReferralCustomerCollection;
import com.easypost.model.PaymentMethod;
import com.easypost.model.PaymentMethodObject;
import com.easypost.model.ReferralCustomer;
import com.easypost.utils.InternalUtilities;
import lombok.SneakyThrows;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.URL;
import java.nio.charset.StandardCharsets;
import java.util.HashMap;
import java.util.Map;
import java.util.function.Function;
public class ReferralCustomerService {
private final EasyPostClient client;
/**
* ReferralCustomerService constructor.
*
* @param client The client object.
*/
ReferralCustomerService(EasyPostClient client) {
this.client = client;
}
/**
* Create a Referral Customer object from parameter map. This function requires
* the Partner User's API key.
*
* @param params Map of the referral user parameters.
* @return Referral object.
* @throws EasyPostException when the request fails.
*/
public ReferralCustomer create(final Map<String, Object> params) throws EasyPostException {
Map<String, Object> wrappedParams = new HashMap<>();
wrappedParams.put("user", params);
String endpoint = "referral_customers";
return Requestor.request(RequestMethod.POST, endpoint, wrappedParams, ReferralCustomer.class,
client);
}
/**
* Update a Referral object email. This function requires the Partner User's API
* key.
*
* @param email Email of the referral user to update.
* @param userId ID of the referral user to update.
* @throws EasyPostException when the request fails.
*/
public void updateEmail(final String email, final String userId) throws EasyPostException {
Map<String, Object> wrappedParams = new HashMap<>();
Map<String, Object> params = new HashMap<>();
params.put("email", email);
wrappedParams.put("user", params);
String endpoint = "referral_customers/" + userId;
Requestor.request(RequestMethod.PUT, endpoint, wrappedParams, ReferralCustomer.class,
client);
}
/**
* List all Referral objects. This function requires the Partner User's API key.
*
* @param params Map of parameters.
* @return ReferralCustomerCollection object.
* @throws EasyPostException when the request fails.
*/
public ReferralCustomerCollection all(final Map<String, Object> params) throws EasyPostException {
String endpoint = "referral_customers";
return Requestor.request(RequestMethod.GET, endpoint, params, ReferralCustomerCollection.class,
client);
}
/**
* Get the next page of an ReferralCustomerCollection.
*
* @param collection ReferralCustomerCollection to get next page of.
* @return ReferralCustomerCollection object.
* @throws EndOfPaginationError when there are no more pages to retrieve.
*/
public ReferralCustomerCollection getNextPage(ReferralCustomerCollection collection) throws EndOfPaginationError {
return getNextPage(collection, null);
}
/**
* Get the next page of an ReferralCustomerCollection.
*
* @param collection ReferralCustomerCollection to get next page of.
* @param pageSize The number of results to return on the next page.
* @return ReferralCustomerCollection object.
* @throws EndOfPaginationError when there are no more pages to retrieve.
*/
public ReferralCustomerCollection getNextPage(
ReferralCustomerCollection collection, Integer pageSize) throws EndOfPaginationError {
return collection.getNextPage(new Function<Map<String, Object>, ReferralCustomerCollection>() {
@Override @SneakyThrows
public ReferralCustomerCollection apply(Map<String, Object> parameters) {
return all(parameters);
}
}, collection.getReferralCustomers(), pageSize);
}
/**
* Add credit card to a referral user. This function requires the Referral
* User's API key.
*
* @param referralApiKey API key of the referral user.
* @param number Credit card number.
* @param expirationMonth Expiration month of the credit card.
* @param expirationYear Expiration year of the credit card.
* @param cvc CVC of the credit card.
* @return PaymentMethodObject object.
* @throws EasyPostException when the request fails.
*/
public PaymentMethodObject addCreditCardToUser(final String referralApiKey, final String number,
final int expirationMonth, final int expirationYear,
final String cvc) throws EasyPostException {
return addCreditCardToUser(referralApiKey, number, expirationMonth, expirationYear, cvc,
PaymentMethod.Priority.PRIMARY);
}
/**
* Add credit card to a referral user. This function requires the Referral
* User's API key.
*
* @param referralApiKey API key of the referral user.
* @param number Credit card number.
* @param expirationMonth Expiration month of the credit card.
* @param expirationYear Expiration year of the credit card.
* @param cvc CVC of the credit card.
* @param priority Priority of this credit card.
* @return PaymentMethodObject object.
* @throws EasyPostException when the request fails.
*/
public PaymentMethodObject addCreditCardToUser(final String referralApiKey, final String number,
final int expirationMonth, final int expirationYear,
final String cvc, final PaymentMethod.Priority priority)
throws EasyPostException {
String easypostStripeApiKey = retrieveEasypostStripeApiKey();
String stripeToken;
try {
stripeToken = createStripeToken(number, expirationMonth, expirationYear, cvc, easypostStripeApiKey);
} catch (Exception e) {
throw new ExternalApiError(String.format(Constants.ErrorMessages.EXTERNAL_API_CALL_FAILED, "Stripe"));
}
return createEasypostCreditCard(referralApiKey, stripeToken, priority.toString().toLowerCase());
}
/**
* Add a credit card to EasyPost for a ReferralCustomer with a payment method ID from Stripe.
* This function requires the ReferralCustomer User's API key.
*
* @param referralApiKey API key of the referral user.
* @param paymentMethodId Payment method ID from Stripe.
* @param priority Priority of the credit card (e.g., "primary" or "secondary").
* @return PaymentMethodObject object.
* @throws EasyPostException when the request fails.
*/
public PaymentMethodObject addCreditCardFromStripe(final String referralApiKey, final String paymentMethodId,
final PaymentMethod.Priority priority) throws EasyPostException {
Map<String, Object> params = new HashMap<>();
Map<String, Object> creditCardParams = new HashMap<>();
creditCardParams.put("payment_method_id", paymentMethodId);
creditCardParams.put("priority", priority.toString().toLowerCase());
params.put("credit_card", creditCardParams);
EasyPostClient referralClient = new EasyPostClient(referralApiKey);
String endpoint = "credit_cards";
return Requestor.request(RequestMethod.POST, endpoint, params, PaymentMethodObject.class, referralClient);
}
/**
* Add a bank account to EasyPost for a ReferralCustomer.
* This function requires the ReferralCustomer User's API key.
*
* @param referralApiKey API key of the referral user.
* @param financialConnectionsId Financial connections ID from Stripe.
* @param mandateData Mandate data for the bank account.
* @param priority Priority of the bank account (e.g., "primary" or "secondary").
* @return PaymentMethodObject object.
* @throws EasyPostException when the request fails.
*/
public PaymentMethodObject addBankAccountFromStripe(final String referralApiKey,
final String financialConnectionsId,
final Map<String, Object> mandateData,
final PaymentMethod.Priority priority)
throws EasyPostException {
Map<String, Object> params = new HashMap<>();
params.put("financial_connections_id", financialConnectionsId);
params.put("mandate_data", mandateData);
params.put("priority", priority.toString().toLowerCase());
EasyPostClient referralClient = new EasyPostClient(referralApiKey);
String endpoint = "bank_accounts";
return Requestor.request(RequestMethod.POST, endpoint, params, PaymentMethodObject.class, referralClient);
}
/**
* Retrieve EasyPost Stripe API key.
*
* @return EasyPost Stripe API key.
* @throws EasyPostException when the request fails.
*/
private String retrieveEasypostStripeApiKey() throws EasyPostException {
String endpoint = "partners/stripe_public_key";
@SuppressWarnings ("unchecked") Map<String, String> response =
Requestor.request(RequestMethod.GET, endpoint, null, Map.class, client);
return response.getOrDefault("public_key", "");
}
/**
* Get credit card token from Stripe.
*
* @param number Credit card number.
* @param expirationMonth Expiration month of the credit card.
* @param expirationYear Expiration year of the credit card.
* @param cvc CVC of the credit card.
* @param easypostStripeApiKey EasyPost Stripe API key.
* @return Stripe token.
* @throws EncodingError when the request details could not be encoded.
* @throws IOException when the request fails.
*/
private static String createStripeToken(final String number, final int expirationMonth, final int expirationYear,
final String cvc, final String easypostStripeApiKey)
throws EncodingError, IOException {
String apiToken = String.format("%s %s", "Bearer", easypostStripeApiKey);
Map<String, String> params = new HashMap<>();
params.put("number", number);
params.put("exp_month", String.valueOf(expirationMonth));
params.put("exp_year", String.valueOf(expirationYear));
params.put("cvc", cvc);
String encodedURL = InternalUtilities.getEncodedURL(params, "card");
URL stripeUrl = new URL("https://api.stripe.com/v1/tokens?" + encodedURL);
HttpURLConnection conn;
if (EasyPost._vcrUrlFunction != null) {
conn = EasyPost._vcrUrlFunction.apply(stripeUrl.toString());
} else {
conn = (HttpURLConnection) stripeUrl.openConnection();
}
conn.setRequestMethod("POST");
conn.setRequestProperty("Authorization", apiToken);
conn.setRequestProperty("Content-Type", "application/x-www-form-urlencoded");
conn.setDoOutput(true);
StringBuilder response;
try (BufferedReader br = new BufferedReader(
new InputStreamReader(conn.getInputStream(), StandardCharsets.UTF_8))) {
String line;
response = new StringBuilder();
while ((line = br.readLine()) != null) {
response.append(line);
response.append(System.lineSeparator());
}
br.close();
} finally {
conn.disconnect();
}
String responseBody = response.toString();
@SuppressWarnings ("unchecked") Map<String, Object> responseMap =
Constants.Http.GSON.fromJson(responseBody, Map.class);
return responseMap.get("id").toString();
}
/**
* Submit Stripe credit card token to EasyPost.
*
* @param referralApiKey API key of the referral user.
* @param stripeObjectId Stripe token.
* @param priority Credit card priority.
* @return CreditCard object.
* @throws EasyPostException when the request fails.
*/
private PaymentMethodObject createEasypostCreditCard(final String referralApiKey, final String stripeObjectId,
final String priority) throws EasyPostException {
Map<String, Object> params = new HashMap<>();
params.put("stripe_object_id", stripeObjectId);
params.put("priority", priority);
Map<String, Object> wrappedParams = new HashMap<>();
wrappedParams.put("credit_card", params);
EasyPostClient referralClient = new EasyPostClient(referralApiKey);
String endpoint = "credit_cards";
return Requestor.request(RequestMethod.POST, endpoint, wrappedParams, PaymentMethodObject.class,
referralClient);
}
}