-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEmployeeMenu.cpp
237 lines (191 loc) · 6.46 KB
/
EmployeeMenu.cpp
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
#include "EmployeeMenu.h"
//private-----------------------------
vector<string> EmployeeMenu::allowedCommands = {"help", "addnewclient", "removeclient", "createnewaccount",
"addnewcard", "removeaccount", "removecard",
"clientsreport", "individualreport", "logout"};
Client EmployeeMenu::inputNewClInfo(){
string EGN;
std::cout << "$ Input EGN: " << std::endl << ">";
std::cin >> EGN;
string firstName;
std::cout << "$ Input first name: " << std::endl << ">";
std::cin >> firstName;
string middleName;
std::cout << "$ Input middle name: " << std::endl << ">";
std::cin >> middleName;
string lastName;
std::cout << "$ Input last name: " << std::endl <<">";
std::cin >> lastName;
int day,month,year;
std::cout << "$ Input date of birth(DD MM YYYY): " << std::endl << ">";
std::cin >> day >> month >> year;
string phoneNumber;
std::cout << "$ Input phone number: " << std::endl << ">";
std::cin >> phoneNumber;
string address;
std::cout << "$ Input address: " << std::endl << ">";
std::cin.get();
getline(std::cin, address);
address.insert(0, "\"");
address += "\"";
Client newClient(EGN, firstName, middleName, lastName, Date(day,month, year), phoneNumber, address);
return newClient;
}
string EmployeeMenu::inputRemoveClInfo(){
string EGN;
std::cout << "$ Input EGN:" << std::endl << ">";
std::cin >> EGN;
return EGN;
}
void EmployeeMenu::createAccountInfo(){
string EGN;
std::cout << "$ Input EGN: " << std::endl << ">";
std::cin >> EGN;
double initAmount;
std::cout << "$ Input initial amount: " << std::endl << ">";
std::cin >> initAmount;
Client& client = database->getClientByEGN(EGN);
string newIBAN = client.generateIBAN();
client.addAccount(BankAccount(newIBAN, initAmount));
}
void EmployeeMenu::removeAccountInfo(){
string EGN;
std::cout << "$ Input EGN: " << std::endl << ">";
std::cin >> EGN;
Client& client = database->getClientByEGN(EGN);
string IBAN;
std::cout << "$ Input IBAN: " << std::endl << ">";
std::cin >> IBAN;
client.removeAccount(IBAN);
}
void EmployeeMenu::createCardInfo(){
string EGN;
std::cout << "$ Input EGN: " << std::endl << ">";
std::cin >> EGN;
Client& client = database->getClientByEGN(EGN);
string IBAN;
std::cout << "$ Input IBAN: " << std::endl << ">";
std::cin >> IBAN;
string newCardNumber = client.generateCardNumber();
string newPIN = Card::generateRandPIN();
client.addCard(IBAN, Card(newCardNumber, newPIN));
}
void EmployeeMenu::removeCardInfo(){
string EGN;
std::cout << "$ Input EGN: " << std::endl << ">";
std::cin >> EGN;
Client& client = database->getClientByEGN(EGN);
string IBAN;
std::cout << "$ Input IBAN: " << std::endl << ">";
std::cin >> IBAN;
string cardNumber;
std::cout << "$ Input card number: " << std::endl << ">";
std::cin >> cardNumber;
client.removeCard(IBAN, cardNumber);
}
string EmployeeMenu::inputReportInfo(){
string EGN;
std::cout << "$ Input EGN: " << std::endl << ">";
std::cin >> EGN;
return EGN;
}
//public------------------------------
EmployeeMenu::EmployeeMenu(BankDatabase* database): database(database){}
void EmployeeMenu::analyzeCommand(const string& command){
if(command == allowedCommands[0]){
printHelp();
}else if(command == allowedCommands[1]){
addNewClient();
}else if(command == allowedCommands[2]){
removeClient();
}else if(command == allowedCommands[3]){
createNewAccount();
}else if(command == allowedCommands[4]){
addNewCard();
}else if(command == allowedCommands[5]){
removeAccount();
}else if(command == allowedCommands[6]){
removeCard();
}else if(command == allowedCommands[7]){
printClientsReport();
}else if(command == allowedCommands[8]){
printIndividualReport();
}else if(command == allowedCommands[9]){
exit();
}else{
printInvalidCommandMessage();
printHelpMessage();
}
}
void EmployeeMenu::printHelp(){
std::cout << "$ \"addNewClient\": add a new client" << std::endl;
std::cout << "$ \"removeClient\": remove an existing client" << std::endl;
std::cout << "$ \"createNewAccount\": create a new account for a client" << std::endl;
std::cout << "$ \"addNewCard\": add a new card to a client's account" << std::endl;
std::cout << "$ \"removeAccount\": remove client's account" << std::endl;
std::cout << "$ \"removeCard\": remove card from a client's account" << std::endl;
std::cout << "$ \"clientsReport\": get report for all of the bank's clients" << std::endl;
std::cout << "$ \"individualReport\": get report for a single client" << std::endl;
std::cout << "$ \"logout\": logout from your account" << std::endl;
}
void EmployeeMenu::addNewClient(){
try{
Client newClient = inputNewClInfo();
database->addClient(newClient);
printSuccessMessage(NEW_CL_SUCCESS);
}catch(std::logic_error e){
printFailureMessage(e.what());
}
}
void EmployeeMenu::removeClient(){
try{
string EGN = inputRemoveClInfo();
database->removeClient(EGN);
printSuccessMessage(REMOVE_CL_SUCCESS);
}catch(std::logic_error e){
printFailureMessage(e.what());
}
}
void EmployeeMenu::createNewAccount(){
try{
createAccountInfo();
printSuccessMessage(NEW_ACCOUNT_SUCCESS);
}catch(std::logic_error e){
printFailureMessage(e.what());
}
}
void EmployeeMenu::removeAccount(){
try{
removeAccountInfo();
printSuccessMessage(REMOVE_ACCOUNT_SUCCESS);
}catch(std::logic_error e){
printFailureMessage(e.what());
}
}
void EmployeeMenu::addNewCard(){
try{
createCardInfo();
printSuccessMessage(NEW_CARD_SUCCESS);
}catch(std::logic_error e){
printFailureMessage(e.what());
}
}
void EmployeeMenu::removeCard(){
try{
removeCardInfo();
printSuccessMessage(REMOVE_CARD_SUCCESS);
}catch(std::logic_error e){
printFailureMessage(e.what());
}
}
void EmployeeMenu::printClientsReport(){
database->printClientsReport();
}
void EmployeeMenu::printIndividualReport(){
try{
string EGN = inputReportInfo();
database->printIndividualReport(EGN);
}catch(std::logic_error e){
printFailureMessage(e.what());
}
}