-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFramework.cpp
More file actions
479 lines (441 loc) · 14.2 KB
/
Copy pathFramework.cpp
File metadata and controls
479 lines (441 loc) · 14.2 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
#include <iostream>
#include <string>
#include <iomanip>
#include <fstream>
#include "Classes\Data Structures\Hash.h"
#include "Classes\User.h"
using namespace std;
void DisplayLogo();
void Readfromfile(fstream&,HashTable <User*>);
int LoggedinSuccess(HashTable<User*>&, string, string);
int main()
{
int menu = 0;
int menu1=0;
char input1;
string user;
string password;
HashTable <User*> Data;
//Read data of the users from an input file (We need 25 users...)
string filename;
filename = "UserData.txt"; //Change for address of this file
fstream UserFile;
UserFile.open(filename, ios::in | ios::out);
Queue<string> KeysHash;
//Read keys of hash table and put them in a queue
if (UserFile)
{
for (int cont = 0; UserFile.peek() != EOF; cont++)
{
getline(UserFile, user);
KeysHash.add(user);
}
}
//For all users of the hash table get their file and read their info
for (int i = 0; i < KeysHash.numEle(); i++,KeysHash.pop()) //I will change this later :)
{
filename=KeysHash.get()+".txt";
UserFile.open(filename, ios::in | ios::out);
Readfromfile(UserFile, Data);
}
do
{
DisplayLogo();
input1 = '\0';
cout << " Welcome to Twitter. How may we assist you?..." << endl<<endl;
cout << " Please enter 'L' to log in, 'N' to create a new account, or 'Q' to quit.\n ";
cin.get(input1);
input1 = toupper(input1);
cin.clear();
cin.ignore(numeric_limits <streamsize> ::max(), '\n');
while (input1 != 'L' && input1 != 'N' && input1 != 'Q')
{
cout << "\n Invalid input." << endl<<endl;
cout << string(94, '-')<<endl;
cout << "\n Please enter 'L' to log in, 'N' to create a new account, or 'Q' to quit.\n ";
cin.get(input1);
input1 = toupper(input1);
cin.clear();
cin.ignore(numeric_limits <streamsize> ::max(), '\n');
}
cout <<endl <<string(94, '-') << endl<<endl;
switch (input1)
{
case 'L':
{
menu1 = 0;
cout << " Please enter your username: ";
getline(cin, user);
//check user against table
while (Data.inSet(user) == false) //Search in the hash table for user
{
cout << "\n I'm sorry, that username is not in our data banks. Please try again..." << endl << endl;
cout << " Username: ";
getline(cin, user); //loop this
}
cout << "\n Please enter your password:";
getline(cin, password);
User* obj = new User;
obj = Data.getData(user);
//check password in the hash table
while (obj->matchPassword(password) == false) //if not in table
{
cout << "\nI'm sorry, that password is incorrect. Please try again..." << endl << endl;
cout << " Password: ";
getline(cin, password); //loop this
}
delete obj;
//on succcessful login you can do stuff
cout << "\n You have successfully logged in." << endl;
do
{
menu1 = LoggedinSuccess(Data, user, password);
} while (menu1 == 0);
break;
}
case 'N':
{
cout << " Please enter your desired username: ";
getline(cin, user);
//check if username is taken or is viable
while (Data.inSet(user) == true) //if not viable
{
cout << "\n I'm sorry, that username is not available. Please try again." << endl;
cout << " Username: ";
getline(cin, password); //loop this
}
cout << "\n Please enter your desired password: ";
getline(cin, password);
//check if password is viable ?????Why?????
while (false) //if not viable
{
cout << "I'm sorry, that password is unavailable. Please try again." << endl;
getline(cin, password); //loop this
}
//Hash table needs to take care of dynamically allocated memory
User* cur = new User(user, password);
Data.addItem(user, cur);
cout << "\n\n Your account has been successfully created." << endl;
cout << string(94, '=')<<endl<<endl;
do
{
menu1=LoggedinSuccess(Data, user, password);
} while (menu1 == 0);
break;
}
case 'Q':
cout << "Thank you for using Twitter. Good bye!" << endl;
menu = 1;
break;
}
} while (menu == 0);
return 0;
}
void DisplayLogo()
{
cout << string(94, '=') << endl << endl;
cout << " /$$$$$$$$ /$$ /$$ /$$ .--. " << endl;
cout << "|__ $$__/ |__/ | $$ | $$ .' o \\__ " << endl;
cout << " | $$ /$$ /$$ /$$ /$$ /$$$$$$ /$$$$$$ /$$$$$$ /$$$$$$ _.-' , ( ` " << endl;
cout << " | $$| $$ | $$ | $$| $$|_ $$_/|_ $$_/ /$$__ $$ /$$__ $$ _.-'' ,;; | " << endl;
cout << " | $$| $$ | $$ | $$| $$ | $$ | $$ | $$$$$$$$| $$ \\__/ _.-=' _,' ,,;;;' " << endl;
cout << " | $$| $$ | $$ | $$| $$ | $$ /$$| $$ /$$| $$_____/| $$ .-'`_.- '``-..,,;;;;:' " << endl;
cout << " | $$| $$$$$/$$$$/| $$ | $$$$/| $$$$/| $$$$$$$| $$ `''` `\\`\\ " << endl;
cout << " |__/ \\_____/\\___/ |__/ \\___/ \\___/ \\_______/|__/ /^\\\\\\ " << endl << endl;
cout << string(94, '=') << endl << endl;
}
void Readfromfile(fstream& UserFile,HashTable<User*> Data)
{
if (UserFile)
{
for (int cont = 0; UserFile.peek() != EOF; cont++)
{
User* userobj = new User;
string user, passwr;
int NFollowrs, NFollowng, NTweets, NRetweets, NTNewsF;
List<UserTweet>Tweets;
string tweet;
int likes, reTweets;
time_t postTime;
List <UserTweet> retweets;
AVLTree <UserTweet> newsF;
AVLTree <string> Followrs;
string followr;
AVLTree <string> Followng;
string followng;
getline(UserFile, user);
userobj->setUsername(user);
getline(UserFile, passwr);
userobj->setPassword(passwr);
UserFile >> NFollowrs;
userobj->setFollowers(NFollowrs);
UserFile >> NFollowng;
userobj->setFollowing(NFollowng);
UserFile >> NTweets;
userobj->setNumTweets(NTweets);
UserFile >> NRetweets;
userobj->setNumRTweets(NRetweets);
UserFile >> NTNewsF;
userobj->setNumNewsF(NTNewsF);
//Read tweets from input file
cin.clear();
cin.ignore();
for (int i = 0; i < NTweets; i++)
{
getline(UserFile, tweet);
Tweet *Tweetobj = NULL;
Tweetobj->setUser(user);
Tweetobj->setTweets(tweet);
UserFile >> likes;
Tweetobj->setlikes(likes);
UserFile >> reTweets;
Tweetobj->setRT(reTweets);
UserFile >> postTime;
Tweetobj->setpostim(postTime);
UserTweet Usertweetobj;
Usertweetobj.setPost(Tweetobj); //Does not take into account Tweet* rePost and bool liked, reTweet..... WRONG
Tweets.addFront(Usertweetobj);
}
//Read Retweets from input file
cin.clear();
cin.ignore();
for (int i = 0; i < NRetweets; i++)
{
getline(UserFile, tweet);
ReTweet *RTweetobj = NULL;
RTweetobj->setUser(user);
RTweetobj->setTweets(tweet);
UserFile >> likes;
RTweetobj->setlikes(likes);
UserFile >> reTweets;
RTweetobj->setRT(reTweets);
UserFile >> postTime;
RTweetobj->setpostim(postTime);
UserTweet Usertweetobj;
Usertweetobj.setPost(RTweetobj); //Does not take into account Tweet* rePost and bool liked, reTweet..... WRONG
Tweets.addFront(Usertweetobj);
}
//Read newsfeed from input file
cin.clear();
cin.ignore();
for (int i = 0; i < NTNewsF; i++)
{
getline(UserFile, tweet);
Tweet *Tweetobj = NULL;
Tweetobj->setUser(user);
Tweetobj->setTweets(tweet);
UserFile >> likes;
Tweetobj->setlikes(likes);
UserFile >> reTweets;
Tweetobj->setRT(reTweets);
UserFile >> postTime;
Tweetobj->setpostim(postTime);
UserTweet Usertweetobj;
Usertweetobj.setPost(Tweetobj); //Does not take into account Tweet* rePost... WRONG
newsF.add(Usertweetobj);
}
//Read followers from input file
for (int i = 0; i < NFollowrs; i++)
{
getline(UserFile, followr);
Followrs.add(followr);
//Add this tree to the user object......
}
//Read following from input file
for (int i = 0; i < NFollowng; i++)
{
getline(UserFile, followng);
Followng.add(followng);
//Add this tree to the user object
}
Data.addItem(user,userobj); //Put all (not really) this information in the hash table :D
}
}
}
int LoggedinSuccess(HashTable<User*>& Data,string user,string password)
{
User* USERobj = new User;
USERobj = Data.getData(user);
int input2, menu1=0;
system("pause");
system("CLS");
DisplayLogo();
cout << " Hi " << user << ", What would you like to do?..." << endl << endl;
cout << "\t1) View my followers" << endl;
cout << "\t2) View who I am following " << endl;
cout << "\t3) Search for people to follow" << endl;
cout << "\t4) View my Tweets" << endl;
cout << "\t5) View my Newsfeed" << endl;
cout << "\t6) Write a Tweet" << endl;
cout << "\t7) Delete my account" << endl;
cout << "\t8) Logout" << endl << endl;
cout << " Please insert the number of your choice: ";
cin >> input2;
while ((input2<1) && (input2>8))
{
cout << " Invalid input." << endl;
cout << " Try again... Please insert the number of your choice: ";
cin >> input2;
}
cout <<endl <<endl<<string(94, '=')<<endl<<endl;
switch (input2)
{
case 1://View Followers
{
if (USERobj->getFollowers() == false)
cout << " Nobody is following you :("<<endl<<endl;
else{
List<string>* followrsList = new List<string>;
USERobj->toListFollowers();
int lenght = followrsList->countNodes();
cout << " Your Followers are:" << endl;
for (int i = 0; i < lenght; i++)
cout << followrsList->getDataPos(i) << endl;
cout << endl << string(94, '=') << endl << endl;
delete followrsList;
}
break;
}
case 2: //View who are you following and unfollow someone
{
if (USERobj->getFollowing() == false)
cout << " You are not following anybody" << endl << endl;
else{
cout << " You are Following:" << endl;
List<string>* followngList = new List<string>;
USERobj->toListFollowing();
int lenght = followngList->countNodes();
for (int i = 0; i < lenght; i++)
cout << followngList->getDataPos(i) << endl;
char choice;
cout << endl << " Would you like to unfollow someone? Press 'Y' for Yes, or 'N' for No" << endl;
cin.get(choice);
choice = toupper(choice);
cin.clear();
cin.ignore(numeric_limits <streamsize> ::max(), '\n');
while (choice != 'Y' && choice != 'N')
{
cout << "\n Invalid input." << endl << endl;
cout << string(94, '-') << endl;
cout << "\n Please press 'Y' for Yes, or 'N' for No\n ";
cin.get(choice);
choice = toupper(choice);
cin.clear();
cin.ignore(numeric_limits <streamsize> ::max(), '\n');
}
if (choice == 'Y')
{
string tounfollow;
cout << " Please insert the username of the person you would like to unfollow\n";
getline(cin, tounfollow);
while (Data.inSet(tounfollow) == false)
{
cout << " This person does not exist in the people you follow" << endl;
cout << " Please try again...\n";
getline(cin, tounfollow);
}
char choice2;
cout << "\n\n Are you sure you would like to unfollow " << tounfollow << " ?";
cin.get(choice2);
choice2 = toupper(choice2);
cin.clear();
cin.ignore(numeric_limits <streamsize> ::max(), '\n');
while (choice2 != 'Y' && choice2 != 'N')
{
cout << "\n Invalid input." << endl << endl;
cout << string(94, '-') << endl;
cout << "\n Please press 'Y' for Yes, or 'N' for No\n ";
cin.get(choice2);
choice2 = toupper(choice2);
cin.clear();
cin.ignore(numeric_limits <streamsize> ::max(), '\n');
}
if (choice2 == 'Y')
{
followngList->delInfo(tounfollow);
//Is there a function in the hash table to update the data?
//Go to the person you unfollowed and erase your name from the followers list
}
}
delete followngList;
}
break;
}
case 3:
//case follow people
//display people you aren't following (is this possible?) If not possible, show all people, but distinguish who you're already following
//ask for username and if you're sure
//if sure follow, if not go back to view all people, q to quit
break;
case 4:
//case view my tweets
//cout my tweets
//possible delete a tweet? Edit a tweet?
break;
case 5:
//case view newsfeed
//cout newsfeed
//like a tweet? comment on tweet? retweet? (how do we input which tweet we want to act on?
break;
case 6:
//Case write a tweet
break;
case 7:
{
cout << "Please enter your username, or 'exit' to quit." << endl;
cin >> user;
cin.clear();
cin.ignore(numeric_limits <streamsize> ::max(), '\n');
//check user against table
if (false) //if not in table
{
cout << "I'm sorry, that username is not in our data banks. Please try again." << endl;
cin >> user; //loop this
}
cout << "Please enter your password, or exit to quit." << endl;
cin >> password;
cin.clear();
cin.ignore(numeric_limits <streamsize> ::max(), '\n');
//check user against hash
if (false) //if not in table
{
cout << "I'm sorry, that password is incorrect. Please try again." << endl;
cin >> password; //loop this
}
char inputDelete = '\0';
cout << "Are you sure you wish to delete your account? (Y/N)" << endl;
cin.get(inputDelete);
inputDelete = toupper(inputDelete);
cout << inputDelete << endl;
cin.clear();
cin.ignore(numeric_limits <streamsize> ::max(), '\n');
while (inputDelete != 'Y' && inputDelete != 'N')
{
cout << "Invalid input." << endl;
cout << "Are you sure you wish to delete your account? (Y/N)" << endl;
cin.get(inputDelete);
inputDelete = toupper(inputDelete);
cin.clear();
cin.ignore(numeric_limits <streamsize> ::max(), '\n');
}
if (inputDelete == 'Y')
{
//delete account
cout << "Your account has successfully been deleted." << endl;
cout << "Logging out. Good bye!" << endl;
menu1 = 1;
}
else if (inputDelete == 'N')
{
cout << "Canceling deletion." << endl;
}
break;
}
case 8:
cout << "Logout successful." << endl;
cout << "Good bye! See you again next time!" << endl;
menu1 = 1;
break;
}
return menu1;
}