-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.cpp
182 lines (149 loc) · 4.87 KB
/
main.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
176
177
178
179
180
181
182
#include <iostream>
#include <fstream>
#include <string>
#include <vector>
#include <cstdlib>
using namespace std;
const int MaxWords = 100;
class User {
public:
string name;
string surname;
string adres;
string id_number;
string email;
string username;
string password;
User(string nam, string surnam, string adr, string id, string mail, string uname, string pwd) {
name = nam;
surname = surnam;
id_number = id;
adres = adr;
username = uname;
password = pwd;
email = mail;
}
User() {
name = "";
surname = "";
id_number = "";
adres = "";
username = "";
password = "";
email = "";
}
void displayUser() {
cout << "----------------------------------------------\nSzczegóły konta:" << endl;
cout << "Imie: " << name << endl;
cout << "Nazwisko: " << surname << endl;
cout << "PESEL: " << id_number << endl;
cout << "Adres: " << adres << endl;
cout << "Nazwa uzytkownika: " << username << endl;
cout << "Adres email: " << email << endl;
}
void saveToFile(ofstream &file) {
file << name << ", " << surname << ", " << id_number << ", " << adres << ", " << email << ", " << username << ", " << password << endl;
}
};
bool validateID(const string &id) {
return id.length() == 11 && id.find_first_not_of("0123456789") == string::npos;
}
bool validatePassword(const string &password) {
return password.length() >= 8;
}
bool validateUsername(const string &username) {
return username.length() >= 6;
}
bool validateEmail(const string &email) {
return email.find('@') != string::npos;
}
bool validateLength(const string &text, int maxLength) {
return text.length() <= maxLength;
}
vector<User> UploadAllUsers() {
vector<User> UserData;
User buff;
const string filename = "C:\\Users\\alicj\\OneDrive\\Pulpit\\projektIO\\dane_pacjentow.txt";
ifstream file(filename);
if (!file.is_open()) {
cout << "Nie mozna otworzyc pliku." << endl;
exit(0);
}
else {
while (UserData.size() < MaxWords && file >> buff.email >> buff.password) {
UserData.push_back(buff);
}
file.close();
}
return UserData;
}
User insertData() {
vector<User> users = UploadAllUsers();
string username, password, email, name, surname, adres, id;
cout << "\n\nWprowadz dane: " <<endl;
cout << "Podaj imie: ";
getline(cin, name);
if (!validateLength(name, 40)) {
cout << "Bledna długość imienia." << endl;
insertData();
}
cout << "Podaj nazwisko: ";
getline(cin, surname);
if (!validateLength(surname, 40)) {
cout << "Bledna długość nazwiska." << endl;
insertData();
}
cout << "Podaj PESEL: ";
getline(cin, id);
if (!validateID(id)) {
cout << "Błędny PESEL. PESEL powinien zawierać 11 cyfr." << endl;
insertData();
}
cout << "Podaj adres zamieszkania: ";
getline(cin, adres);
cout << "Podaj adres e-mail: ";
getline(cin, email);
if (!validateEmail(email)) {
cout << "Błędny adres e-mail." << endl;
insertData();
}
cout << "Podaj nazwe uzytkownika: ";
getline(cin, username);
if (!validateUsername(username)) {
cout << "Bledna nazwa użytkownika. Nazwa użytkownika powinna zawierać co najmniej 6 znaków." << endl;
insertData();
}
cout << "Podaj haslo: ";
getline(cin, password);
if (!validatePassword(password)) {
cout << "Błędne hasło. Hasło powinno zawierać co najmniej 8 znaków." << endl;
insertData();
}
User newUser(name, surname, id, adres, email, username, password);
ofstream file("C:\\Users\\alicj\\OneDrive\\Pulpit\\projektIO\\dane_pacjentow.txt", ios::app);
if (file.is_open()) {
newUser.saveToFile(file);
file.close();
} else {
cout << "Nie można otworzyć pliku do zapisu." << endl;
exit(0);
}
for (const auto &user : users) {
if (user.username == username) {
cout << "Użytkownik o podanej nazwie już istnieje." << endl;
insertData();
}
if (user.id_number == id) {
cout << "Użytkownik o podanym numerze PESEL już istnieje." << endl;
insertData();
}
}
cout << "\n\nUzytkownik zostal poprawnie zarejestrowany.";
return newUser;
}
int main() {
cout << "\n---------------------------------------------------\nZAKLADANIE KONTA W SYSTEMIE\n---------------------------------------------------" << endl;
User user = insertData();
user.displayUser();
return 0;
}