-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
213 lines (197 loc) · 5.94 KB
/
main.cpp
File metadata and controls
213 lines (197 loc) · 5.94 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
#include <iostream>
#include <algorithm>
#include <map>
#include <iomanip>
#include "Database.h"
#include "UserManagment.h"
#include "../helper.h"
#include "validator.h"
using namespace std;
int main()
{
cout<<fixed<<setprecision(2);
UserManagement& userManagement = UserManagement::getInstance();
User* user;
string password,email,reason;
map<string,string>userData;
switch(getRegistrationStatus())
{
case 1:
cin.ignore();
cout<<"\n------------------------------------ Sign in --------------------------------------------\n";
do
{
if(!email.empty())
cout<<"invalid email ,please try again.!\n";
cout<<"Enter your email:\n";
getline(cin,email);
}
while(!Validator::checkEmail(email));
do
{
if(!reason.empty())
cout<<reason<<"\n";
cout<<"Enter your password:\n";
getline(cin,password);
}
while(!Validator::checkPassword(password,reason));
user = userManagement.signIn(email,password);
if(user!=nullptr)
{
if(user->getRole()==ADMIN)
{
if(!showAdminPermissions(dynamic_cast<Admin&>(*user)))
{
delete user;
}
}
else if(user->getRole()==SELLER)
{
if(!showSellerPermissions(dynamic_cast<Seller&>(*user)))
{
delete user;
}
}
else
{
if(!showCustomerPermissions(dynamic_cast<Customer&>(*user)))
{
delete user;
}
}
}
break;
case 2:
cin.ignore();
cout<<"\n------------------------------------ Sign up --------------------------------------------\n";
do
{
if(!userData["userName"].empty())
cout<<"user name must not contain space ,please try again.!\n";
cout<<"Enter user name:\n";
getline(cin,userData["userName"]);
}
while(userData["userName"].find(' ')!=string::npos);
do
{
if(!reason.empty())
cout<<reason<<"\n";
cout<<"Enter password:\n";
getline(cin,userData["password"]);
}
while(!Validator::checkPassword(userData["password"],reason));
do
{
if(!email.empty())
cout<<"invalid email ,please try again.!\n";
cout<<"Enter email:\n";
getline(cin,userData["email"]);
}
while(!Validator::checkEmail(userData["email"]));
do
{
if(!userData["phoneNumber"].empty())
cout<<"invalid phone number ,please try again.\n";
cout<<"Enter phone number:\n";
getline(cin,userData["phoneNumber"]);
}
while(!Validator::checkPhoneNumber(userData["phoneNumber"]));
cout<<"What`s your role:\n";
cout<<"1 - Customer\n2 - Seller\n3 - Admin\n";
int myRole;
do
{
cout<<"Enter number of your role:\n";
if (!(cin >> myRole))
{
cin.clear();
cin.ignore(1000, '\n');
}
if(myRole==1)
{
userData["role"] = CUSTOMER;
break;
}
else if(myRole==2)
{
userData["role"] = SELLER;
break;
}
else if(myRole==3)
{
userData["role"] = ADMIN;
break;
}
else
{
cout<<"invalid command\n";
}
}
while(true);
if(userData["role"]==SELLER||userData["role"]==CUSTOMER)
userData["joinDate"] = getTodayDate();
if(userData["role"]==CUSTOMER)
{
cout<<"Enter your Address: ";
cin.ignore();
getline(cin,userData["address"]);
userData["address"] = formatAddress(userData["address"]);
cout << "\nPlease choose your payment method:\n";
cout << "1 - Cash on Delivery\n";
cout << "2 - Credit Card\n";
cout << "3 - Debit Card\n";
cout << "4 - PayPal\n";
cout << "5 - Wallet\n";
int number = getMyChoice("Enter number of payment method: ",1,5);
switch (number)
{
case 1:
userData["paymentMethod"] = "Cash on Delivery";
break;
case 2:
userData["paymentMethod"] = "Credit Card";
break;
case 3:
userData["paymentMethod"] = "Debit Card";
break;
case 4:
userData["paymentMethod"] = "PayPal";
break;
case 5:
userData["paymentMethod"] = "Wallet";
break;
default:
userData["paymentMethod"] = "Unknown";
}
userData["paymentMethod"] = toCamelCase(userData["paymentMethod"]);
}
bool signUpRes = userManagement.signUp(userData);
if(signUpRes)
{
user = getUserObject(userData);
if(user->getRole()==ADMIN)
{
if(!showAdminPermissions(dynamic_cast<Admin&>(*user)))
{
delete user;
}
}
else if(user->getRole()==SELLER)
{
if(!showSellerPermissions(dynamic_cast<Seller&>(*user)))
{
delete user;
}
}
else
{
if(!showCustomerPermissions(dynamic_cast<Customer&>(*user)))
{
delete user;
}
}
}
break;
}
return 0;
}