-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
580 lines (565 loc) · 15.4 KB
/
Copy pathmain.cpp
File metadata and controls
580 lines (565 loc) · 15.4 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
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
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
#include <iostream>
#include <map>
#include <string>
#include <iomanip>
#include <ctime>
#include <fstream>
#include <sstream>
#include <stdlib.h>
#include <cstdio>
using namespace std;
string usr;//global variable to held user name over the current session
class updpass//class to change password of users, called from any user
{
public:
void update()
{
struct data
{
string pass,type;
};
map<string,data> usrmap;
data dt;
string id;
string line;
fstream file;
file.open("users.txt",ios::in);
while(getline(file,line))
{
string uid,upass,utype,newpass1,newpass2;
stringstream stream(line);
stream>>uid>>upass>>utype;
dt.pass = upass;
dt.type = utype;
id = uid;
if(uid == usr)
{
string oldpass;
cout<<"Enter Old Password: ";
cin>>oldpass;
if(oldpass == upass)
{
cout<<"Enter New Password: ";
cin>>newpass1;
cout<<"Re-enter New Password: ";
cin>>newpass2;
if(newpass1 == newpass2)
{
dt.pass = newpass1;
}
else{cout<<"Try Again"<<endl;}
}
else
{
cout<<"Wrong password"<<endl;
return;
}
}
usrmap.insert(make_pair(id,dt));
}
file.close();
map<string,data>::iterator it = usrmap.begin();
rename("users.txt", "users1.txt");
ofstream nfile;
nfile.open("users.txt");
// Iterate through the map
while (it != usrmap.end())
{
nfile<<it->first<<" "<<it->second.pass<<" "<<it->second.type<<"\n";
++it;
}
nfile.close();
remove("users1.txt");
}
};
class manager
{
void newuser()
{
cout<<"new user"<<endl;
string id,pass,type;
int typenum;
cout<<"Enter user ID: ";
cin>>id;
string line;
fstream dfile;
dfile.open("users.txt",ios::in);
string d,p,m;
while(getline(dfile,line))
{
stringstream stream(line);
stream>>d>>p>>m;
if(id == d)
{
cout<<"id used"<<endl;
return;
}
}
cout<<"Enter password: ";
cin>>pass;
cout<<" 1 teller - 2 employee";
cout<<" Enter type (choose number): ";
cin>>typenum;
if(typenum == 1)
{
type ="teller";
}
else if(typenum == 2)
{
type = "employee";
}
else
{
cout<<"type error"<<endl;
return;
}
ofstream file;
file.open("users.txt",ios::app);
file<<id<<" "<<pass<<" "<<type<<"\n";
file.close();
}
void updatepass()
{
updpass up;
up.update();
}
public:
void start()
{
int dex =1;
while(dex > 0)
{
cout<<"1.New User"<<endl;
cout<< "2.Change Password"<<endl;
cout<<"3.Logout"<<endl;
if(cin>>dex)
{
if(dex == 1)
{
newuser();
}
else if(dex == 2)
{
updatepass();
}
else if(dex == 3)
{
system("cls");
break;
}
else
{
cout<<"Enter a valid choice"<<endl;
cin.clear();
dex = 1;
cin.ignore(40,'\n');
}
}
else
{
cout<<"Enter a valid choice"<<endl;
cin.clear();
dex = 1;
cin.ignore(40,'\n');
}
}
}
};
class teller
{
map<string,string>balance;
void fill()//fill map with accounts data
{
fstream bfile;
bfile.open("balance.txt",ios::in);
string line;
while(getline(bfile,line))
{
string accnum;
string bln;//rasid
stringstream stream(line);
stream>>accnum>>bln;
balance.insert({{accnum,bln}});
}
bfile.close();
}
void save()// save accounts data to accounts file after withdraw or deposit
{
map<string,string>::iterator it = balance.begin();
rename("balance.txt", "balance1.txt");
ofstream nfile;
nfile.open("balance.txt",ios::app);
// Iterate through the map and save data to acc file
while (it != balance.end())
{
nfile<<it->first<<" "<<it->second<<"\n";
++it;
}
nfile.close();
remove("balance1.txt");
}
string gettime() //get current date and time
{
time_t rawtime;
struct tm * timeinfo;
char buffer[80];
time (&rawtime);
timeinfo = localtime(&rawtime);
strftime(buffer,sizeof(buffer),"%d-%m-%Y %H:%M:%S",timeinfo);
std::string str(buffer);
return str;
}
void withdraw()
{
fill();
cout<<"withdraw"<<endl;
string accno;
cout<<"Enter Account Number: ";
cin>>accno;
double amount;
cout<<"Enter withdraw amount: ";
cin>>amount;
cout<<"are you sure withdraw "<<amount<<" from account number" <<accno<<endl;
int ansr;
cout<<"1.agree \n2.cancel"<<endl;
cin>>ansr;
if(ansr == 1)
{
string tmp = balance.at(accno);
double stock = stod(tmp);
if(stock >= amount)
{
double res = stock - amount;
balance[accno] = to_string(res);
save();
ofstream tfile;
tfile.open("trans.txt",ios::app);
tfile<<accno<<" "<<amount<<" "<<gettime()<<" "<<"withdraw \n";
tfile.close();
}
else
{
cout<<"Stock is not enough";
}
}
}
void deposit()
{
fill();
cout<<"deposit"<<endl;
string accno;
cout<<"Enter Account Number: ";
cin>>accno;
double amount;
cout<<"Enter deposit amount: ";
cin>>amount;
cout<<"are you sure deposit "<<to_string(amount)<<" from account number " <<accno<<endl;
int ansr;
cout<<"1.agree \n2.cancel"<<endl;
cin>>ansr;
if(ansr == 1)
{
string tmp = balance.at(accno);
double stock = stod(tmp);
double res = stock + amount;
balance[accno] = to_string(res);
save();
ofstream tfile;
tfile.open("trans.txt",ios::app);
tfile<<accno<<" "<<amount<<" "<<gettime()<<" "<<"deposit \n";
tfile.close();
}
}
void statement()
{
cout<<"statment"<<endl;
string accnum;
cout<<"enter account number: ";
cin>>accnum;
fstream sfile;
sfile.open("trans.txt",ios::in);
string accno,amount,date,tm,type;
string line;
while(getline(sfile,line))
{
stringstream stream(line);
stream>>accno>>amount>>date>>tm>>type;
if(accno == accnum)
{
cout<<date<<" "<<tm<<" "<<amount<< " "<<type<<endl;
}
}
sfile.close();
}
void getstock()
{
cout<<"stock"<<endl;
string accnum;
cout<<"enter account number: ";
cin>>accnum;
fstream sfile;
sfile.open("balance.txt",ios::in);
string accno,amount;
string line;
while(getline(sfile,line))
{
stringstream stream(line);
stream>>accno>>amount;
if(accno == accnum)
{
cout<<"Account number: "<<accnum<<" --> Stock: "<<amount<<endl<<endl;
}
}
sfile.close();
}
void updatepass()//change password of current user
{
cout<<"update password"<<endl;
updpass up;
up.update();
}
public:
void start()
{
int dex = 1;
while(dex > 0 && dex < 7)
{
cout<<"1.Withdraw"<<endl;
cout<<"2.Deposit"<<endl;
cout<<"3.Statement"<<endl;
cout<<"4.get stock"<<endl;
cout<<"5.update Password"<<endl;
cout<<"6.Logout"<<endl;
if((cin>>dex))
{
if(dex == 1)
{
withdraw();
}
else if(dex == 2)
{
deposit();
}
else if(dex == 3)
{
statement();
}
else if(dex == 4)
{
getstock();
}
else if(dex == 5)
{
updatepass();
}
else if(dex == 6)
{
system("cls");
break;
}
else
{
cout<<"Enter a valid choice"<<endl;
cin.clear();
dex = 1;
cin.ignore(40,'\n');
}
}
else
{
cout<<"Enter a valid choice"<<endl;
cin.clear();
dex = 1;
cin.ignore(40,'\n');
}
}
}
};
class empl
{
void newacc()
{
string accnum = to_string(1);
cout<<"New account"<<endl;
struct nacc
{
string name,tel,mobile,address;
};
nacc nac;
map<string,nacc> accmap;
string accno;
fstream file;
file.open("acc.txt",ios::in);
string line;
string aname,atel,amobile,aaddress;
while(getline(file,line))
{
stringstream ss(line);
ss>>accno>>aname>>atel>>amobile>>aaddress;
nac.name = aname;
nac.tel = atel;
nac.mobile = amobile;
nac.address = aaddress;
accmap.insert(make_pair(accno,nac));
}
file.close();
if(!accmap.empty())
{
int num =accmap.size() + 1;
accnum = to_string(num);
}
string name,tel,mobile,address;
cout<<"Account number: "<<accnum<<endl;
cout<<"enter name: ";
cin.ignore( 1024, '\n' ) ;
getline(cin, name ) ;
cout<<"enter tel: ";
cin>>tel;
cout<<"enter mobile: ";
cin>>mobile;
cout<<"enter address: ";
cin.ignore( 1024, '\n' ) ;
getline(cin, address ) ;
cout<< "ok"<<endl;
nacc nc;
nc.name = name;
nc.tel = tel;
nc.mobile = mobile;
nc.address = address;
accmap.insert(make_pair(accnum,nc));
ofstream acfile;
acfile.open("acc.txt",ios::app);
acfile<<accnum<<" '"<<name<<"' "<<tel<<" "<<mobile<<" '"<<address<<"'\n";
acfile.close();
// اضافة رقم الحساب الى ملف الارصدة
ofstream bfile;
bfile.open("balance.txt",ios::app);
bfile<<accnum<<" "<<0<<"\n";
bfile.close();
}
void updatepass()
{
cout<<"Update password"<<endl;
updpass up;
up.update();
}
public:
void start()
{
int dex =1;
while(dex > 0)
{
cout<<"1.New Account"<<endl;
cout<<"2.update Password"<<endl;
cout<<"3.Logout"<<endl;
if(cin>>dex)
{
if(dex == 1)
{
newacc();
}
else if(dex == 2)
{
updatepass();
}
else if(dex == 3)
{
system("cls");
break;
}
else
{
cout<<"Enter a valid choice"<<endl;
cin.clear();
dex = 1;
cin.ignore(40,'\n');
}
}
else
{
cout<<"Enter a valid choice"<<endl;
cin.clear();
dex = 1;
cin.ignore(40,'\n');
}
}
}
};
int main()
{
string id,pass;
int dex =1;
while(dex == 1)
{
cout<<"1.Login"<<endl;
cout<<"2.End"<<endl;
if(cin>>dex)
{
if(dex == 1)
{
cout<<"Enter Id: ";
cin>>id;
cout<<"Enter password: ";
cin>>pass;
string fid,fpass,type;
string line;
fstream file;
file.open("users.txt",ios::in);
bool y_n = false;
while(getline(file,line))
{
stringstream stream(line);
stream>>fid>>fpass>>type;
if(id == fid)
{
y_n=true;
usr = id;
if(pass==fpass){
if(type == "manager")
{
manager mg;
mg.start();
}
else if(type == "teller")
{
teller lr;
lr.start();
}
else if(type == "employee")
{
empl emp;
emp.start();
}
}
else
{
cout<<"ID or Password in error"<<endl;
break;
}
}
}
if(y_n==false){cout<<"User is not found."<<endl;}
file.close();
}
else if(dex == 2)
{
break;
}
else
{
cout<<"Enter a valid choice"<<endl;
cin.clear();
dex = 1;
cin.ignore(40,'\n');
}
}
else
{
cout<<"Enter a valid choice"<<endl;
cin.clear();
dex = 1;
cin.ignore(40,'\n');
}
}
return 0;
}