-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUser.cpp
More file actions
114 lines (87 loc) · 2.34 KB
/
User.cpp
File metadata and controls
114 lines (87 loc) · 2.34 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
#include "User.h"
#include "helpers.h"
#include "GlobalConstants.h"
using namespace LENGTHS;
User::User(size_t id, const MyString& firstName, const MyString& lastName, const MyString& password, size_t points)
: DataObject(id), firstName(firstName), lastName(lastName), password(password), points(points) {
}
bool User::comparePassword(const MyString& password) const
{
return this->password == password;
}
bool User::setFirstName(const MyString& firstName)
{
if (!isNameValid(firstName))
return false;
this->firstName = firstName;
return true;
}
bool User::setLastName(const MyString& lastName)
{
if (!isNameValid(lastName))
return false;
this->lastName = lastName;
return true;
}
bool User::setPassword(const MyString& password)
{
if (!isPasswordValid(password))
return false;
this->password = password;
return true;
}
void User::addPoints(size_t pointsCount)
{
this->points += pointsCount;
}
const MyString& User::getFirstName() const
{
return firstName;
}
const MyString& User::getLastName() const
{
return this->lastName;
}
size_t User::getPoints() const
{
return this->points;
}
void User::serialize(std::ostream& os) const
{
os << getId() << std::endl
<< getFirstName() << std::endl
<< getLastName() << std::endl
<< password << std::endl
<< getPoints() << std::endl << std::endl;
}
void User::deserialize(std::istream& is)
{
char emptyLine = is.get();
//std::cout << emptyLine;
size_t id;
is >> id;
setId(id);
emptyLine = is.get();
is >> firstName;
is >> lastName;
is >> password;
is >> points;
emptyLine = is.get();
//std::cout << id << firstName << lastName << password << points;
}
bool User::isNameValid(const MyString& name) const
{
return !contains(name, [](char symbol) {return symbol == ' '; });
}
bool User::isPasswordValid(const MyString& password) const
{
if (password.length() < MIN_LEN_PASS || password.length() > MAX_LEN_PASS)
return false;
if (!contains(password, isCharDigit))
return false;
if (!contains(password, isUpperLetter))
return false;
if (!contains(password, isLowerLetter))
return false;
return true;
}