-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclient.cpp
More file actions
1110 lines (885 loc) · 31.2 KB
/
Copy pathclient.cpp
File metadata and controls
1110 lines (885 loc) · 31.2 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
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
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#include <stdio.h> /* printf, sprintf */
#include <stdlib.h> /* exit, atoi, malloc, free */
#include <unistd.h> /* read, write, close */
#include <string.h> /* memcpy, memset */
#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 <string>
#include <iostream>
#include <vector>
#include "helper.hpp"
#include "requests.hpp"
#include "json.hpp"
#define PORT 8081
#define HOST "63.32.125.183"
/* ================ < Auxiliary functions > =============== */
int get_id(const std::string response)
{
std::string ext_response = basic_extract_json_response((char *)response.c_str());
nlohmann::json body_response = nlohmann::json::parse(ext_response);
// save the id of the collection
int token = body_response["id"];
return token;
}
void print_collection(const std::string response)
{
std::string ext_response = basic_extract_json_response((char *)response.c_str());
nlohmann::json body_response = nlohmann::json::parse(ext_response);
std::string title = body_response["title"];
std::string owner = body_response["owner"];
std::cout << "title: " << title << '\n';
std::cout << "owner: " << owner << '\n';
auto movies = body_response["movies"];
// print the movies in the collection
for (auto movie : movies)
{
std::string title = movie["title"];
std::cout << "#" << movie["id"] << ": " << title << '\n';
}
}
void print_movie(const std::string response)
{
std::string ext_response = basic_extract_json_response((char *)response.c_str());
nlohmann::json body_response = nlohmann::json::parse(ext_response);
std::string title = body_response["title"];
std::string description = body_response["description"];
std::string year = body_response["year"].dump();
std::string rating = body_response["rating"];
// print the movie details
std::cout << "title: " << title << '\n';
std::cout << "year: " << std::stoi(year) << '\n';
std::cout << "description: " << description << '\n';
std::cout << "rating: " << std::stod(rating) << '\n';
}
std::string get_JWT(const std::string response)
{
std::string ext_response = basic_extract_json_response((char *)response.c_str());
nlohmann::json body_response = nlohmann::json::parse(ext_response);
// save the JWT token
std::string token = body_response["token"];
return token;
}
std::string get_cookiee(const std::string response)
{
int text_until_cookiee = response.find("Set-Cookie: ");
int text_end_cookiee = response.find(";", text_until_cookiee + 12);
// return the cookiee
return response.substr(text_until_cookiee + 12, text_end_cookiee - text_until_cookiee - 12);
}
std::string add_movie_to_collection_index(int sockfd, int id_collection, int id_movie, std::string &JWT_token)
{
// check if the collection exists
std::string url = "/api/v1/tema/library/collections/" + std::to_string(id_collection) + "/movies";
nlohmann::ordered_json collection_format;
collection_format["id"] = id_movie;
std::string collection_format_dump = collection_format.dump(4);
char *collection_format_content = (char *)collection_format_dump.c_str();
char *JWT_content = (char *)JWT_token.c_str();
std::string message = compute_post_request((char *)HOST, (char *)url.c_str(),
(char *)"application/json", &collection_format_content, 1, NULL, 0, JWT_content);
send_to_server(sockfd, (char *)message.c_str());
std::string response = receive_from_server(sockfd);
// return response
return response;
}
bool get_code(const std::string response, const std::string posible_output)
{
std::string ext_response = basic_extract_json_response((char *)response.c_str());
nlohmann::json body_response = nlohmann::json::parse(ext_response);
std::istringstream aux(response);
std::string text;
int code;
aux >> text >> code >> text;
// check if the response is valid
if (code / 100 == 2)
{
std::cout << "SUCCESS: ";
// check if the response contains a message
if(body_response.contains("message"))
{
std::string message = body_response["message"];
std::cout << message << '\n';
}
else
{
std::cout << posible_output << '\n';
}
return true;
}
else
{
std::cout << "ERROR: ";
// check if the response contains a error
if(body_response.contains("error"))
{
std::string message = body_response["error"];
std::cout << message << '\n';
}
return false;
}
}
/* ================ < Admin functions > =============== */
void login_admin(int sockfd, std::string &cookiee, bool &is_admin)
{
nlohmann::ordered_json credentials;
std::string password, username;
// check if user is logged in
if (cookiee != "no cookiee")
{
if (is_admin)
std::cout << "Admin already log in.\n";
else
std::cout << "User already log in.\n";
return;
}
std::cout << "username=";
std::getline(std::cin, username);
credentials["username"] = username;
std::cout << "password=";
std::getline(std::cin, password);
credentials["password"] = password;
std::string credentials_dump = credentials.dump(4);
char *credentials_content = (char *)credentials_dump.c_str();
std::string message = compute_post_request((char *)HOST,(char *)"/api/v1/tema/admin/login",
(char *)"application/json",&credentials_content, 1, NULL, 0, NULL);
send_to_server(sockfd, (char *)message.c_str());
std::string response = receive_from_server(sockfd);
// print response and reset cookiee & is_admin
if (get_code(response, ""))
{
cookiee = get_cookiee(response);
is_admin = true;
}
}
void add_user(int sockfd, std::string &cookiee, bool &is_admin)
{
nlohmann::ordered_json credentials;
std::string password, username;
// check if user is logged in and it is admin
if (is_admin == false)
{
std::cout << "You are not admin.\n";
return;
}
std::cout << "username=";
std::getline(std::cin, username);
credentials["username"] = username;
std::cout << "password=";
std::getline(std::cin, password);
credentials["password"] = password;
std::string credentials_dump = credentials.dump(4);
char *credentials_content = (char *)credentials_dump.c_str();
char *cookiee_content = (char *)cookiee.c_str();
std::string message = compute_post_request((char *)HOST, (char *)"/api/v1/tema/admin/users",
(char *)"application/json", &credentials_content, 1, &cookiee_content, 1, NULL);
send_to_server(sockfd, (char *)message.c_str());
std::string response = receive_from_server(sockfd);
// print response
get_code(response, "");
}
void get_users(int sockfd, std::string &cookiee, bool &is_admin)
{
// check if user is logged in and it is admin
if (is_admin == false)
{
std::cout << "You are not admin.\n";
return;
}
char *cookiee_content = (char *)cookiee.c_str();
std::string message = compute_get_request((char *)HOST, (char *)"/api/v1/tema/admin/users",
NULL, &cookiee_content, 1, NULL);
send_to_server(sockfd, (char *)message.c_str());
std::string response = receive_from_server(sockfd);
// print response
get_code(response, "List of users");
std::string ext_response = basic_extract_json_response((char *)response.c_str());
nlohmann::json body_response = nlohmann::json::parse(ext_response);
nlohmann::ordered_json users = body_response["users"];
// print the rest of the response
for (auto user : users)
{
std::string username = user["username"];
std::string password = user["password"];
std::cout << "#" << user["id"] << " " << username << ":" << password << '\n';
}
}
void delete_user(int sockfd, std::string &cookiee, bool &is_admin)
{
std::string username;
// check if user is logged in and it is admin
if (is_admin == false)
{
std::cout << "You are not admin.\n";
return;
}
std::cout << "username=";
std::getline(std::cin, username);
// check if the user exists
char *cookiee_content = (char *)cookiee.c_str();
std::string url = "/api/v1/tema/admin/users/" + username;
std::string message = compute_delete_request((char *)HOST, (char*)url.c_str(), NULL, &cookiee_content, 1, NULL);
send_to_server(sockfd, (char *)message.c_str());
std::string response = receive_from_server(sockfd);
// print response
get_code(response, "");
}
void logout_admin(int sockfd, std::string &cookiee, bool &is_admin)
{
// check if user is logged in and it is admin
if (is_admin == false)
{
std::cout << "You are not admin.\n";
return;
}
char *cookiee_content = (char *)cookiee.c_str();
std::string message = compute_get_request((char *)HOST, (char *)"/api/v1/tema/admin/logout",
NULL, &cookiee_content, 1, NULL);
send_to_server(sockfd, (char *)message.c_str());
std::string response = receive_from_server(sockfd);
// print response
get_code(response, "");
// reset cookiee and is_admin
cookiee = "no cookiee";
is_admin = false;
}
/* ================ < Client functions > =============== */
void login(int sockfd, std::string &cookiee)
{
nlohmann::ordered_json credentials;
std::string password, username, admin_username;
// check if user is logged in
if (cookiee != "no cookiee")
{
std::cout << "User already log in.\n";
return;
}
std::cout << "admin_username=";
std::getline(std::cin, admin_username);
credentials["admin_username"] = admin_username;
std::cout << "username=";
std::getline(std::cin, username);
credentials["username"] = username;
std::cout << "password=";
std::getline(std::cin, password);
credentials["password"] = password;
std::string credentials_dump = credentials.dump(4);
char *credentials_content = (char *)credentials_dump.c_str();
std::string message = compute_post_request((char *)HOST, (char *)"/api/v1/tema/user/login",
(char *)"application/json", &credentials_content, 1, NULL, 0, NULL);
send_to_server(sockfd, (char *)message.c_str());
std::string response = receive_from_server(sockfd);
// print response
if (get_code(response, ""))
{
cookiee = get_cookiee(response);
}
}
void get_access(int sockfd, std::string &cookiee, std::string &JWT_token, bool is_admin)
{
// check if user is logged in
if (cookiee == "no cookiee")
{
std::cout << "You need to log in first.\n";
return;
}
char *cookiee_content = (char *)cookiee.c_str();
std::string message = compute_get_request((char *)HOST, (char *)"/api/v1/tema/library/access",
NULL, &cookiee_content, 1, NULL);
send_to_server(sockfd, (char *)message.c_str());
std::string response = receive_from_server(sockfd);
// print response
get_code(response, "Token JWT received");
JWT_token = get_JWT(response);
}
void get_movies(int sockfd, std::string &cookiee, std::string &JWT_token)
{
// check if user is logged in and has access
if (cookiee == "no cookiee")
{
std::cout << "You need to log in first.\n";
return;
}
if (JWT_token == "no token")
{
std::cout << "You don't have access sir.\n";
return;
}
char *JWT_content = (char *)JWT_token.c_str();
std::string message = compute_get_request((char *)HOST, (char *)"/api/v1/tema/library/movies",
NULL, NULL, 0, JWT_content);
send_to_server(sockfd, (char *)message.c_str());
std::string response = receive_from_server(sockfd);
// print response
get_code(response, "List of movies");
std::string ext_response = basic_extract_json_response((char *)response.c_str());
nlohmann::json body_response = nlohmann::json::parse(ext_response);
nlohmann::ordered_json movies = body_response["movies"];
// print the rest of the response
for (auto movie : movies)
{
std::string title = movie["title"];
std::cout << "#" << movie["id"] << " " << title << '\n';
}
}
void get_movie(int sockfd, std::string &cookiee, std::string &JWT_token)
{
std::string id;
size_t end_pos;
// check if user is logged in and has access
if (cookiee == "no cookiee")
{
std::cout << "You need to log in first.\n";
return;
}
if (JWT_token == "no token")
{
std::cout << "You don't have access sir.\n";
return;
}
// check if input is valid
std::cout << "id=";
std::getline(std::cin, id);
std::stoi(id, &end_pos);
if (end_pos != id.length())
{
std::cout << "Id should be a number(int)!\n";
return;
}
// check if the movie exists
char *JWT_content = (char *)JWT_token.c_str();
std::string url = "/api/v1/tema/library/movies/" + id;
std::string message = compute_get_request((char *)HOST, (char *)url.c_str(),
NULL, NULL, 0, JWT_content);
send_to_server(sockfd, (char *)message.c_str());
std::string response = receive_from_server(sockfd);
// print response
if (!get_code(response, "Movie details"))
{
return;
}
// print the rest of the response
print_movie(response);
}
void add_movie(int sockfd, std::string &cookiee, std::string &JWT_token)
{
nlohmann::ordered_json movie_format;
std::string title, year, description, rating;
double rating_nr;
int year_nr;
size_t end_pos;
// check if user is logged in and has access
if (cookiee == "no cookiee")
{
std::cout << "User already log in.\n";
return;
}
if (JWT_token == "no token")
{
std::cout << "You don't have access sir.\n";
return;
}
// check if input is valid
std::cout << "title=";
std::getline(std::cin, title);
movie_format["title"] = title;
std::cout << "year=";
std::getline(std::cin, year);
year_nr = std::stod(year, &end_pos);
movie_format["year"] = year_nr;
if (end_pos != year.length())
{
std::cout << "The year should be a number!\n";
return;
}
if (0 > year_nr || year_nr > 3000)
{
std::cout << "You sure you got the year right? Try again\n";
return;
}
std::cout << "description=";
std::getline(std::cin, description);
movie_format["description"] = description;
std::cout << "rating=";
std::getline(std::cin, rating);
rating_nr = std::stof(rating, &end_pos);
movie_format["rating"] = rating_nr;
if (end_pos != rating.length())
{
std::cout << "The rating should be a number(double)!\n";
return;
}
if (0 > rating_nr || rating_nr > 9.9)
{
std::cout << "ERROR: Rating must be between 0 and 9.9!\n";
return;
}
std::string movie_format_dump = movie_format.dump(4);
char *movie_format_content = (char *)movie_format_dump.c_str();
char *JWT_content = (char *)JWT_token.c_str();
std::string message = compute_post_request((char *)HOST, (char *)"/api/v1/tema/library/movies",
(char *)"application/json", &movie_format_content, 1, NULL, 0, JWT_content);
send_to_server(sockfd, (char *)message.c_str());
std::string response = receive_from_server(sockfd);
// print response
get_code(response, "Movie added");
}
void delete_movie(int sockfd, std::string &cookiee, std::string &JWT_token)
{
std::string id;
size_t end_pos;
// check if user is logged in and has access
if (cookiee == "no cookiee")
{
std::cout << "You need to log in first.\n";
return;
}
if (JWT_token == "no token")
{
std::cout << "You don't have access sir.\n";
return;
}
// check if input is valid
std::cout << "id=";
std::getline(std::cin, id);
std::stoi(id, &end_pos);
if (end_pos != id.length())
{
std::cout << "Id should be a number(int)!\n";
return;
}
// check if the movie exists
char *JWT_content = (char *)JWT_token.c_str();
std::string url = "/api/v1/tema/library/movies/" + id;
std::string message = compute_delete_request((char *)HOST, (char *)url.c_str(),
NULL, NULL, 0, JWT_content);
send_to_server(sockfd, (char *)message.c_str());
std::string response = receive_from_server(sockfd);
// print response
get_code(response, "");
}
void update_movie(int sockfd, std::string &cookiee, std::string &JWT_token)
{
nlohmann::ordered_json movie_format;
std::string id, title, year, description, rating;
size_t end_pos;
double rating_nr;
int year_nr;
// check if user is logged in and has access
if (cookiee == "no cookiee")
{
std::cout << "You need to log in first.\n";
return;
}
if (JWT_token == "no token")
{
std::cout << "You don't have access sir.\n";
return;
}
// check if input is valid
std::cout << "id=";
std::getline(std::cin, id);
std::stoi(id, &end_pos);
if (end_pos != id.length())
{
std::cout << "Id should be a number(int)!\n";
return;
}
std::cout << "title=";
std::getline(std::cin, title);
movie_format["title"] = title;
std::cout << "year=";
std::getline(std::cin, year);
year_nr = std::stod(year, &end_pos);
movie_format["year"] = year_nr;
if (end_pos != year.length())
{
std::cout << "The year should be a number!\n";
return;
}
if (0 > year_nr || year_nr > 3000)
{
std::cout << "You sure you got the year right? Try again\n";
return;
}
std::cout << "description=";
std::getline(std::cin, description);
movie_format["description"] = description;
std::cout << "rating=";
std::getline(std::cin, rating);
rating_nr = std::stof(rating, &end_pos);
movie_format["rating"] = rating_nr;
if (end_pos != rating.length())
{
std::cout << "The rating should be a number(double)!\n";
return;
}
if (0 > rating_nr || rating_nr > 9.9)
{
std::cout << "Rating must be between 0 and 9.9!\n";
return;
}
// check if the movie exists
std::string movie_format_dump = movie_format.dump(4);
char *movie_format_content = (char *)movie_format_dump.c_str();
char *JWT_content = (char *)JWT_token.c_str();
std::string url = "/api/v1/tema/library/movies/" + id;
std::string message = compute_put_request((char *)HOST, (char *)url.c_str(),
(char *)"application/json", &movie_format_content, 1, NULL, 0, JWT_content);
send_to_server(sockfd, (char *)message.c_str());
std::string response = receive_from_server(sockfd);
// print response
get_code(response, "Movie updated");
}
void get_collections(int sockfd, std::string &cookiee, std::string &JWT_token)
{
// check if user is logged in and has access
if (cookiee == "no cookiee")
{
std::cout << "You need to log in first.\n";
return;
}
if (JWT_token == "no token")
{
std::cout << "You don't have access sir.\n";
return;
}
char *JWT_content = (char *)JWT_token.c_str();
std::string message = compute_get_request((char *)HOST, (char *)"/api/v1/tema/library/collections",
NULL, NULL, 0, JWT_content);
send_to_server(sockfd, (char *)message.c_str());
std::string response = receive_from_server(sockfd);
// print response
get_code(response, "List of collections");
std::string ext_response = basic_extract_json_response((char *)response.c_str());
nlohmann::json body_response = nlohmann::json::parse(ext_response);
nlohmann::ordered_json collections = body_response["collections"];
// print the rest of the response
for (auto collection : collections)
{
std::string title = collection["title"];
std::cout << "#" << collection["id"] << ": " << title << '\n';
}
}
void get_collection(int sockfd, std::string &cookiee, std::string &JWT_token)
{
std::string id;
size_t end_pos;
// check if user is logged in and has access
if (cookiee == "no cookiee")
{
std::cout << "You need to log in first.\n";
return;
}
if (JWT_token == "no token")
{
std::cout << "You don't have access sir.\n";
return;
}
// check if input is valid
std::cout << "id=";
std::getline(std::cin, id);
std::stoi(id, &end_pos);
if (end_pos != id.length())
{
std::cout << "Id should be a number(int)!\n";
return;
}
char *JWT_content = (char *)JWT_token.c_str();
std::string url = "/api/v1/tema/library/collections/" + id;
std::string message = compute_get_request((char *)HOST, (char *)url.c_str(),
NULL, NULL, 0, JWT_content);
send_to_server(sockfd, (char *)message.c_str());
std::string response = receive_from_server(sockfd);
// check if the collection exists
if (!get_code(response, "Collection details"))
{
return;
}
// print response
print_collection(response);
}
void add_collection(int sockfd, std::string &cookiee, std::string &JWT_token)
{
nlohmann::ordered_json collection_format;
std::string title, num_movies;
int num_movies_nr;
size_t end_pos;
std::vector<int> movies_id;
// check if user is logged in and has access
if (cookiee == "no cookiee")
{
std::cout << "User already log in.\n";
return;
}
if (JWT_token == "no token")
{
std::cout << "You don't have access sir.\n";
return;
}
// check if input is valid
std::cout << "title=";
std::getline(std::cin, title);
collection_format["title"] = title;
std::cout << "num_movies=";
std::getline(std::cin, num_movies);
num_movies_nr = std::stoi(num_movies, &end_pos);
if (end_pos != num_movies.length())
{
std::cout << "Nr. movies should be a number!\n";
return;
}
for (int i = 0; i < num_movies_nr; i++)
{
int j;
std::cout << "movie_id[" << i << "]=";
std::cin >> j;
movies_id.push_back(j);
}
// check if the collection exists
std::string collection_format_dump = collection_format.dump(4);
char *collection_format_content = (char *)collection_format_dump.c_str();
char *JWT_content = (char *)JWT_token.c_str();
std::string message = compute_post_request((char *)HOST, (char *)"/api/v1/tema/library/collections",
(char *)"application/json", &collection_format_content, 1, NULL, 0, JWT_content);
send_to_server(sockfd, (char *)message.c_str());
std::string response = receive_from_server(sockfd);
// add movies to collection via index
int id = get_id(response);
for (int i = 0; i < num_movies_nr; i++)
{
response = add_movie_to_collection_index(sockfd, id, movies_id[i], JWT_token);
std::istringstream aux(response);
std::string text;
int code;
aux >> text >> code >> text;
if (code / 100 != 2)
{
break;
}
}
// print response
get_code(response, "Collection added");
}
void delete_collection(int sockfd, std::string &cookiee, std::string &JWT_token)
{
std::string id;
size_t end_pos;
// check if user is logged in and has access
if (cookiee == "no cookiee")
{
std::cout << "You need to log in first.\n";
return;
}
if (JWT_token == "no token")
{
std::cout << "You don't have access sir.\n";
return;
}
// check if input is valid
std::cout << "id=";
std::getline(std::cin, id);
std::stoi(id, &end_pos);
if (end_pos != id.length())
{
std::cout << "Id should be a number(int)!\n";
return;
}
// check if the collection exists
char *JWT_content = (char *)JWT_token.c_str();
std::string url = "/api/v1/tema/library/collections/" + id;
std::string message = compute_delete_request((char *)HOST, (char *)url.c_str(),
NULL, NULL, 0, JWT_content);
send_to_server(sockfd, (char *)message.c_str());
std::string response = receive_from_server(sockfd);
// print response
get_code(response, "");
}
void add_movie_to_collection(int sockfd, std::string &cookiee, std::string &JWT_token)
{
int collection_id, movie_id;
// check if user is logged in and has access
if (cookiee == "no cookiee")
{
std::cout << "User already log in.\n";
return;
}
if (JWT_token == "no token")
{
std::cout << "You don't have access sir.\n";
return;
}
std::cout << "collection_id=";
std::cin >> collection_id;
std::cout << "movie_id=";
std::cin >> movie_id;
// add movie to collection via index
std::string response = add_movie_to_collection_index(sockfd, collection_id, movie_id, JWT_token);
// print response
get_code(response, "");
}
void delete_movie_from_collection(int sockfd, std::string &cookiee, std::string &JWT_token)
{
std::string id_collection, id_movie;
size_t end_pos;
// check if user is logged in and has access
if (cookiee == "no cookiee")
{
std::cout << "You need to log in first.\n";
return;
}
if (JWT_token == "no token")
{
std::cout << "You don't have access sir.\n";
return;
}
// check if input is valid
std::cout << "collection_id=";
std::getline(std::cin, id_collection);
std::stoi(id_collection, &end_pos);
if (end_pos != id_collection.length())
{
std::cout << "Id should be a number(int)!\n";
return;
}
std::cout << "movie_id=";
std::getline(std::cin, id_movie);
std::stoi(id_movie, &end_pos);
if (end_pos != id_movie.length())
{
std::cout << "Id should be a number(int)!\n";
return;
}
// check if the collection exists
char *JWT_content = (char *)JWT_token.c_str();
std::string url = "/api/v1/tema/library/collections/" + id_collection + "/movies/" + id_movie;
std::string message = compute_delete_request((char *)HOST, (char *)url.c_str(),
NULL, NULL, 0, JWT_content);
// send request
send_to_server(sockfd, (char *)message.c_str());
std::string response = receive_from_server(sockfd);
// print response
get_code(response, "");
}
void logout(int sockfd, std::string &cookiee, std::string &JWT_token)
{
// check if user is logged in
if (cookiee == "no cookiee")
{
std::cout << "User already log in.\n";
return;
}
// compute the request
char *cookiee_content = (char *)cookiee.c_str();
std::string message = compute_get_request((char *)HOST, (char *)"/api/v1/tema/user/logout",
NULL, &cookiee_content, 1, NULL);
send_to_server(sockfd, (char *)message.c_str());
std::string response = receive_from_server(sockfd);
// reset cookiee and JWT_token
cookiee = "no cookiee";
JWT_token = "no token";