-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTicketController.java
More file actions
478 lines (356 loc) · 15.9 KB
/
TicketController.java
File metadata and controls
478 lines (356 loc) · 15.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
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
465
466
467
468
469
470
471
472
473
474
475
476
477
478
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.time.LocalDate;
import java.time.ZonedDateTime;
import java.time.ZoneId;
import java.time.format.DateTimeFormatter;
import java.time.LocalTime;
import java.util.ArrayList;
import java.sql.Types;
public class TicketController {
private myJDBC jdbc;
public TicketController(myJDBC myJDBC){
this.jdbc = myJDBC;
}
public ArrayList<Ticket> getTickets() {
ResultSet results;
ArrayList<Ticket> tickets = new ArrayList<>();
try {
Statement myStmt = jdbc.dbConnect.createStatement();
results = myStmt.executeQuery("SELECT * FROM TICKET AS T ;");
while (results.next()) {
int ticketID = results.getInt("TicketID");
int showtimeID = results.getInt("ShowtimeID");
int RUID = results.getInt("RUID");
int paymentID = results.getInt("PaymentID");
double cost = results.getDouble("Cost");
String email = results.getString("Email");
String time = results.getString("TimePurchased");
String date = results.getString("DatePurchased");
int refund = results.getInt("Refunded");
int seatID = results.getInt("SeatID");
boolean refunded = false;
if (refund == 0) {
refunded = false;
} else {
refunded = true;
}
Ticket ticket = new Ticket(ticketID, showtimeID, seatID, RUID, email, cost, paymentID, date, time, refunded);
tickets.add(ticket);
}
myStmt.close();
} catch (SQLException ex) {
ex.printStackTrace();
}
return tickets;
}
public ArrayList<Ticket> getTicketsFromEmail(String email) {
ResultSet results;
ArrayList<Ticket> tickets = new ArrayList<>();
// SQL query to fetch tickets by email
String query = "SELECT * FROM TICKET AS T WHERE T.Email = ?";
try {
// Use PreparedStatement to prevent SQL injection
PreparedStatement myStmt = jdbc.dbConnect.prepareStatement(query);
// Set the email parameter in the query
myStmt.setString(1, email);
// Execute the query
results = myStmt.executeQuery();
// Process the results
while (results.next()) {
int ticketID = results.getInt("TicketID");
int showtimeID = results.getInt("ShowtimeID");
int RUID = results.getInt("RUID");
int paymentID = results.getInt("PaymentID");
double cost = results.getDouble("Cost");
String time = results.getString("TimePurchased");
String date = results.getString("DatePurchased");
int refund = results.getInt("Refunded");
int seatID = results.getInt("SeatID");
System.out.println("IN GET TICKETS FROM EMAIL, TICKET ID IS " + ticketID);
// Determine if ticket is refunded
boolean refunded = refund == 1;
// Create a Ticket object and add to the list
Ticket ticket = new Ticket(ticketID, showtimeID, seatID, RUID, email, cost, paymentID, date, time, refunded);
tickets.add(ticket);
}
// Close statement
myStmt.close();
} catch (SQLException ex) {
ex.printStackTrace();
}
return tickets;
}
public boolean addTicket(Ticket ticket) {
// Takes ticket and saves it on DB
// If successful, return TRUE
String query = "INSERT INTO TICKET (RUID, ShowtimeID, SeatID, Cost, PaymentID, Email, TimePurchased, DatePurchased, Refunded) "
+ "VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)";
ZoneId calgaryTimeZone = ZoneId.of("America/Edmonton"); // Calgary is in the "America/Edmonton" zone
// Get the current time in Calgary
ZonedDateTime calgaryCurrentTime = ZonedDateTime.now(calgaryTimeZone);
// Extract the time (HH:MM:SS) from the ZonedDateTime
LocalTime localTime = calgaryCurrentTime.toLocalTime();
// Format the time in "HH:MM:SS" format (compatible with MySQL TIME type)
String formattedTime = localTime.format(DateTimeFormatter.ofPattern("HH:mm:ss"));
LocalDate currentDate = LocalDate.now();
String formattedDate = currentDate.toString(); // toString() gives YYYY-MM-DD
// Get RegisteredUser and Payment info
RegisteredUser RU = ticket.getRU();
Payment payment = ticket.getPayment();
try {
// Prepare the statement
PreparedStatement statement = jdbc.dbConnect.prepareStatement(query);
// Set parameters in the correct order
if (RU != null && RU.getID() != -1) {
statement.setInt(1, RU.getID()); // RUID
} else {
statement.setNull(1, Types.INTEGER); // Set null for RUID if it's invalid
}
statement.setInt(2, ticket.getShowtime().getShowtimeID()); // ShowtimeID
statement.setInt(3, ticket.getSeat().getSeatID()); // SeatID
statement.setDouble(4, ticket.getTicketPrice()); // Cost
if (payment != null) {
statement.setInt(5, payment.getPaymentID()); // PaymentID
} else {
statement.setNull(5, Types.INTEGER); // Set null for PaymentID if payment is not available
}
statement.setString(6, ticket.getEmail()); // Email
statement.setString(7, ticket.getTimePurchased()); // TimePurchased
statement.setString(8, ticket.getDatePurchased()); // DatePurchased
statement.setInt(9, 0); // Refunded (0 for not refunded, 1 for refunded)
// Execute the query
int rowsAffected = statement.executeUpdate();
return rowsAffected > 0; // Return true if insertion was successful
} catch (SQLException e) {
System.out.println("Error adding ticket to DB: " + e.getMessage());
}
return false; // Return false if there was an error
}
public boolean addCredit(StoreCredit credit) {
// Takes ticket and saves it on DB
// If successful, return TRUE
String query = null;
PreparedStatement statement;
try {
if(credit.getRUID() != -1) {
query = "INSERT INTO STORE_CREDIT (RUID, email, amount, ExpiryDate) "
+ "VALUES (?, ?, ?, ?)";
statement = jdbc.dbConnect.prepareStatement(query);
statement.setInt(1, credit.getRUID()); // ShowtimeID
statement.setString(2, credit.getEmail()); // SeatID
statement.setDouble(3, credit.getAmount()); // Cost
statement.setString(4, credit.getExpiryDate()); // Email
}
else {
query = "INSERT INTO STORE_CREDIT (email, amount, ExpiryDate) "
+ "VALUES (?, ?, ?)";
statement = jdbc.dbConnect.prepareStatement(query);
statement.setString(1, credit.getEmail()); // SeatID
statement.setDouble(2, credit.getAmount()); // Cost
statement.setString(3, credit.getExpiryDate()); // Email
}
// Execute the query
int rowsAffected = statement.executeUpdate();
return rowsAffected > 0; // Return true if insertion was successful
} catch (SQLException e) {
System.out.println("Error adding credit to DB: " + e.getMessage());
}
return false; // Return false if there was an error
}
public Showtime getShowtimeFromID(int id) {
String query = null;
Showtime showtime = null;
Movie movie = null;
Location theatre = null;
PreparedStatement statement = null;
try {
query = "SELECT * FROM SHOWTIME AS S WHERE S.ShowtimeID = ?";
statement = jdbc.dbConnect.prepareStatement(query);
statement.setInt(1, id);
ResultSet results = statement.executeQuery();
while (results.next()) {
int movieID = results.getInt("MovieID");
int theatreID = results.getInt("TheatreID");
String showDate = results.getString("ShowDate");
String showTime = results.getString("ShowTime");
movie = getMovieFromID(movieID);
theatre = getTheatreFromID(theatreID);
showtime = new Showtime( id, movie, showDate, showTime, theatre);
}
statement.close();
} catch (SQLException e) {
e.printStackTrace();
}
return showtime;
}
public Movie getMovieFromID(int id) {
String query = null;
Movie movie = null;
PreparedStatement statement = null;
try {
query = "SELECT * FROM MOVIE AS M WHERE M.MovieID = ?";
statement = jdbc.dbConnect.prepareStatement(query);
statement.setInt(1, id);
ResultSet results = statement.executeQuery();
while (results.next()) {
String title = results.getString("Title");
String genre = results.getString("Genre");
String releaseDate = results.getString("ReleaseDate");
movie = new Movie(id, title, genre, releaseDate);
}
statement.close();
} catch (SQLException e) {
e.printStackTrace();
}
return movie;
}
public Location getTheatreFromID(int id) {
String query = null;
Location location = null;
PreparedStatement statement = null;
try {
query = "SELECT * FROM THEATRE AS T WHERE T.TheatreID = ?";
statement = jdbc.dbConnect.prepareStatement(query);
statement.setInt(1, id);
ResultSet results = statement.executeQuery();
while (results.next()) {
String address = results.getString("Address");
String name = results.getString("TheatreName");
location = new Location(address, name,id);
}
statement.close();
} catch (SQLException e) {
e.printStackTrace();
}
return location;
}
public Seat getSeatFromID(int id) {
String query = null;
Seat seat = null;
PreparedStatement statement = null;
try {
query = "SELECT * FROM SEAT AS S WHERE S.SeatID = ?";
statement = jdbc.dbConnect.prepareStatement(query);
statement.setInt(1, id);
ResultSet results = statement.executeQuery();
while (results.next()) {
int showtimeID = results.getInt("Showtime");
String seatRowStr = results.getString("SeatRow");
int col = results.getInt("SeatColumn");
boolean available = results.getBoolean("Available");
boolean RUreserved = results.getBoolean("RUReserved");
char row = (seatRowStr != null && seatRowStr.length() > 0) ? seatRowStr.charAt(0) : ' ';
seat = new Seat(id, row, col, showtimeID,RUreserved, available);
}
statement.close();
} catch (SQLException e) {
e.printStackTrace();
}
return seat;
}
public void changeRefunded(Ticket ticket, boolean refunded) {
int ticketID = ticket.getTicketID();
System.out.println("IN CHANGE REFUNDED FUNC, TICKET ID IS " + ticketID);
String query = null;
PreparedStatement statement = null;
try {
// Update query that uses the 'available' parameter
query = "UPDATE TICKET SET Refunded = ? WHERE TicketID = ?;";
// Prepare the statement
statement = jdbc.dbConnect.prepareStatement(query);
int ref = 0;
if (refunded){
ref = 1;
}
// Set the parameters
statement.setInt(1, ref); // Set the 'Available' value
statement.setInt(2, ticketID); // Set the SeatID for which you want to update availability
// Execute the update query
int rowsAffected = statement.executeUpdate(); // Use executeUpdate for non-SELECT queries
if (rowsAffected > 0) {
System.out.println("Ticket refund updated successfully.");
} else {
System.out.println("No rows affected.");
}
// Close the statement
statement.close();
} catch (SQLException e) {
e.printStackTrace();
}
}
public ArrayList<StoreCredit> getCreditsFromEmail(String email) {
ResultSet results;
ArrayList<StoreCredit> credits = new ArrayList<>();
try {
String query = "SELECT * FROM STORE_CREDIT AS SC WHERE SC.email= ?;";
PreparedStatement myStmt = jdbc.dbConnect.prepareStatement(query);
myStmt.setString(1, email);
results = myStmt.executeQuery();
while (results.next()) {
int ID = results.getInt("CreditID");
int RUID = results.getInt("RUID");
double amount = results.getDouble("amount");
String expiryDate = results.getString("ExpiryDate");
StoreCredit credit = new StoreCredit(ID, RUID, email, amount, expiryDate);
credits.add(credit);
}
myStmt.close();
} catch (SQLException ex) {
ex.printStackTrace();
}
return credits;
}
public void changeCredit(StoreCredit credit, double remainder) {
int creditID = credit.getCreditID();
String query = null;
PreparedStatement statement = null;
try {
// Update query that uses the 'available' parameter
query = "UPDATE STORE_CREDIT SET Amount = ? WHERE CreditID = ?;";
// Prepare the statement
statement = jdbc.dbConnect.prepareStatement(query);
// Set the parameters
statement.setDouble(1, remainder);
statement.setInt(2, creditID);
// Execute the update query
int rowsAffected = statement.executeUpdate(); // Use executeUpdate for non-SELECT queries
if (rowsAffected > 0) {
System.out.println("Credit availability updated successfully.");
} else {
System.out.println("No rows affected.");
}
// Close the statement
statement.close();
} catch (SQLException e) {
e.printStackTrace();
}
}
public void changeSeatAvailability(Seat seat, boolean available) {
int seatID = seat.getSeatID();
String query = null;
PreparedStatement statement = null;
try {
// Update query that uses the 'available' parameter
query = "UPDATE SEAT SET Available = ? WHERE SeatID = ?;";
// Prepare the statement
statement = jdbc.dbConnect.prepareStatement(query);
// Set the parameters
statement.setBoolean(1, available); // Set the 'Available' value
statement.setInt(2, seatID); // Set the SeatID for which you want to update availability
// Execute the update query
int rowsAffected = statement.executeUpdate(); // Use executeUpdate for non-SELECT queries
if (rowsAffected > 0) {
System.out.println("Seat availability updated successfully.");
} else {
System.out.println("No rows affected.");
}
// Close the statement
statement.close();
} catch (SQLException e) {
e.printStackTrace();
}
}
}