-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclient.cpp
449 lines (435 loc) · 12.2 KB
/
client.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
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
#include <iostream>
#include <string>
#include <sys/socket.h> /* socket, connect */
#include <netinet/in.h> /* struct sockaddr_in, struct sockaddr */
#include <netdb.h> /* struct hostent, gethostbyname */
#include <arpa/inet.h>
#include <unistd.h> /* read, write, close */
#include <regex>
#include "nlohmann/json.hpp"
#include "helpers.hpp"
#include "requests.hpp"
using namespace std;
using json = nlohmann::json;
int sockfd;
string sessionId;
string tokenJWT;
bool loggedIn = false;
bool inLibrary = false;
string responseCode;
void registerUser();
void login();
void enter_library();
void get_books();
void get_book();
void add_book();
void delete_book();
void logout();
void exit();
int main(int argc, char *argv[])
{
string command;
char *connectionIP = (char *)"34.241.4.235";
while (1)
{
//get user command
getline(cin, command);
//connect to the server
sockfd = open_connection(connectionIP, 8080, AF_INET, SOCK_STREAM, 0);
if (command == "register")
{
registerUser();
}
else if (command == "login")
{
login();
}
else if (command == "enter_library")
{
enter_library();
}
else if (command == "get_books")
{
get_books();
}
else if (command == "get_book")
{
get_book();
}
else if (command == "add_book")
{
add_book();
}
else if (command == "delete_book")
{
delete_book();
}
else if (command == "logout")
{
logout();
}
else if (command == "exit")
{
exit();
}
else
{
cout << "Invalid command!\n";
}
}
}
void registerUser()
{
if(loggedIn){
cout << "You must log out first!\n";
return;
}
string username;
string password;
cout << "username=";
getline(cin, username);
cout << "password=";
getline(cin, password);
//create json
json data;
data["username"] = username;
data["password"] = password;
string message;
string response;
//create message
message = compute_post_request("34.241.4.235", "/api/v1/tema/auth/register", "", "application/json", data.dump(), data.dump().length(), vector<string>(), 0);
send_to_server(sockfd, message);
response = receive_from_server(sockfd);
if (response.empty())
{
cout << "Error: no message received.\n";
return;
}
//get response code
responseCode = response.substr(response.find(" ") + 1);
responseCode = responseCode.substr(0, responseCode.find("\n") - 1);
//extract payload
response = basic_extract_json_response(response);
if (!response.empty())
{
json responseJSON = json::parse(response);
if (responseJSON.contains("error"))
{
cout << responseCode << " - " << regex_replace(responseJSON["error"].dump(), regex("\""), "") << "\n";
}
}
else
{
cout << responseCode << " - User succesfully registered!\n";
}
}
void login()
{
//check if already logged in
if(loggedIn){
cout << "You are already logged in!\n";
return;
}
string username;
string password;
cout << "username=";
getline(cin, username);
cout << "password=";
getline(cin, password);
//create json
json data;
data["username"] = username;
data["password"] = password;
string message;
string response;
//create message
message = compute_post_request("34.241.4.235", "/api/v1/tema/auth/login", "", "application/json", data.dump(), data.dump().length(), vector<string>(), 0);
send_to_server(sockfd, message);
response = receive_from_server(sockfd);
if (response.empty())
{
cout << "Error: no message received.\n";
return;
}
//get response code
responseCode = response.substr(response.find(" ") + 1);
responseCode = responseCode.substr(0, responseCode.find("\n") - 1);
if (!basic_extract_json_response(response).empty())
{
response = basic_extract_json_response(response);
json responseJSON = json::parse(response);
if (responseJSON.contains("error"))
{
cout << responseCode << " - " << regex_replace(responseJSON["error"].dump(), regex("\""), "") << "\n";
}
}
else
{
response = response.substr(response.find("connect.sid="));
sessionId = response.substr(0, response.find(";"));
cout << responseCode << " - Logged in.\n";
loggedIn = true;
}
}
void enter_library()
{
//check if already in library
if(inLibrary){
cout << "Already in library!\n";
return;
}
string message;
string response;
//create cookies
vector<string> cookies;
cookies.push_back(sessionId);
message = compute_get_request("34.241.4.235", "/api/v1/tema/library/access", "", "", cookies, cookies.size());
send_to_server(sockfd, message);
response = receive_from_server(sockfd);
if(response.empty()){
cout << "Error: no message received.\n";
return;
}
//get response code
responseCode = response.substr(response.find(" ") + 1);
responseCode = responseCode.substr(0, responseCode.find("\n") - 1);
if (!basic_extract_json_response(response).empty())
{
response = basic_extract_json_response(response);
json responseJSON = json::parse(response);
if (responseJSON.contains("error"))
{
cout << responseCode << " - " << regex_replace(responseJSON["error"].dump(), regex("\""), "") << "\n";
}
else if (responseJSON.contains("token"))
{
//save token JWT
tokenJWT = regex_replace(responseJSON["token"].dump(), regex("\""), "");
cout << responseCode << " - Entered library.\n";
inLibrary = true;
}
}
else
{
cout << "Undefined Error\n";
}
}
void get_books()
{
string message;
string response;
//create message
message = compute_get_request("34.241.4.235", "/api/v1/tema/library/books", "", tokenJWT, vector<string>(), 0);
send_to_server(sockfd, message);
response = receive_from_server(sockfd);
if (response.empty())
{
cout << "Error: no message received.\n";
return;
}
//get response code
responseCode = response.substr(response.find(" ") + 1);
responseCode = responseCode.substr(0, responseCode.find("\n") - 1);
response = basic_extract_json_response(response);
json responseJSON = json::parse(response);
if (responseJSON.contains("error"))
{
cout << responseCode << " - " << regex_replace(responseJSON["error"].dump(), regex("\""), "") << "\n";
}
else
{
cout << response << "\n";
}
}
void get_book()
{
int id;
cout << "id=";
cin >> id;
cin.ignore();
//check if is integer
if (cin.fail())
{
cout << "You must enter an integer!\n";
cin.clear();
cin.ignore();
return;
}
string message;
string response;
//create message
message = compute_get_request("34.241.4.235", "/api/v1/tema/library/books/" + to_string(id), "", tokenJWT, vector<string>(), 0);
send_to_server(sockfd, message);
response = receive_from_server(sockfd);
if (response.empty())
{
cout << "Error: no message received.\n";
return;
}
//get response code
responseCode = response.substr(response.find(" ") + 1);
responseCode = responseCode.substr(0, responseCode.find("\n") - 1);
if (!basic_extract_json_response(response).empty())
{
response = basic_extract_json_response(response);
json responseJSON = json::parse(response);
if (responseJSON.contains("error"))
{
cout << responseCode << " - " << regex_replace(responseJSON["error"].dump(), regex("\""), "") << "\n";
}
else
{
cout << response << "\n";
}
}
else{
cout << "Error.\n";
}
}
void add_book()
{
string title;
string author;
string genre;
string publisher;
int page_count;
cout << "title=";
getline(cin, title);
cout << "author=";
getline(cin, author);
cout << "genre=";
getline(cin, genre);
cout << "page_count=";
cin >> page_count;
//check if integer
if(cin.fail()){
cout << "You must enter an integer!\n";
cin.clear();
cin.ignore();
return;
}
cout << "publisher=";
cin.ignore();
getline(cin, publisher);
//create json
json data;
data["title"] = title;
data["author"] = author;
data["genre"] = genre;
data["page_count"] = page_count;
data["publisher"] = publisher;
string message;
string response;
//create message
message = compute_post_request("34.241.4.235", "/api/v1/tema/library/books", tokenJWT, "application/json", data.dump(), data.dump().length(), vector<string>(), 0);
send_to_server(sockfd, message);
response = receive_from_server(sockfd);
if (response.empty())
{
cout << "Error: no message received.\n";
return;
}
//get response code
responseCode = response.substr(response.find(" ") + 1);
responseCode = responseCode.substr(0, responseCode.find("\n") - 1);
if (!basic_extract_json_response(response).empty())
{
response = basic_extract_json_response(response);
json responseJSON = json::parse(response);
if (responseJSON.contains("error"))
{
cout << responseCode << " - " << regex_replace(responseJSON["error"].dump(), regex("\""), "") << "\n";
}
}
else
{
cout << responseCode << " - Book succesfully added.\n";
}
}
void delete_book()
{
int id;
cout << "id=";
cin >> id;
cin.ignore();
//check if integer
if(cin.fail()){
cout << "You must enter an integer!\n";
cin.clear();
cin.ignore();
return;
}
string message;
string response;
//create message
message = compute_delete_request("34.241.4.235", "/api/v1/tema/library/books/" + to_string(id), tokenJWT, "", "", 0, vector<string>(), 0);
send_to_server(sockfd, message);
response = receive_from_server(sockfd);
if (response.empty())
{
cout << "Error: no message received.";
return;
}
//get response code
responseCode = response.substr(response.find(" ") + 1);
responseCode = responseCode.substr(0, responseCode.find("\n") - 1);
if (!basic_extract_json_response(response).empty())
{
response = basic_extract_json_response(response);
json responseJSON = json::parse(response);
if (responseJSON.contains("error"))
{
cout << responseCode << " - " << regex_replace(responseJSON["error"].dump(), regex("\""), "") << "\n";
}
}
else
{
cout << responseCode << " - Book deleted.\n";
}
}
void logout()
{
//check if logged in
if(!loggedIn){
cout << "You are not logged in!\n";
return;
}
string message;
string response;
//create cookies
vector<string> cookies;
cookies.push_back(sessionId);
//create message
message = compute_get_request("34.241.4.235", "/api/v1/tema/auth/logout", "", "", cookies, cookies.size());
send_to_server(sockfd, message);
response = receive_from_server(sockfd);
if (response.empty())
{
cout << "Error: no message received.\n";
return;
}
//get response code
responseCode = response.substr(response.find(" ") + 1);
responseCode = responseCode.substr(0, responseCode.find("\n") - 1);
if (!basic_extract_json_response(response).empty())
{
response = basic_extract_json_response(response);
json responseJSON = json::parse(response);
if (responseJSON.contains("error"))
{
cout << responseCode << " - " << regex_replace(responseJSON["error"].dump(), regex("\""), "") << "\n";
}
}
else
{
cout << responseCode << " - Logged out.\n";
sessionId = "";
tokenJWT = "";
loggedIn = false;
inLibrary = false;
}
}
void exit()
{
exit(0);
}