-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLogreg.java
437 lines (350 loc) · 12.8 KB
/
Logreg.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
package com.company;
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.io.FileNotFoundException;
import java.util.HashMap;
import java.util.Map;
import java.util.Objects;
import java.util.Scanner;
import javax.swing.*;
import javax.swing.border.TitledBorder;
public class Logreg extends JFrame{
protected HashMap<String, String> ausers = new HashMap<String, String>();
protected HashMap<String, String> roles = new HashMap<String, String>();
protected HashMap<String, User> user = new HashMap<String, User>();
protected HashMap<String, String> rentals = new HashMap<String, String>();
protected HashMap<String, Rentable> rentalsV2 = new HashMap<String, Rentable>();
protected HashMap<String, String> rented = new HashMap<String, String>();
protected HashMap<String, String> rentcancel = new HashMap<String, String>();
protected HashMap<String, String> messages = new HashMap<String, String>();
protected String gusr;
protected String gpasw;
protected String svus2;
//end of gui register values
//GUI
//GUI
//nope difrent files for gui
//GUI
//GUI
//CODE
//CODE
//setter to set hash maps of login
/**
* <p>
*this sets the login info
*<br>
* @param -
* @return
* @see -
* @author tsig-404
*/
public void setLog(HashMap<String, String> aausers)
{
this.ausers=aausers;
}
//setter to set hash maps of register
/**
* <p>
*this sets the register info
*<br>
* @param -
* @return
* @see -
* @author tsig-404
*/
public void setReg(HashMap<String, User> auser, HashMap<String, String> aroles, HashMap<String, String> aausers)
{
this.user = auser;
this.roles = aroles;
this.ausers = aausers;
}
public HashMap<String,String> getau()
{
return this.ausers;
}
/**
* <p>
*this sets the menu info
*<br>
* @param -
* @return
* @see -
* @author tsig-404
*/
//setter to set hash maps of menus
public void setMenu(HashMap<String, String> aausers, HashMap<String, String> arentals,
HashMap<String, User> auser, HashMap<String, String> arented,
HashMap<String, Rentable> arentalsV2, HashMap<String, String> rc,
HashMap<String, String> msg, HashMap<String, String> aroles)
{
this.ausers=aausers;
this.rentals=arentals;
this.user=auser;
this.rented=arented;
this.rentalsV2=arentalsV2;
this.rentcancel=rc;
this.messages=msg;
this.roles=aroles;
//System.out.println(ausers);
//System.out.println(ausers);
}
//THIS IS THE GUI TWIN
//THIS IS THE GUI TWIN
/**
* <p>
*this is sends the info to the register gui
*<br>
* @param -
* @return
* @see -
* @author tsig-404
*/
public void guiRegister(HashMap<String, String> aausers, HashMap<String, String> arentals,
HashMap<String, User> auser, HashMap<String, String> arented,
HashMap<String, Rentable> arentalsV2, HashMap<String, String> rc,
HashMap<String, String> msg, HashMap<String, String> aroles,
String usr,String pass, String fn, String ad, int ch
) throws FileNotFoundException {
this.ausers=aausers;
this.rentals=arentals;
this.user=auser;
this.rented=arented;
this.rentalsV2=arentalsV2;
this.rentcancel=rc;
this.messages=msg;
this.roles=aroles;
System.out.println(ausers);
//this is the register for users/providers
String usern1 = usr;
String pass1 = pass;
String nam1 = fn;
String add1 = ad;
int op2 = ch;
//before ui
if (op2 == 1) {
user.put(usern1, new Client(usern1, pass1, nam1, add1));
roles.put(usern1, "client");
} else {
user.put(usern1, new Provider(usern1, pass1, nam1, add1));
roles.put(usern1, "provider");
}
ausers.put(usern1, nam1);
//before ui
System.out.println("Account created (^:");
Files tns= new Files();
tns.export1(ausers,rented,user,rentals,rentalsV2,rentcancel,messages,roles);
System.exit(505);
}
/**
* <p>
*this is sends the info to the login gui and it returns int if the given info is ok or not
*<br>
* @param -
* @return result
* @see -
* @author tsig-404
*/
//this is the login method for the gui program
public int guiLogin(String un,String ps,HashMap<String,String>au) {
//print();
this.ausers=au;
System.out.println(ausers);
int result=-1;
//String s=e.toString();
String str1=un.toString();
String str2=ps.toString();
boolean loged = false;
//i dont think that it gets in for
for (Map.Entry<String, String> e : ausers.entrySet()) {
System.out.println(e.getKey());
System.out.println(str1);
if (Objects.equals(str1, e.getKey()) && Objects.equals(str2, e.getValue())) {
//if(str1.equals(e.getKey())&& str2.equals(e.getValue())){
// if((str2 == e.getValue()) ){
loged = true;
svus2 = str1;
}
}
if (loged != true) {
//System.out.println("Wrong login information");
//System.exit(101);
result=0;
return result;
} else {
result=1;
return result;
}
}
/**
* <p>
*this is sends the info to the menus gui returns int to send them to the correct menu
*<br>
* @param -
* @return type
* @see -
* @author tsig-404
*/
public int guiMenus(HashMap<String, String> aausers, HashMap<String, String> arentals,
HashMap<String, User> auser, HashMap<String, String> arented,
HashMap<String, Rentable> arentalsV2, HashMap<String, String> rc,
HashMap<String, String> msg, HashMap<String, String> aroles, String asvus) {
this.ausers=aausers;
this.rentals=arentals;
this.user=auser;
this.rented=arented;
this.rentalsV2=arentalsV2;
this.rentcancel=rc;
this.messages=msg;
this.roles=aroles;
svus2 = asvus;
int type=0;
for (Map.Entry<String, String> entry : roles.entrySet()) {
if ((entry.getValue().contains("admin")) && (Objects.equals(svus2, entry.getKey()))) {
System.out.println("Wellcome admin " + svus2);
//AdminMenu dummy1 = new AdminMenu();
//dummy1.adminMenu(ausers, rented, user, messages);
type=11;
break;
//return 11;
} else if ((entry.getValue().contains("client")) && (Objects.equals(svus2, entry.getKey()))) {
System.out.println("Wellcome client " + svus2);
//ClientMenu dummy2 = new ClientMenu();
//dummy2.clientMenu(svus2, ausers, rentals, user, rented, rentalsV2, rentcancel, messages);
type=22;
break;
//return 22;
} else if ((entry.getValue().contains("provider")) && (Objects.equals(svus2, entry.getKey()))) {
System.out.println("Wellcome provider " + svus2);
//ProviderMenu dummy3 = new ProviderMenu();
//dummy3.providerMenu(svus2, ausers, rentals, user, rented, rentalsV2, rentcancel, messages);
type=33;
break;
//return 33;
}
}
return type;
}
//END OF GUI TWINS
//END OF GUI TWINS
/**
* <p>
*this doesnt get used anymore
*<br>
* @param -
* @return svus
* @see -
* @author tsig-404
*/
//this is the login method in class
public String login(HashMap<String, String> aausers) {
String svus = "";
this.ausers = aausers;
System.out.println("Username:");
Scanner ua = new Scanner(System.in);
String str1 = ua.nextLine();
System.out.println("Password:");
Scanner pa = new Scanner(System.in);
String str2 = pa.nextLine();
boolean loged = false;
for (Map.Entry<String, String> e : this.ausers.entrySet()) {
if (Objects.equals(str1, e.getKey()) && Objects.equals(str2, e.getValue())) {
loged = true;
svus = str1;
}
}
if (loged != true) {
System.out.println("Wrong login information");
System.exit(101);
return "";
} else {
return svus;
}
}
/**
* <p>
*this doesnt get used anymore
*<br>
* @param -
* @return
* @see -
* @author tsig-404
*/
//this is the register method in class
public void register(HashMap<String, User> auser, HashMap<String, String> aroles, HashMap<String, String> aausers) throws FileNotFoundException {
this.user = auser;
this.roles = aroles;
this.ausers = aausers;
//this is the register for users/providers
System.out.println("Username:");
Scanner ss1 = new Scanner(System.in);
String usern1 = ss1.nextLine();
System.out.println("Password:");
Scanner ss2 = new Scanner(System.in);
String pass1 = ss2.nextLine();
System.out.println("Full name:");
Scanner ss3 = new Scanner(System.in);
String nam1 = ss3.nextLine();
System.out.println("Address");
Scanner ss4 = new Scanner(System.in);
String add1 = ss4.nextLine();
System.out.println("press 1 for client registration");
System.out.println("press 2 for provider registration");
Scanner ss5 = new Scanner(System.in);
int op2 = ss5.nextInt();
//before ui
if (op2 == 1) {
user.put(usern1, new Client(usern1, pass1, nam1, add1));
roles.put(usern1, "client");
} else {
user.put(usern1, new Provider(usern1, pass1, nam1, add1));
roles.put(usern1, "provider");
}
ausers.put(usern1, nam1);
//before ui
System.out.println("Account created (^:");
//Files ts= new Files();
//ts.export1(ausers,rented,user,rentals,rentalsV2,rentcancel,messages,roles);
}
/**
* <p>
*this doesnt get used anymore
*<br>
* @param -
* @return
* @see -
* @author tsig-404
*/
//this is the choose method to send user/admin/client to their menus
public void menus(HashMap<String, String> aausers, HashMap<String, String> arentals,
HashMap<String, User> auser, HashMap<String, String> arented,
HashMap<String, Rentable> arentalsV2, HashMap<String, String> rc,
HashMap<String, String> msg, HashMap<String, String> aroles, String asvus) {
this.ausers = aausers;
this.rentals = arentals;
this.user = auser;
this.rented =arented;
this.roles = aroles;
String svus = asvus;
for (Map.Entry<String, String> entry : roles.entrySet()) {
if ((entry.getValue().contains("admin")) && (Objects.equals(svus, entry.getKey()))) {
System.out.println("Wellcome admin " + svus);
AdminMenu dummy1 = new AdminMenu();
dummy1.adminMenu(ausers, rented, user, messages);
break;
} else if ((entry.getValue().contains("client")) && (Objects.equals(svus, entry.getKey()))) {
System.out.println("Wellcome client " + svus);
ClientMenu dummy2 = new ClientMenu();
dummy2.clientMenu(svus, ausers, rentals, user, rented, rentalsV2, rentcancel, messages);
break;
} else if ((entry.getValue().contains("provider")) && (Objects.equals(svus, entry.getKey()))) {
System.out.println("Wellcome provider " + svus);
ProviderMenu dummy3 = new ProviderMenu();
dummy3.providerMenu(svus, ausers, rentals, user, rented, rentalsV2, rentcancel, messages);
break;
}
}
}
//CODE
//CODE
}