-
Notifications
You must be signed in to change notification settings - Fork 0
/
User.java
446 lines (382 loc) · 12.7 KB
/
User.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
import java.io.File;
import java.io.IOException;
import java.io.PrintWriter;
import java.util.Scanner;
public class User
{
// Private instance variables for User data and I/O processing
private static File user, files;
private PrintWriter outFile;
private Scanner inFile;
private String username, password, nickname, birthday;
private int credits;
private static boolean isInit = false;
// Create a full-defined User and temporarlily save their information to instance variables to check for errors
public User(String username, String password, String nickname, String birthday)
{
this.username = username;
this.password = password;
this.nickname = nickname;
this.birthday = birthday;
credits = 0;
}
// Create a partially-defined User to save a username and password to be paired with a nickname and birthday
public User(String username, String password)
{
this.username = username;
this.password = password;
}
/**
* The user save file is as follows line by line
* for each registered account:
*
* 1. Username
* 2. Password
* 3. Nickname
* 4. Birthday
* 5. Credits
*
*/
// Save User information to its own text file
public void initUser() throws IOException
{
// Create file in "userdata" for account information
user = new File("userdata/" + username + ".txt");
outFile = new PrintWriter(user);
// Save login information
outFile.println(username);
outFile.println(password);
outFile.println(nickname);
outFile.println(birthday);
outFile.println(credits);
// Save the default purchase information for the user's garden
if(!(isInit))
{
outFile.print("\n");
// Initialize purchase information
outFile.println("0");
outFile.println("false");
outFile.println("0");
outFile.println("false");
outFile.println("false");
outFile.println("0");
outFile.println("false");
outFile.println("0");
outFile.println("false");
outFile.println("false");
}
else
{
outFile.print("\n");
// Initialize purchase information
outFile.println(PurchaseTracker.stats.get(0));
outFile.println(PurchaseTracker.stats.get(1));
outFile.println(PurchaseTracker.stats.get(2));
outFile.println(PurchaseTracker.stats.get(3));
outFile.println(PurchaseTracker.stats.get(4));
outFile.println(PurchaseTracker.stats.get(5));
outFile.println(PurchaseTracker.stats.get(6));
outFile.println(PurchaseTracker.stats.get(7));
outFile.println(PurchaseTracker.stats.get(8));
outFile.println(PurchaseTracker.stats.get(9));
}
outFile.close();
// Create a directory in "userfiles" for a user's notes files and copy README.txt as an instructions manual for the user
if(!(isInit))
{
files = new File("userfiles/" + username + "/");
files.mkdirs();
File readme = new File("README.txt");
inFile = new Scanner(readme);
File welcome = new File("userfiles/" + username + "/Welcome.txt");
outFile = new PrintWriter(welcome);
while(inFile.hasNext())
{
outFile.println(inFile.nextLine());
}
inFile.close();
outFile.close();
}
isInit = true;
}
// Get User's username from variable before initUser() is called (2), or from text file after initUser() is called (1)
public String getUsername(int option) throws IOException
{
if(option == 1)
{
inFile = new Scanner(user);
// Read line 1
String findUsername = inFile.nextLine();
inFile.close();
return findUsername;
}
else if(option == 2)
{
return username;
}
else
{
System.out.println("(!) Invalid option inputted");
return null;
}
}
// Get User's password from variable before initUser() is called (2), or from text file after initUser() is called (1)
public String getPassword(int option) throws IOException
{
if(option == 1)
{
inFile = new Scanner(user);
String findPassword = "";
// Read line 2
for(int i = 0; i < 2; i++)
{
findPassword = inFile.nextLine();
}
inFile.close();
return findPassword;
}
else if(option == 2)
{
return password;
}
else
{
System.out.println("(!) Invalid option inputted");
return null;
}
}
// Get User's nickname from variable before initUser() is called (2), or from text file after initUser() is called (1)
public String getNickname(int option) throws IOException
{
if(option == 1)
{
inFile = new Scanner(user);
String findNickname = "";
// Read line 3
for(int i = 0; i < 3; i++)
{
findNickname = inFile.nextLine();
}
inFile.close();
return findNickname;
}
else if(option == 2)
{
return nickname;
}
else
{
System.out.println("(!) Invalid option inputted");
return null;
}
}
// Get User's birthday from variable before initUser() is called (2), or from text file after initUser() is called (1)
public String getBirthday(int option) throws IOException
{
if(option == 1)
{
inFile = new Scanner(user);
String findBirthday = "";
// Read line 4
for(int i = 0; i < 4; i++)
{
findBirthday = inFile.nextLine();
}
inFile.close();
return findBirthday;
}
if(option == 2)
{
return birthday;
}
else
{
System.out.println("(!) Invalid option inputted");
return null;
}
}
// Get User's credits from variable before initUser() is called (2), or from text file after initUser() is called (1)
public int getCredits(int option) throws IOException
{
if(option == 1)
{
inFile = new Scanner(user);
String findCredits = "";
// Read line 5
for(int i = 0; i < 5; i++)
{
findCredits = inFile.nextLine();
}
inFile.close();
return Integer.parseInt(findCredits);
}
else if(option == 2)
{
return credits;
}
else
{
System.out.println("(!) Invalid option inputted");
return 0;
}
}
// Set the number of credits in a User's text file
public void setCredits(int newCredits) throws IOException
{
credits = newCredits + 0;
this.initUser();
}
// Set the User reference file to help in getting elements from this particular file
public void setUserFile(File newFile)
{
user = newFile;
}
// Check if username and/or password is available
public boolean areOpen() throws IOException
{
File dir = new File("userdata/");
File[] dirFiles = dir.listFiles();
boolean areOpen = true;
for(File file : dirFiles)
{
inFile = new Scanner(file);
String fileUsername = inFile.nextLine();
String filePassword = inFile.nextLine();
if(fileUsername.equals(username) || filePassword.equals(password))
{
areOpen = false;
break;
}
}
return areOpen;
}
// Check if username and password corresponds to a user
public boolean exists() throws IOException
{
File dir = new File("userdata/");
File[] dirFiles = dir.listFiles();
boolean exists = false;
for(File file : dirFiles)
{
inFile = new Scanner(file);
String fileUsername = inFile.nextLine();
String filePassword = inFile.nextLine();
if(fileUsername.equals(username) && filePassword.equals(password))
{
exists = true;
}
}
return exists;
}
// Check if birthday input was formatted correctly
public boolean birthdayFormat()
{
boolean birthdayFormat = true;
if(birthday.charAt(2) != '/' || birthday.charAt(5) != '/')
{
birthdayFormat = false;
}
else
{
int month = Integer.parseInt(birthday.substring(0, 2));
if(month > 12 || month < 1)
{
birthdayFormat = false;
}
else
{
int day = Integer.parseInt(birthday.substring(3, 5));
switch(month)
{
case 1:
// January
if(day > 31 || day < 1)
{
birthdayFormat = false;
}
case 2:
// February
if(day > 28 || day < 1)
{
birthdayFormat = false;
}
case 3:
// March
if(day > 31 || day < 1)
{
birthdayFormat = false;
}
case 4:
// April
if(day > 30 || day < 1)
{
birthdayFormat = false;
}
case 5:
// May
if(day > 31 || day < 1)
{
birthdayFormat = false;
}
case 6:
// June
if(day > 30 || day < 1)
{
birthdayFormat = false;
}
case 7:
// July
if(day > 31 || day < 1)
{
birthdayFormat = false;
}
case 8:
// August
if(day > 31 || day < 1)
{
birthdayFormat = false;
}
case 9:
// September
if(day > 30 || day < 1)
{
birthdayFormat = false;
}
case 10:
// October
if(day > 31 || day < 1)
{
birthdayFormat = false;
}
case 11:
// November
if(day > 30 || day < 1)
{
birthdayFormat = false;
}
case 12:
// December
if(day > 31 || day < 1)
{
birthdayFormat = false;
}
}
}
}
return birthdayFormat;
}
// Parse the char[] input of a jPasswordField to a string
public static String parsePassword(char[] myPassword)
{
String loginPassword = "";
for(char character : myPassword)
{
loginPassword += character;
}
return loginPassword;
}
public String toString()
{
return "New user registered at " + user;
}
}