-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCreateAccount.java
279 lines (194 loc) · 8.18 KB
/
CreateAccount.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
import java.io.IOException;
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import java.util.*;
class CreateAccount
{
Scanner sc = new Scanner(System.in);
Scanner s = new Scanner(System.in);
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
// Create list of accounts
public static List<Account> accounts = new ArrayList<>();
// Create single account
public Account account = null;
// Function to Create Account
// Time Complexity - O(n)
public void createAccount() throws IOException, InterruptedException
{
System.out.println("\n ===========================================");
System.out.println(" SIGN UP");
System.out.println(" It's quick and easy.");
System.out.println(" ===========================================");
// Local Variables
String fname;
String lname;
String mob;
String email;
String userName;
String password1;
String password2;
String dob;
char gender = 'O';
// Input First Name
System.out.print("\n First Name: ");
fname = br.readLine();
// Input Last Name
System.out.print("\n Last Name: ");
lname = br.readLine();
// Regex for mobile number matching
String regex = "(0/91)?[7-9][0-9]{9}";
// Input Mobile Number and check if it is valid or not
do
{
System.out.print("\n Mobile Number: ");
mob = sc.next();
if (!mob.matches(regex))
System.out.println("\n Invalid Mobile Number! Enter Again!");
} while (!mob.matches(regex));
// Regex for Email ID matching
regex = "^[a-zA-Z0-9+_.-]+@[a-zA-Z0-9.-]+$";
boolean result;
// Input Email ID and check if it is valid or not
do
{
System.out.print("\n Email ID: ");
email = sc.next();
result = email.matches(regex);
if(!result)
System.out.println("\n Email-id is not valid! Enter Again!");
} while(!result);
System.out.println("\n -------------------------------------------");
// Regex to check valid username.
regex = "^[a-z]\\w{3,29}$";
// Compile the Regex
Pattern p = Pattern.compile(regex);
Matcher m;
// Input Username and check if it is valid or not
do {
System.out.print("\n Username: ");
userName = sc.next();
m = p.matcher(userName);
if (!m.matches())
System.out.println("\n Invalid Username! Enter Again!");
} while (!m.matches());
// Input New Password
do
{
System.out.print("\n New Password: ");
password1 = sc.next();
System.out.print("\n Confirm Password: ");
password2 = sc.next();
// Check if New password and Confirmed password matches or not
if(!password1.equals(password2))
{
System.out.println("\n Password Does Not Match! Enter Again!");
}
} while(!password1.equals(password2));
System.out.println("\n -------------------------------------------");
// Regex to check valid DOB
regex = "^(1[0-2]|0[1-9])/(3[01]|[12][0-9]|0[1-9])/[0-9]{4}$";
// Creating a pattern object
Pattern pattern = Pattern.compile(regex);
boolean bool;
// Input DOB and check if it is valid or not
do {
System.out.print("\n Date of Birth(MM/DD/YYYY): ");
dob = sc.next();
m = pattern.matcher(dob);
bool = m.matches();
if (!bool)
System.err.println("\n Invalid Date of Birth! Enter Again!");
} while (!bool);
System.out.println("\n -------------------------------------------");
// Input Gender
int ch;
do {
System.out.println("\n 1. Male\n 2. Female\n 3. Other");
System.out.print("\n Select Gender: ");
ch = sc.nextInt();
switch (ch) {
case 1:
gender = 'M';
break;
case 2:
gender = 'F';
break;
case 3:
gender = 'O';
break;
default:
System.out.println("\n Invalid Selection! Select Again!");
}
} while (ch != 1 && ch != 2 && ch != 3);
System.out.println(" -------------------------------------------");
System.out.print("\n\n\n Press Enter to Continue..... ");
s.nextLine();
MainPage.clearScreen();
// Confirm the Sign UP
int opt;
char ans = 'n';
do
{
System.out.println("\n\t--------------------------------------------------------------");
System.out.println("\n\tEnter 1 to Confirm SIGN UP\n\n");
System.out.println("\t Enter 0 to Cancel\n\n");
System.out.print("\tEnter Here: ");
opt = sc.nextInt();
MainPage.clearScreen(); // Clear Screen
if(opt != 1 && opt != 0)
{
System.out.println("\n\n\n\t\t\t------------------------");
System.out.println("\n\t\t\t Invalid! Enter Again!\n");
System.out.println("\t\t\t------------------------");
System.out.print("\n\n\n Press Enter to Continue..... ");
s.nextLine();
MainPage.clearScreen(); //Clear Screen
continue;
}
if(opt == 1)
break;
if(opt == 0)
{
System.out.println("\n\n\n\n\t\t\t\tAll your information will get discarded!!!");
System.out.print("\n\n\t\t\t\tDo you really want to cancel the sign up process? (y/n): ");
}
ans = sc.next().charAt(0);
System.out.print("\n\n\n Press Enter to Continue..... ");
s.nextLine();
MainPage.clearScreen(); // Clear Screen
if(ans == 'y' || ans == 'Y')
{
System.out.println("\n\n\n\t\t\t------------------------------------------");
System.out.println("\t\t\t SIGN UP Cancelled!");
System.out.println("\t\t\t------------------------------------------");
System.out.print("\n\n\n Press Enter and Return to the HOME PAGE..... ");
s.nextLine();
new ProcessBuilder("cmd", "/c", "cls").inheritIO().start().waitFor();
return;
}
} while(ans == 'n' || ans == 'N');
System.out.println("\n--------------------------------------------------------------");
// Create Account
account = new Account(fname, lname, mob, email, userName, password1, dob, gender);
// Add account in the list
accounts.add(account);
MainPage.clearScreen(); // Clear Screen
System.out.println("\n\n\n\n\t\t\t------------------------------------------\n");
System.out.println("\t\t\t SIGN UP COMPLETED!!!\n");
System.out.println("\t\t\t------------------------------------------");
System.out.print("\n\n\n Press Enter to Continue..... ");
s.nextLine();
MainPage.clearScreen(); // Clear Screen
// Show Created Account Information
System.out.println("\n\n\n\n\t\t\t------------------------------------------\n");
System.out.println("\t\t\t Account Created Successfully!\n");
System.out.println("\t\t\t------------------------------------------");
System.out.println("\n\t\t\t" + account.toString());
System.out.println("\n\t\t\t------------------------------------------");
System.out.print("\n\n\n Press Enter and Return to the HOME PAGE..... ");
s.nextLine();
new ProcessBuilder("cmd", "/c", "cls").inheritIO().start().waitFor();
}
}