-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUser.cpp
98 lines (80 loc) · 2.32 KB
/
User.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
#include "User.h"
#include "Network.h"
//-----------Constructor-----------------
User::User(const string name, const string mail)
{
username = name;
email = mail;
//Network::getInstance().registerUser(*this);
Network::registerUser(*this);
}
//-----------Is that the same user?-----------------
bool operator==(const User a, const User b) { return a.username == b.username; }
bool operator!=(const User a, const User b) { return !(a == b); }
//-------------SET COMPARE, NEEDED TO ORDER-----------
bool operator<(const User u1, const User u2) { return u1.username < u2.username; }
//-------------------METHODS-----------------------
void User::friendship(User u)
{
bool x = Network::usersAreFriends(*this, u);
switch (!x)
{
case true: //add friend
add(*this, u, sent, u.received);
cout << "Friend request has been sent to " << u.username << endl;
break;
case false: //delete friend
remove(*this, u, friends, u.friends);
cout << "User " << u.username << " is not your friend anymore." << endl;
break;
}
}
void User::AnswerR(User u)
{
if (!contains(*this, u, received, u.sent)) {
cout << "Would you like " << u.username << " to be your friend?" << endl;
char ch;
do
{
cout << "Enter 'Y' to accept, 'N' to decline, 'O' to exit." << endl;
std::cin >> ch;
} while (!(ch == 'Y' || ch == 'N' || ch == 'O'));
switch (ch)
{
case 'Y':
handle(*this, u, true);
break;
case 'N':
handle(*this, u, false);
break;
default:
break;
}
}
}
vector<User> User::notFriends()
{
vector<User> net_user = Network::getUsers();
net_user = diff(*this, net_user);
return net_user;
}
User User::select(vector<User> v, int pos) { return v.at(pos); }
void User::post(User u)
{
cout << "posting";
if (username == u.username || Network::usersAreFriends(*this, u))
{
string post;
cout << "What would you like to post?" << endl;
getline(cin, post);
}
}
//-----------Setters-----------------
void User::setUsername(const string& name) { username = name; }
void User::setEmail(const string& mail) { email = mail; }
//-----------Getters-----------------
string User::getUsername() const { return username; }
string User::getEmail() const { return email; }
vector<User> User::getFriends() const { return friends; }
vector<User> User::getSent() const { return sent; }
vector<User> User::getReceived() const { return received; }