-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSellerClient.java
464 lines (438 loc) · 16.8 KB
/
SellerClient.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
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
import java.io.IOException;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import javax.swing.SwingUtilities;
/**
* Project 5 - SellerClient.java
*
* Class that handles a seller's connection and requests to the database server.
*
* @author Shafer Anthony Hofmann, Qihang Gan, Shreyas Viswanathan, Nathan Pasic
* Miller, Oliver Long
*
* @version December 7, 2023
*/
public class SellerClient {
ObjectOutputStream oos;
ObjectInputStream ois;
/**
* Constructs a SellerClient 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 SellerClient(ObjectOutputStream oos, ObjectInputStream ois) throws IOException {
this.oos = oos;
this.ois = ois;
}
/**
* Launches the main menu GUI in response to a seller deleting their account or signing out.
*
* @throws IOException
*/
public void handleAccountState() throws IOException {
InitialClient initialClient = new InitialClient(oos, ois);
initialClient.start();
}
/**
* Launches the Seller GUI
*
* @param customerEmail The seller's email to display on their home page
*/
public void homepage(String sellerEmail) {
SwingUtilities.invokeLater(new Runnable() {
@Override
public void run() {
SellerClient sc;
try {
sc = new SellerClient(oos, ois);
new SellerGUI(sc, sellerEmail);
} catch (IOException e) {
new ErrorMessageGUI(e.getMessage());
}
}
});
}
/**
* Makes a call to the server to fetch all the customers that exist in the application and retrieves the result
* of the operation to be sent back to the SellerGUI.
*
* @return An object array in the form of ["SUCCESS", Customers] or ["ERROR", Error Message]
*/
public Object[] fetchAllCustomers() {
Object[] result;
try {
oos.writeObject(new String[]{"FETCH_ALL_CUSTOMERS"});
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 SellerGUI.
*
* @return An object array in the form of ["SUCCESS", Products] or ["ERROR", Error Message]
*/
public Object[] fetchAllProducts() {
Object[] result;
try {
oos.writeObject(new String[]{"FETCH_ALL_PRODUCTS"});
oos.flush();
result = (Object[]) ois.readObject();
} catch (Exception e) {
return null;
}
return result;
}
/**
* Makes a call to the server to fetch all the stores associated with the current seller and retrieves the
* result of the operation to be sent back to the SellerGUI.
*
* @return An object array in the form of ["SUCCESS", Stores] or ["ERROR", Error Message]
*/
public Object[] getStores() {
Object[] result;
try {
oos.writeObject(new String[]{"GET_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 associated with one of the current seller's stores and
* retrieves the result of the operation to be sent back to the SellerGUI.
*
* @param storeName The store name to fetch the products from
* @return An object array in the form of ["SUCCESS", Products] or ["ERROR", Error Message]
*/
public Object[] getStoreProducts(String storeName) {
Object[] result;
try {
oos.writeObject(new String[]{"GET_STORE_PRODUCTS", storeName});
oos.flush();
result = (Object[]) ois.readObject();
} catch (Exception e) {
return null;
}
return result;
}
/**
*
* Makes a call to the server to create a new store associated with the current seller and retrieves the result
* of the operation to be sent back to the SellerGUI.
*
* @param storeName The name of the new store
* @return An object array in the form of ["SUCCESS", Success Message] or ["ERROR", Error Message]
*/
public Object[] createNewStore(String storeName) {
Object[] result;
try {
oos.writeObject(new String[]{"CREATE_NEW_STORE", storeName});
oos.flush();
result = (Object[]) ois.readObject();
} catch (Exception e) {
return null;
}
return result;
}
/**
* Makes a call to the server to modify an existing store associated with the current seller and retrieves the
* result of the operation to be sent back to the SellerGUI.
*
* @param prevStoreName The name of the store to edit
* @param newStoreName The new name of the store
* @return An object array in the form of ["SUCCESS", Success Message] or ["ERROR", Error Message]
*/
public Object[] modifyStoreName(String prevStoreName, String newStoreName) {
Object[] result;
try {
oos.writeObject(new String[]{"MODIFY_STORE_NAME", prevStoreName, newStoreName});
oos.flush();
result = (Object[]) ois.readObject();
} catch (Exception e) {
return null;
}
return result;
}
/**
* Makes a call to the server to delete an existing store associated with the current seller and retrieves the
* result of the operation to be sent back to the SellerGUI.
*
* @param storeName The name of the store to delete
* @return An object array in the form of ["SUCCESS", Success Message] or ["ERROR", Error Message]
*/
public Object[] deleteStore(String storeName) {
Object[] result;
try {
oos.writeObject(new String[]{"DELETE_STORE", storeName});
oos.flush();
result = (Object[]) ois.readObject();
} catch (Exception e) {
return null;
}
return result;
}
/**
* Makes a call to the server to create a new product in an existing store associated with the current seller
* and retrieves the result of the operation to be sent back to the SellerGUI.
*
* @param storeName The store to create the product in
* @param productName The product's name
* @param availableQuantity The quantity available for sale
* @param price The product's price
* @param description The product's description
* @return An object array in the form of ["SUCCESS", Success Message] or ["ERROR", Error Message]
*/
public Object[] createNewProduct(String storeName, String productName, String availableQuantity,
String price, String description, String orderLimit, String saleQuantity, String salePrice) {
Object[] result;
try {
oos.writeObject(new String[]{"CREATE_NEW_PRODUCT", storeName, productName, availableQuantity,
price, description, orderLimit, saleQuantity, salePrice});
oos.flush();
result = (Object[]) ois.readObject();
} catch (Exception e) {
return null;
}
return result;
}
/**
* Makes a call to the server to edit an existing product in an existing store associated with the current seller
* and retrieves the result of the operation to be sent back to the SellerGUI.
*
* @param storeName The store to edit the product in
* @param productName The name of the product to edit
* @param editParam The parameter of the product to edit
* @param newValue The new value of the specific parameter of the product
* @return An object array in the form of ["SUCCESS", Success Message] or ["ERROR", Error Message]
*/
public Object[] editProduct(String storeName, String productName, String editParam, String newValue) {
Object[] result;
try {
oos.writeObject(new String[]{"EDIT_PRODUCT", storeName, productName, editParam, newValue});
oos.flush();
result = (Object[]) ois.readObject();
} catch (Exception e) {
return null;
}
return result;
}
/**
* Makes a call to the server to delete an existing product in an existing store associated with the current
* seller and retrieves the result of the operation to be sent back to the SellerGUI.
*
* @param storeName The store to delete the product in
* @param productName The name of the product to delete
* @return An object array in the form of ["SUCCESS", Success Message] or ["ERROR", Error Message]
*/
public Object[] deleteProduct(String storeName, String productName) {
Object[] result;
try {
oos.writeObject(new String[]{"DELETE_PRODUCT", storeName, productName});
oos.flush();
result = (Object[]) ois.readObject();
} catch (Exception e) {
return null;
}
return result;
}
/**
* Makes a call to the server to import products into an existing store associated with the current seller and
* retrieves the result of the operation to be sent back to the SellerGUI.
*
* @param filePath The file containing the products to import
* @param storeName The name of the store to import the products into
* @return An object array in the form of ["SUCCESS", Success Message] or ["ERROR", Error Message]
*/
public Object[] importProducts(String filePath, String storeName) {
Object[] result;
try {
oos.writeObject(new String[]{"IMPORT_PRODUCTS", filePath, storeName});
oos.flush();
result = (Object[]) ois.readObject();
} catch (Exception e) {
return null;
}
return result;
}
/**
* Makes a call to the server to export products from an existing store associated with the current seller and
* retrieves the result of the operation to be sent back to the SellerGUI.
*
* @param storeName The name of the store to export the products from
* @return An object array in the form of ["SUCCESS", Success Message] or ["ERROR", Error Message]
*/
public Object[] exportProducts(String storeName) {
Object[] result;
try {
oos.writeObject(new String[]{"EXPORT_PRODUCTS", storeName});
oos.flush();
result = (Object[]) ois.readObject();
} catch (Exception e) {
return null;
}
return result;
}
/**
* Makes a call to the server to fetch items in customers shopping carts associated with the current seller's
* stores and retrieves the result of the operation to be sent back to the SellerGUI.
*
* @return An object array in the form of ["SUCCESS", Customer Shopping Carts] or ["ERROR", Error Message]
*/
public Object[] viewCustomerShoppingCarts() {
Object[] result;
try {
oos.writeObject(new String[]{"VIEW_CUSTOMER_SHOPPING_CARTS"});
oos.flush();
result = (Object[]) ois.readObject();
} catch (Exception e) {
return null;
}
return result;
}
/**
* Makes a call to the server to view sales by store for the current seller's stores and retrieves the result
* of the operation to be sent back to the SellerGUI.
*
* @return An object array in the form of ["SUCCESS", Customer Shopping Carts] or ["ERROR", Error Message]
*/
public Object[] viewSalesByStore() {
Object[] result;
try {
oos.writeObject(new String[]{"VIEW_SALES_BY_STORE"});
oos.flush();
result = (Object[]) ois.readObject();
} catch (Exception e) {
return null;
}
return result;
}
public Object[] viewProductReviews(String storeName, String productName) {
Object[] result;
try {
oos.writeObject(new String[]{"VIEW_PRODUCT_REVIEWS", storeName, productName});
oos.flush();
result = (Object[]) ois.readObject();
} catch (Exception e) {
return null;
}
return result;
}
/**
* Makes a call to the server to fetch the customers dashboard and retrieves the result of the operation to be
* sent back to the SellerGUI.
*
* @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", Customers Dashboard] or ["ERROR", Error Message]
*/
public Object[] sellerGetCustomersDashboard(int sortSelection, boolean ascending) {
Object[] result;
try {
oos.writeObject(new String[]{"SELLER_GET_CUSTOMERS_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 seller's products dashboard and retrieves the result of the
* operation to be sent back to the SellerGUI.
*
* @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", Products Dashboard] or ["ERROR", Error Message]
*/
public Object[] sellerGetProductsDashboard(int sortSelection, boolean ascending) {
Object[] result;
try {
oos.writeObject(new String[]{"SELLER_GET_PRODUCTS_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 seller's email and retrieves the result of the operation to
* be sent back to the SellerGUI.
*
* @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 seller's password and retrieves the result of the operation to
* be sent back to the SellerGUI.
*
* @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 seller's account and retrieves the result of the operation
* to be sent back to the SellerGUI.
*
* @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 seller 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;
}
}