-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathShipmentService.java
More file actions
409 lines (355 loc) · 14.9 KB
/
ShipmentService.java
File metadata and controls
409 lines (355 loc) · 14.9 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
package com.easypost.service;
import com.easypost.Constants;
import com.easypost.exception.EasyPostException;
import com.easypost.exception.General.EndOfPaginationError;
import com.easypost.exception.General.FilteringError;
import com.easypost.http.Requestor;
import com.easypost.http.Requestor.RequestMethod;
import com.easypost.model.ShipmentCollection;
import com.easypost.model.EstimatedDeliveryDate;
import com.easypost.model.EstimatedDeliveryDateResponse;
import com.easypost.model.Rate;
import com.easypost.model.RecommendShipDateForShipmentResult;
import com.easypost.model.RecommendShipDateResponse;
import com.easypost.model.Shipment;
import com.easypost.model.SmartRate;
import com.easypost.model.SmartrateAccuracy;
import com.easypost.model.SmartrateCollection;
import com.easypost.utils.InternalUtilities;
import lombok.SneakyThrows;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.function.Function;
public class ShipmentService {
private final EasyPostClient client;
/**
* ShipmentService constructor.
*
* @param client The client object.
*/
ShipmentService(EasyPostClient client) {
this.client = client;
}
/**
* Create a new Shipment object from a map of parameters.
*
* @param params The map of parameters.
* @return Shipment object
* @throws EasyPostException when the request fails.
*/
public Shipment create(final Map<String, Object> params) throws EasyPostException {
Map<String, Object> wrappedParams = new HashMap<>();
wrappedParams.put("shipment", params);
String endpoint = "shipments";
return Requestor.request(RequestMethod.POST, endpoint, wrappedParams, Shipment.class, client);
}
/**
* Retrieve a Shipment from the API.
*
* @param id The ID of the Shipment to retrieve.
* @return Shipment object
* @throws EasyPostException when the request fails.
*/
public Shipment retrieve(final String id) throws EasyPostException {
String endpoint = "shipments/" + id;
return Requestor.request(RequestMethod.GET, endpoint, null, Shipment.class, client);
}
/**
* Get a list of all Shipment objects.
*
* @param params The options for the query.
* @return ShipmentCollection object
* @throws EasyPostException when the request fails.
*/
public ShipmentCollection all(final Map<String, Object> params) throws EasyPostException {
String endpoint = "shipments";
ShipmentCollection shipmentCollection = Requestor.request(RequestMethod.GET, endpoint, params,
ShipmentCollection.class, client);
// we store the params in the collection so that we can use them to get the next page
shipmentCollection.setPurchased(InternalUtilities.getOrDefault(params, "purchased", null));
shipmentCollection.setIncludeChildren(InternalUtilities.getOrDefault(params, "include_children", null));
return shipmentCollection;
}
/**
* Get the next page of an ShipmentCollection.
*
* @param collection ShipmentCollection to get next page of.
* @return ShipmentCollection object.
* @throws EndOfPaginationError when there are no more pages to retrieve.
*/
public ShipmentCollection getNextPage(ShipmentCollection collection) throws EndOfPaginationError {
return getNextPage(collection, null);
}
/**
* Get the next page of an ShipmentCollection.
*
* @param collection ShipmentCollection to get next page of.
* @param pageSize The number of results to return on the next page.
* @return ShipmentCollection object.
* @throws EndOfPaginationError when there are no more pages to retrieve.
*/
public ShipmentCollection getNextPage(ShipmentCollection collection, Integer pageSize) throws EndOfPaginationError {
return collection.getNextPage(new Function<Map<String, Object>, ShipmentCollection>() {
@Override @SneakyThrows
public ShipmentCollection apply(Map<String, Object> parameters) {
return all(parameters);
}
}, collection.getShipments(), pageSize);
}
/**
* Get new rates for this Shipment.
*
* @param id The ID of shipment.
* @return Shipment object
* @throws EasyPostException when the request fails.
*/
public Shipment newRates(final String id) throws EasyPostException {
return this.newRates(id, new HashMap<String, Object>());
}
/**
* Get new rates for this Shipment.
*
* @param id The ID of shipment.
* @param params The options for the query.
* @return Shipment object
* @throws EasyPostException when the request fails.
*/
public Shipment newRates(final String id, final Map<String, Object> params) throws EasyPostException {
String endpoint = "shipments/" + id + "/rerate";
return Requestor.request(RequestMethod.POST, endpoint, params, Shipment.class, client);
}
/**
* Get SmartRate for this Shipment.
*
* @param id The ID of shipment.
* @return List of SmartRate objects
* @throws EasyPostException when the request fails.
*/
public List<SmartRate> smartrates(final String id) throws EasyPostException {
return this.smartrates(id, null);
}
/**
* Get SmartRates for this Shipment.
*
* @param id The ID of shipment.
* @param params The options for the query.
* @return List of SmartRate objects
* @throws EasyPostException when the request fails.
*/
public List<SmartRate> smartrates(final String id, final Map<String, Object> params) throws EasyPostException {
String endpoint = "shipments/" + id + "/smartrate";
SmartrateCollection smartrateCollection = Requestor.request(RequestMethod.GET, endpoint, params,
SmartrateCollection.class, client);
return smartrateCollection.getSmartrates();
}
/**
* Buy this Shipment.
*
* @param id The ID of shipment.
* @param params The options for the query.
* @return Shipment object
* @throws EasyPostException when the request fails.
*/
public Shipment buy(final String id, final Map<String, Object> params) throws EasyPostException {
return this.buy(id, params, null);
}
/**
* Buy this Shipment.
*
* @param id The ID of shipment.
* @param rate The Rate to use for this Shipment.
* @return Shipment object
* @throws EasyPostException when the request fails.
*/
public Shipment buy(final String id, final Rate rate) throws EasyPostException {
Map<String, Object> params = new HashMap<>();
params.put("rate", rate);
return this.buy(id, params, null);
}
/**
* Buy this Shipment.
*
* @param id The ID of shipment.
* @param rate The Rate to use for this Shipment.
* @param endShipperId The id of the end shipper to use for this purchase.
* @return Shipment object
* @throws EasyPostException when the request fails.
*/
public Shipment buy(final String id, final Rate rate, final String endShipperId) throws EasyPostException {
Map<String, Object> params = new HashMap<>();
params.put("rate", rate);
return this.buy(id, params, endShipperId);
}
/**
* Buy this Shipment.
*
* @param id The ID of shipment.
* @param params The options for the query.
* @param endShipperId The id of the end shipper to use for this purchase.
* @return Shipment object
* @throws EasyPostException when the request fails.
*/
public Shipment buy(final String id, final Map<String, Object> params, final String endShipperId)
throws EasyPostException {
if (endShipperId != null && !endShipperId.isEmpty()) {
params.put("end_shipper_id", endShipperId);
}
String endpoint = "shipments/" + id + "/buy";
return Requestor.request(RequestMethod.POST, endpoint, params, Shipment.class, client);
}
/**
* Refund this Shipment.
*
* @param id The ID of shipment.
* @return Shipment object
* @throws EasyPostException when the request fails.
*/
public Shipment refund(final String id) throws EasyPostException {
return this.refund(id, null);
}
/**
* Refund this Shipment.
*
* @param id The ID of shipment.
* @param params The options for the query.
* @return Shipment object
* @throws EasyPostException when the request fails.
*/
public Shipment refund(final String id, final Map<String, Object> params) throws EasyPostException {
String endpoint = "shipments/" + id + "/refund";
return Requestor.request(RequestMethod.POST, endpoint, params, Shipment.class, client);
}
/**
* Label this Shipment.
*
* @param params The options for the query.
* @param id The ID of shipment.
* @return Shipment object
* @throws EasyPostException when the request fails.
*/
public Shipment label(final String id, final Map<String, Object> params) throws EasyPostException {
String endpoint = "shipments/" + id + "/label";
return Requestor.request(RequestMethod.GET, endpoint, params, Shipment.class, client);
}
/**
* Insure this Shipment.
*
* @param params The options for the query.
* @param id The ID of shipment.
* @return Shipment object
* @throws EasyPostException when the request fails.
*/
public Shipment insure(final String id, final Map<String, Object> params) throws EasyPostException {
String endpoint = "shipments/" + id + "/insure";
return Requestor.request(RequestMethod.POST, endpoint, params, Shipment.class, client);
}
/**
* Get the lowest SmartRate for this Shipment.
*
* @param id The ID of shipment.
* @param deliveryDay Delivery days restriction to use when filtering.
* @param deliveryAccuracy Delivery days accuracy restriction to use when
* filtering.
* @return lowest SmartRate object
* @throws EasyPostException when the request fails.
*/
public SmartRate lowestSmartRate(final String id, final int deliveryDay, SmartrateAccuracy deliveryAccuracy)
throws EasyPostException {
List<SmartRate> smartrates = this.smartrates(id, null);
SmartRate lowestSmartrate = findLowestSmartrate(smartrates, deliveryDay, deliveryAccuracy);
return lowestSmartrate;
}
/**
* Find the lowest SmartRate from a list of SmartRates.
*
* @param smartRates List of SmartRates to filter from.
* @param deliveryDay Delivery days restriction to use when filtering.
* @param deliveryAccuracy Delivery days accuracy restriction to use when
* filtering.
* @return lowest Smartrate object
* @throws EasyPostException when the request fails.
*/
public SmartRate findLowestSmartrate(final List<SmartRate> smartRates, int deliveryDay,
SmartrateAccuracy deliveryAccuracy) throws EasyPostException {
SmartRate lowestSmartrate = null;
for (SmartRate rate : smartRates) {
int smartrateDeliveryDay = rate.getTimeInTransit().getBySmartrateAccuracy(deliveryAccuracy);
if (smartrateDeliveryDay > deliveryDay) {
continue;
} else if (lowestSmartrate == null || rate.getRate() < lowestSmartrate.getRate()) {
lowestSmartrate = rate;
}
}
if (lowestSmartrate == null) {
throw new FilteringError(String.format(Constants.ErrorMessages.NO_OBJECT_FOUND, "rate"));
}
return lowestSmartrate;
}
/**
* Generate a form for this shipment.
*
* @param id The ID of shipment.
* @param formType The form type for this shipment.
* @return Return a shipment object.
* @throws EasyPostException when the request fails.
*/
public Shipment generateForm(final String id, final String formType) throws EasyPostException {
return this.generateForm(id, formType, new HashMap<>());
}
/**
* Generate a form for this shipment.
*
* @param id The ID of shipment.
* @param formType The form type for this shipment.
* @param formOptions The form options for this shipment.
* @return Return a shipment object.
* @throws EasyPostException when the request fails.
*/
public Shipment generateForm(final String id, final String formType, final Map<String, Object> formOptions)
throws EasyPostException {
HashMap<String, Object> params = new HashMap<>();
HashMap<String, Object> wrappedParams = new HashMap<>();
params.put("type", formType);
params.putAll(formOptions);
wrappedParams.put("form", params);
String endpoint = "shipments/" + id + "/forms";
return Requestor.request(RequestMethod.POST, endpoint, wrappedParams, Shipment.class,
client);
}
/**
* Retrieves the estimated delivery date of each Rate via SmartRate.
*
* @param id The id of the shipment.
* @param plannedShipDate The planned shipment date.
* @return EstimatedDeliveryDate object.
* @throws EasyPostException When the request fails.
*/
public List<EstimatedDeliveryDate> retrieveEstimatedDeliveryDate(final String id, final String plannedShipDate)
throws EasyPostException {
HashMap<String, Object> params = new HashMap<>();
params.put("planned_ship_date", plannedShipDate);
String endpoint = "shipments/" + id + "/smartrate/delivery_date";
EstimatedDeliveryDateResponse response = Requestor.request(RequestMethod.GET, endpoint, params,
EstimatedDeliveryDateResponse.class, client);
return response.getRates();
}
/**
* Retrieve a recommended ship date for an existing Shipment via the Precision Shipping API,
* based on a specific desired delivery date.
*
* @param id The id of the shipment.
* @param desiredDeliveryDate The desired delivery date.
* @return EstimatedDeliveryDate object.
* @throws EasyPostException When the request fails.
*/
public List<RecommendShipDateForShipmentResult> recommendShipDate(final String id, final String desiredDeliveryDate)
throws EasyPostException {
HashMap<String, Object> params = new HashMap<>();
params.put("desired_delivery_date", desiredDeliveryDate);
String endpoint = "shipments/" + id + "/smartrate/precision_shipping";
RecommendShipDateResponse response = Requestor.request(RequestMethod.GET, endpoint, params,
RecommendShipDateResponse.class, client);
return response.getRates();
}
}