-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathValidations.cpp
175 lines (162 loc) · 3.99 KB
/
Validations.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
#include <iostream>
#include <stdlib.h>
#include <fstream>
#include <string>
#include <sstream>
#include <vector>
using namespace std;
bool MainValidation(char& choice)
{
if (choice == 'l' || choice == 'r' || choice == 'q')
{
choice -= ('`' - '@');
return true;
}
if (choice != 'L' && choice != 'R' && choice != 'Q')
{
return false;
}
return true;
}
bool LoggedInValidation(char& choice2)
{
if (choice2 == 'c' || choice2 == 'd' || choice2 == 'l' || choice2 == 't' || choice2 == 'w')
{
choice2 -= ('`' - '@');
return true;
}
if (choice2 != 'C' && choice2 != 'D' && choice2 != 'L' && choice2 != 'T' && choice2 != 'W')
{
return false;
}
return true;
}
bool UsernameLoginValidation(string username, vector<string>& users)
{
for (unsigned int i = 0; i < users.size(); ++i)
{
{
string temp = users[i];
string UsernameVar;
int j = 0;
while (temp[j] != ':')
{
UsernameVar += temp[j];
++j;
}
if (username == UsernameVar)
{
return true;
}
}
}
return false;
}
bool RegisterUsernameValidation(string username)
{
for (unsigned int i = 0; i < username.size(); ++i)
{
if ((username[i] < '!') || (username[i] > '/' && username[i] <= ':') || username[i] > '~' || username[i] == '?')
return false;
}
return true;
}
bool RegisterPasswordValidation(string password)
{
if (password.size() < 5)
{
return false;
}
for (unsigned int i = 0; i < password.size(); ++i)
{
if ((password[i] < '@' || password[i]>'Z') && (password[i] < 'a' || password[i]>'z'))
{
if (password[i] < '0' || password[i]>'9')
{
if ((password[i] != '!' && password[i] != '*' && password[i] != '^') && (password[i] < '#' || password[i]>'&'))
{
return false;
}
}
}
}
int LowerCaseCounter = 0;
int UpperCaseCounter = 0;
int Symbol = 0;
for (unsigned int i = 0; i < password.size(); ++i)
{
if (password[i] >= 'a' && password[i] <= 'z')
{
LowerCaseCounter++;
}
if (password[i] >= 'A' && password[i] <= 'Z')
{
UpperCaseCounter++;
}
if (password[i] == '!' || password[i] == '@' || password[i] == '#' || password[i] == '$' || password[i] == '%')
{
Symbol++;
}
if (password[i] == '^' || password[i] == '&' || password[i] == '*')
{
Symbol++;
}
}
if (LowerCaseCounter < 1 || UpperCaseCounter < 1 || Symbol < 1)
{
return false;
}
return true;
}
bool LoginPasswordValidation(string username, string password, vector<string>& users)
{
string UserWPass;
UserWPass += username;
UserWPass += ':';
UserWPass += password;
UserWPass += ':';
for (unsigned int i = 0; i < users.size(); ++i)
{
{
string temp = users[i];
string UsernameVar;
int j = 0;
int counter = 0;
while (counter != 2)
{
if (temp[j] == ':')
{
counter++;
}
UsernameVar += temp[j];
++j;
}
if (UserWPass == UsernameVar)
{
return true;
}
}
}
return false;
}
bool CancelAccountPassValidation(string account, string password)
{
string FullAccountVal;
string username;
unsigned int i = 0;
while (account[i] != ':')
{
username += account[i];
i++;
}
FullAccountVal += username;
FullAccountVal += ':';
FullAccountVal += password;
FullAccountVal += ':';
FullAccountVal += '0';
if (FullAccountVal == account)
{
return true;
}
return false;
}