-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCustomerClient.java
443 lines (415 loc) · 15 KB
/
CustomerClient.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
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
import java.io.IOException;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import javax.swing.SwingUtilities;
/**
* Project 5 - CustomerClient.java
*
* Class that handles communication with the server for a customer.
*
* @author Shafer Anthony Hofmann, Qihang Gan, Shreyas Viswanathan, Nathan Pasic
* Miller, Oliver Long
*
* @version December 7, 2023
*/
public class CustomerClient {
private ObjectOutputStream oos;
private ObjectInputStream ois;
/**
* Constructs a CustomerClient instance using the output and input streams passed in through Initial Client
*
* @param oos The object output stream to utilize to send data to the server
* @param ois The object input stream to utilize to receive data from the server
* @throws IOException
*/
public CustomerClient(ObjectOutputStream oos, ObjectInputStream ois) throws IOException {
this.oos = oos;
this.ois = ois;
}
/**
* Launches the main menu GUI in response to a customer deleting their account or signing out.
*
* @throws IOException
*/
public void handleAccountState() throws IOException {
InitialClient initialClient = new InitialClient(oos, ois);
initialClient.start();
}
/**
* Launches the Customer GUI
*
* @param customerEmail The customer's email to display on their home page
*/
public void homepage(String customerEmail) {
SwingUtilities.invokeLater(new Runnable() {
@Override
public void run() {
CustomerClient cc;
try {
cc = new CustomerClient(oos, ois);
new CustomerGUI(cc, customerEmail);
} catch (IOException e) {
new ErrorMessageGUI(e.getMessage());
}
}
});
}
/**
* Makes a call to the server to fetch all the stores that exist in the application and retrieves the result of
* the operation to be sent back to the CustomerGUI.
*
* @return An object array in the form of ["SUCCESS", Stores] or ["ERROR", Error Message]
*/
public Object[] fetchAllStores() {
Object[] result;
try {
oos.writeObject(new String[]{"FETCH_ALL_STORES"});
oos.flush();
result = (Object[]) ois.readObject();
} catch (Exception e) {
return null;
}
return result;
}
/**
* Makes a call to the server to fetch all the products that exist in the application and retrieves the result
* of the operation to be sent back to the CustomerGUI.
*
* @return An object array in the form of ["SUCCESS", Products] or ["ERROR", Error Message]
*/
public Object[] getAllProducts() {
Object[] result;
try {
oos.writeObject(new String[]{"GET_ALL_PRODUCTS"});
oos.flush();
result = (Object[]) ois.readObject();
} catch (Exception e) {
return null;
}
return result;
}
/**
* Makes a call to the server to fetch information for a product that a customer selects from the list of all
* products and retrieves the result of the operation to be sent back to the CustomerGUI.
*
* @param productSelection The index of the customer's product selection from the products menu
* @return An object array in the form of ["SUCCESS", Product Information] or ["ERROR", Error Message]
*/
public Object[] getProductInfo(int productSelection) {
Object[] result;
try {
oos.writeObject(new String[]{"GET_PRODUCT_INFO", String.valueOf(productSelection)});
oos.flush();
result = (Object[]) ois.readObject();
} catch (Exception e) {
return null;
}
return result;
}
/**
* Makes a call to the server to add a product to a customer's cart and retrieves the result of the operation to
* be sent back to the CustomerGUI.
*
* @param index The index of the customer's product selection
* @param quantity The amount of the product the customer wants to add to cart
* @return An object array in the form of ["SUCCESS", Success Message] or ["ERROR", Error Message]
*/
public Object[] addToCart(int index, String quantity) {
Object[] result;
try {
oos.writeObject(new String[]{"ADD_TO_CART", String.valueOf(index), quantity});
oos.flush();
result = (Object[]) ois.readObject();
} catch (Exception e) {
return null;
}
return result;
}
/**
* Makes a call to the server to remove a product to a customer's cart and retrieves the result of the operation
* to be sent back to the CustomerGUI.
*
* @param index The index of the customer's product selection
* @return An object array in the form of ["SUCCESS", Success Message] or ["ERROR", Error Message]
*/
public Object[] removeFromCart(int index, String quantity) {
Object[] result;
try {
oos.writeObject(new String[]{"REMOVE_FROM_CART", String.valueOf(index), quantity});
oos.flush();
result = (Object[]) ois.readObject();
} catch (Exception e) {
return null;
}
return result;
}
/**
* Makes a call to the server to fetch all items in a customer's shopping cart and retrieves the result of the
* operation to be sent back to the CustomerGUI.
*
* @return An object array in the form of ["SUCCESS", Shopping Cart Items] or ["ERROR", Error Message]
*/
public Object[] getCart() {
Object[] result;
try {
oos.writeObject(new String[]{"GET_CART"});
oos.flush();
result = (Object[]) ois.readObject();
} catch (Exception e) {
return null;
}
return result;
}
/**
* Makes a call to the server to fetch a customer's purchase history and retrieves the result of the operation to
* be sent back to the CustomerGUI.
*
* @return An object array in the form of ["SUCCESS", Purchase History Items] or ["ERROR", Error Message]
*/
public Object[] getShoppingHistory() {
Object[] result;
try {
oos.writeObject(new String[]{"GET_SHOPPING_HISTORY"});
oos.flush();
result = (Object[]) ois.readObject();
} catch (Exception e) {
return null;
}
return result;
}
/**
* Makes a call to the server to fetch products in the marketplace based on a query and retrieves the result of
* the operation to be sent back to the CustomerGUI.
*
* @param query The parameter to use to search the marketplace for
* @return An object array in the form of ["SUCCESS", Matched Products] or ["ERROR", Error Message]
*/
public Object[] searchProducts(String query) {
Object[] result;
try {
oos.writeObject(new String[]{"SEARCH_PRODUCTS", query});
oos.flush();
result = (Object[]) ois.readObject();
} catch (Exception e) {
return null;
}
return result;
}
/**
* Makes a call to the server to fetch an upated product list based on the sort parameter and retrieves the
* result of the operation to be sent back to the CustomerGUI.
*
* @param choice The parameter to use to sort the marketplace
* @return An object array in the form of ["SUCCESS", Sorted Product List] or ["ERROR", Error Message]
*/
public Object[] sortProducts(String choice, boolean ascending) {
Object[] result;
try {
oos.writeObject(new String[]{"SORT_PRODUCTS", choice, String.valueOf(ascending)});
oos.flush();
result = (Object[]) ois.readObject();
} catch (Exception e) {
return null;
}
return result;
}
/**
* Makes a call to the server to export the current customer's purchase history and retrieves the result of the
* operation to be sent back to the CustomerGUI.
*
* @return An object array in the form of ["SUCCESS", Success Message] or ["ERROR", Error Message]
*/
public Object[] exportPurchaseHistory() {
Object[] result;
try {
oos.writeObject(new String[]{"EXPORT_PURCHASE_HISTORY"});
oos.flush();
result = (Object[]) ois.readObject();
} catch (Exception e) {
return null;
}
return result;
}
public Object[] fetchReviews() {
Object[] result;
try {
oos.writeObject(new String[]{"FETCH_REVIEWS"});
oos.flush();
result = (Object[]) ois.readObject();
} catch (Exception e) {
return null;
}
return result;
}
public Object[] leaveReview(int index, String review) {
Object[] result;
try {
oos.writeObject(new String[]{"LEAVE_REVIEW", String.valueOf(index), review});
oos.flush();
result = (Object[]) ois.readObject();
} catch (Exception e) {
return null;
}
return result;
}
public Object[] editReview(int index, String modifiedReview) {
Object[] result;
try {
oos.writeObject(new String[]{"EDIT_REVIEW", String.valueOf(index), modifiedReview});
oos.flush();
result = (Object[]) ois.readObject();
} catch (Exception e) {
return null;
}
return result;
}
public Object[] deleteReview(int index) {
Object[] result;
try {
oos.writeObject(new String[]{"DELETE_REVIEW", String.valueOf(index)});
oos.flush();
result = (Object[]) ois.readObject();
} catch (Exception e) {
return null;
}
return result;
}
public Object[] returnItem(int index) {
Object[] result;
try {
oos.writeObject(new String[]{"RETURN_ITEM", String.valueOf(index)});
oos.flush();
result = (Object[]) ois.readObject();
} catch (Exception e) {
return null;
}
return result;
}
/**
* Makes a call to the server to purchase all the items in the current customer's shopping cart and retrieves the
* result of the operation to be sent back to the CustomerGUI.
*
* @return An object array in the form of ["SUCCESS", Success Message] or ["ERROR", Error Message]
*/
public Object[] purchaseItems() {
Object[] result;
try {
oos.writeObject(new String[]{"PURCHASE_ITEMS"});
oos.flush();
result = (Object[]) ois.readObject();
} catch (Exception e) {
return null;
}
return result;
}
/**
* Makes a call to the server to fetch the stores dashboard and retrieves the result of the operation to be sent
* back to the CustomerGUI.
*
* @param sortSelection The parameter to sort the dashboard by
* @param ascending The order to sort the dashboard in
* @return An object array in the form of ["SUCCESS", Stores Dashboard] or ["ERROR", Error Message]
*/
public Object[] customerGetStoresDashboard(int sortSelection, boolean ascending) {
Object[] result;
try {
oos.writeObject(new String[]{"CUSTOMER_GET_STORES_DASHBOARD", String.valueOf(sortSelection),
String.valueOf(ascending)});
oos.flush();
result = (Object[]) ois.readObject();
} catch (Exception e) {
return null;
}
return result;
}
/**
* Makes a call to the server to fetch the current customers purchase history dashboard and retrieves the result
* of the operation to be sent back to the CustomerGUI.
*
* @param sortSelection The parameter to sort the dashboard by
* @param ascending The order to sort the dashboard in
* @return An object array in the form of ["SUCCESS", Purchase History Dashboard] or ["ERROR", Error Message]
*/
public Object[] customerGetPersonalPurchasesDashboard(int sortSelection, boolean ascending) {
Object[] result;
try {
oos.writeObject(new String[]{"CUSTOMER_GET_PURCHASES_DASHBOARD", String.valueOf(sortSelection),
String.valueOf(ascending)});
oos.flush();
result = (Object[]) ois.readObject();
} catch (Exception e) {
return null;
}
return result;
}
/**
* Makes a call to the server to edit the current customer's email and retrieves the result of the operation to
* be sent back to the CustomerGUI.
*
* @param newEmail The new email to replace the previous email with
* @return An object array in the form of ["SUCCESS", Success Message] or ["ERROR", Error Message]
*/
public Object[] editEmail(String newEmail) {
Object[] result;
try {
oos.writeObject(new String[]{"EDIT_EMAIL", newEmail});
oos.flush();
result = (Object[]) ois.readObject();
} catch (Exception e) {
return null;
}
return result;
}
/**
* Makes a call to the server to edit the current customer's password and retrieves the result of the operation
* to be sent back to the CustomerGUI.
*
* @param newEmail The new password to replace the previous password with
* @return An object array in the form of ["SUCCESS", Success Message] or ["ERROR", Error Message]
*/
public Object[] editPassword(String newPassword) {
Object[] result;
try {
oos.writeObject(new String[]{"EDIT_PASSWORD", newPassword});
oos.flush();
result = (Object[]) ois.readObject();
} catch (Exception e) {
return null;
}
return result;
}
/**
* Makes a call to the server to delete the current customer's account and retrieves the result of the operation
* to be sent back to the CustomerGUI.
*
* @return An object array in the form of ["SUCCESS", Success Message] or ["ERROR", Error Message]
*/
public Object[] deleteAccount() {
Object[] result;
try {
oos.writeObject(new String[]{"DELETE_ACCOUNT"});
oos.flush();
result = (Object[]) ois.readObject();
} catch (Exception e) {
return null;
}
return result;
}
/**
* Makes a call to the server to log the current customer out and retrieves the result of the operation to be
* sent back to the CustomerGUI.
*
* @return An object array in the form of ["SUCCESS", Success Message] or ["ERROR", Error Message]
*/
public Object[] signOut() {
Object[] result;
try {
oos.writeObject(new String[]{"SIGN_OUT"});
oos.flush();
result = (Object[]) ois.readObject();
} catch (Exception e) {
return null;
}
return result;
}
}