-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMain.java
More file actions
305 lines (241 loc) · 9.15 KB
/
Main.java
File metadata and controls
305 lines (241 loc) · 9.15 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
package APP;
import java.util.*;
import models.*;
import services.*;
import utils.Validation;
public class Main {
static Scanner sc = new Scanner(System.in);
public static List<User> users = new ArrayList<>();
public static List<Movie> movies = new ArrayList<>();
public static List<Show> shows = new ArrayList<>();
public static List<Booking> bookings = new ArrayList<>();
public static int userIdCounter = 1;
public static int movieIdCounter = 1;
public static int showIdCounter = 1;
public static int bookingIdCounter = 1;
// ✅ ADMIN MENU
public static void adminMenu() {
while (true) {
System.out.println("\n1. Add Movie\n2. View Movies\n3. Delete Movie\n4. Logout");
int ch;
try {
ch = sc.nextInt();
} catch (Exception e) {
System.out.println("Invalid input!");
sc.nextLine();
continue;
}
if (ch == 1) {
sc.nextLine();
System.out.print("Title: ");
String title = sc.nextLine();
System.out.print("Genre: ");
String genre = sc.nextLine();
System.out.print("Duration: ");
int duration = sc.nextInt();
if (duration <= 0) {
System.out.println("Invalid duration!");
continue;
}
System.out.print("Rating: ");
double rating = sc.nextDouble();
if (rating < 0 || rating > 10) {
System.out.println("Rating must be between 0–10!");
continue;
}
AdminService.addMovie(title, genre, duration, rating);
} else if (ch == 2) {
AdminService.viewMovies();
} else if (ch == 3) {
System.out.print("Movie ID: ");
int id = sc.nextInt();
if (id <= 0) {
System.out.println("Invalid ID!");
continue;
}
AdminService.deleteMovie(id);
} else {
break;
}
}
}
public static void staffMenu() {
while (true) {
System.out.println("\n--- STAFF MENU ---");
System.out.println("1. Schedule a Show");
System.out.println("2. Update Show");
System.out.println("3. Cancel Show");
System.out.println("4. View Shows");
System.out.println("5. Logout");
int choice;
try {
choice = sc.nextInt();
} catch (Exception e) {
System.out.println("Invalid input!");
sc.nextLine();
continue;
}
sc.nextLine(); // clear buffer
switch(choice) {
case 1:
System.out.print("Movie ID: ");
int movieId = sc.nextInt();
sc.nextLine();
System.out.print("Date (YYYY-MM-DD): ");
String date = sc.nextLine();
System.out.print("Time (HH:MM): ");
String time = sc.nextLine();
System.out.print("Total Seats: ");
int seats = sc.nextInt();
sc.nextLine();
if (!Validation.isValidId(movieId) || !Validation.isFutureDate(date) || seats <= 0) {
System.out.println("Invalid input! Show not scheduled.");
break;
}
StaffService.addShow(movieId, date, time, seats);
break;
case 2:
System.out.print("Show ID to update: ");
int showId = sc.nextInt();
sc.nextLine();
System.out.print("New Date (YYYY-MM-DD): ");
String newDate = sc.nextLine();
System.out.print("New Time (HH:MM): ");
String newTime = sc.nextLine();
StaffService.updateShow(showId, newDate, newTime);
break;
case 3:
System.out.print("Show ID to cancel: ");
int cancelId = sc.nextInt();
sc.nextLine();
StaffService.cancelShow(cancelId);
break;
case 4:
StaffService.viewShows();
break;
case 5:
return; // logout
default:
System.out.println("Invalid choice!");
}
}
}
public static void customerMenu(User user) {
while (true) {
System.out.println("\n--- CUSTOMER MENU ---");
System.out.println("1. View Profile");
System.out.println("2. Edit Profile");
System.out.println("3. Browse Movies & Shows");
System.out.println("4. Book Tickets");
System.out.println("5. View Booking History");
System.out.println("6. Logout");
int choice;
try {
choice = sc.nextInt();
} catch(Exception e) {
System.out.println("Invalid input!");
sc.nextLine();
continue;
}
sc.nextLine(); // clear buffer
switch(choice) {
case 1:
System.out.println("ID: " + user.id);
System.out.println("Name: " + user.name);
System.out.println("Email: " + user.email);
System.out.println("Role: " + user.role);
break;
case 2:
System.out.print("New Name: ");
user.name = sc.nextLine();
System.out.print("New Email: ");
String newEmail = sc.nextLine();
if (Validation.isValidEmail(newEmail)) {
user.email = newEmail;
} else {
System.out.println("Invalid Email!");
}
break;
case 3:
AdminService.viewMovies();
StaffService.viewShows();
break;
case 4:
System.out.print("Show ID to book: ");
int showId = sc.nextInt();
System.out.print("Number of Seats: ");
int seats = sc.nextInt();
sc.nextLine();
CustomerService.bookTicket(user, showId, seats);
break;
case 5:
CustomerService.viewBookingHistory(user);
break;
case 6:
return; // logout
default:
System.out.println("Invalid choice!");
}
}
}
// ✅ MAIN METHOD (NOW CORRECTLY INSIDE CLASS)
public static void main(String[] args) {
while (true) {
System.out.println("\n1. Register\n2. Login\n3. Exit");
int choice;
try {
choice = sc.nextInt();
} catch (Exception e) {
System.out.println("Invalid input!");
sc.nextLine();
continue;
}
sc.nextLine();
if (choice == 1) {
System.out.print("Name: ");
String name = sc.nextLine();
System.out.print("Email: ");
String email = sc.nextLine();
if (!email.contains("@")) {
System.out.println("Invalid email!");
continue;
}
System.out.print("Password: ");
String password = sc.nextLine();
if (password.length() < 6) {
System.out.println("Password must be at least 6 characters!");
continue;
}
System.out.print("Role (ADMIN/STAFF/CUSTOMER): ");
String role = sc.nextLine().toUpperCase();
if (!role.equals("ADMIN") && !role.equals("STAFF") && !role.equals("CUSTOMER")) {
System.out.println("Invalid role!");
continue;
}
AuthService.register(name, email, password, role);
}
else if (choice == 2) {
System.out.print("Email: ");
String email = sc.nextLine();
System.out.print("Password: ");
String password = sc.nextLine();
User user = AuthService.login(email, password);
if (user == null) {
System.out.println("Invalid credentials!");
} else {
if (user.role.equals("ADMIN")) {
adminMenu();
} else if (user.role.equals("STAFF")) {
staffMenu();
} else {
customerMenu(user);
}
}
}
else {
System.out.println("Exiting...");
break;
}
}
}
}