-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUserServer.cpp
666 lines (578 loc) · 20 KB
/
UserServer.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
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
/*
User Server code for CMPT 276, Spring 2016.
*/
#include <iostream>
#include <string>
#include <unordered_map>
#include <vector>
#include <cpprest/http_listener.h>
#include <cpprest/json.h>
#include <was/common.h>
#include <was/table.h>
#include "TableCache.h"
#include "make_unique.h"
#include "ClientUtils.h"
using azure::storage::storage_exception;
using azure::storage::cloud_table;
using azure::storage::cloud_table_client;
using azure::storage::edm_type;
using azure::storage::entity_property;
using azure::storage::table_entity;
using azure::storage::table_operation;
using azure::storage::table_request_options;
using azure::storage::table_result;
using azure::storage::table_shared_access_policy;
using std::cin;
using std::cout;
using std::endl;
using std::getline;
using std::make_pair;
using std::pair;
using std::string;
using std::unordered_map;
using std::vector;
using std::make_tuple;
using std::tuple;
using std::get;
using web::http::http_headers;
using web::http::http_request;
using web::http::methods;
using web::http::status_code;
using web::http::status_codes;
using web::http::uri;
using web::json::value;
using web::http::experimental::listener::http_listener;
using prop_str_vals_t = vector<pair<string,string>>;
constexpr const char* def_url = "http://localhost:34572";
const string auth_addr {"http://localhost:34570/"};
const string push_addr {"http://localhost:34574/"};
const string addr {"http://localhost:34568/"};
const string sign_on {"SignOn"};
const string sign_off {"SignOff"};
const string add_friend {"AddFriend"};
const string un_friend {"UnFriend"};
const string update_status {"UpdateStatus"};
const string push_status {"PushStatus"};
const string read_friend_list {"ReadFriendList"};
const string data_table_name {"DataTable"};
const string auth_table_name {"AuthTable"};
const string auth_table_password_prop {"Password"};
const string auth_table_partition_prop {"DataPartition"};
const string auth_table_row_prop {"DataRow"};
const string get_update_data_op {"GetUpdateData"};
const string get_read_token_op {"GetReadToken"};
const string get_update_token_op {"GetUpdateToken"};
const string read_entity_admin {"ReadEntityAdmin"};
const string delete_entity_admin {"DeleteEntityAdmin"};
const string update_entity_admin {"UpdateEntityAdmin"};
const string read_entity_auth {"ReadEntityAuth"};
const string update_entity_auth {"UpdateEntityAuth"};
//records users who are signed in
unordered_map<string,tuple<string,string,string>> session;
int del_entity (const string& addr, const string& table, const string& partition, const string& row) {
// SIGH--Note that REST SDK uses "methods::DEL", not "methods::DELETE"
pair<status_code,value> result {
do_request (methods::DEL,
addr + delete_entity_admin + "/" + table + "/" + partition + "/" + row)};
return result.first;
}
int put_entity(const string& addr, const string& table, const string& partition, const string& row,
const vector<pair<string,value>>& props) {
pair<status_code,value> result {
do_request (methods::PUT,
addr + update_entity_admin + "/" + table + "/" + partition + "/" + row,
value::object (props))};
return result.first;
}
/*
Given an HTTP message with a JSON body, return the JSON
body as an unordered map of strings to strings.
If the message has no JSON body, return an empty map.
THIS ROUTINE CAN ONLY BE CALLED ONCE FOR A GIVEN MESSAGE
(see http://microsoft.github.io/cpprestsdk/classweb_1_1http_1_1http__request.html#ae6c3d7532fe943de75dcc0445456cbc7
for source of this limit).
Note that all types of JSON values are returned as strings.
Use C++ conversion utilities to convert to numbers or dates
as necessary.
*/
unordered_map<string,string> get_json_body(http_request message) {
unordered_map<string,string> results {};
const http_headers& headers {message.headers()};
auto content_type (headers.find("Content-Type"));
if (content_type == headers.end() ||
content_type->second != "application/json")
return results;
value json{};
message.extract_json(true)
.then([&json](value v) -> bool
{
json = v;
return true;
})
.wait();
if (json.is_object()) {
for (const auto& v : json.as_object()) {
if (v.second.is_string()) {
results[v.first] = v.second.as_string();
}
else {
results[v.first] = v.second.serialize();
}
}
}
return results;
}
pair<status_code,value> get_update_data(const string& addr, const string& userid, const string& password) {
value pwd {build_json_value (vector<pair<string,string>> {make_pair("Password", password)})};
pair<status_code,value> result {do_request (methods::GET,
addr +
get_update_data_op + "/" +
userid,
pwd
)
};
//cout << "data: " << result.second << endl;
if (result.first != status_codes::OK) {
return make_pair (result.first, value {});
}
else {
return make_pair (result.first, result.second);
}
}
/*
Top-level routine for processing all HTTP GET requests.
*/
void handle_get(http_request message) {
string path {uri::decode(message.relative_uri().path())};
cout << endl << "**** GET " << path << endl;
auto paths = uri::split_path(path);
//No operation
if (paths.size() < 1) {
message.reply(status_codes::BadRequest);
return;
}
if (paths[0] == read_friend_list) {
//No userid
if (paths.size() < 2) {
message.reply(status_codes::BadRequest);
return;
}
string uid = paths[1];
if (session.size() > 0) {
for (auto it = session.begin(); it != session.end();) {
if (it->first == uid) {
cout << "userid was valid" << endl;
string token = get<0>(it->second);
string partition = get<1>(it->second);
string row = get<2>(it->second);
//Entity is returned
pair<status_code,value> result {
do_request(methods::GET,
string(addr)
+ read_entity_auth + "/"
+ data_table_name + "/"
+ token + "/"
+ partition + "/"
+ row)
};
if (result.first != status_codes::OK) {
message.reply(status_codes::NotFound);
return;
}
string friendslist = get_json_object_prop(result.second, "Friends");
value body = build_json_value("Friends", friendslist);
message.reply(status_codes::OK, body);
return;
}
else {
++it;
}
}
//uid did not have an active session
message.reply(status_codes::Forbidden);
return;
}
else {
message.reply(status_codes::Forbidden);
return;
}
}
message.reply(status_codes::BadRequest);
return;
}
/*
Top-level routine for processing all HTTP POST requests.
*/
void handle_post(http_request message) {
unordered_map<string,string> json_body {get_json_body(message)};
string path {uri::decode(message.relative_uri().path())};
cout << endl << "**** POST " << path << endl;
auto paths = uri::split_path(path);
//No operation and userid, or more parameters than needed
if (paths.size() != 2) {
message.reply(status_codes::NotFound);
return;
}
//Sign the person on
if (paths[0] == sign_on) {
//Nothing in JSON body
if (json_body.size() < 1) {
message.reply(status_codes::NotFound);
return;
}
string pass = json_body[auth_table_password_prop];
string uid = paths[1];
cout << "**** SignOn " << uid << " " << pass << endl;
//cout << "Requesting token and data" << endl;
pair<status_code, value> token_res {
get_update_data(auth_addr,
uid,
pass)
};
if (token_res.first != status_codes::OK) {
message.reply(status_codes::NotFound);
cout << "SignOn unsuccessful" << endl;
return;
}
//Checks to see if already signed on
if (session.size() > 0) {
for (auto it = session.begin(); it != session.end();) {
if (it->first == uid) {
message.reply(status_codes::OK);
cout << "Already signed in" << endl;
return;
}
else {
++it;
}
}
}
string DataRow_val = get_json_object_prop(token_res.second, "DataRow");
string DataPartition_val = get_json_object_prop(token_res.second, "DataPartition");
string token_val = get_json_object_prop(token_res.second, "token");
pair<status_code,value> result {
do_request (methods::GET,
string(addr)
+ read_entity_auth + "/"
+ data_table_name + "/"
+ token_val + "/"
+ DataPartition_val + "/"
+ DataRow_val
)
};
if (status_codes::OK == result.first) {
tuple<string,string,string> data = make_tuple(token_val, DataPartition_val, DataRow_val);
session.insert({uid, data});
message.reply(status_codes::OK);
cout << "SignOn successful" << endl;
return;
}
else{
message.reply(status_codes::NotFound);
cout << "SignOn unsuccessful" << endl;
return;
}
}
//Sign the person off
else if (paths[0] == sign_off) {
string uid = paths[1];
cout << "**** SignOff " << uid << endl;
for (auto it = session.begin(); it != session.end();) {
if (it->first == uid) {
it = session.erase(it);
message.reply(status_codes::OK);
cout << "SignOff successful" << endl;
return;
}
else {
++it;
}
}
message.reply(status_codes::NotFound);
cout << "SignOff unsuccessful" << endl;
return;
}
else {
message.reply(status_codes::BadRequest);
return;
}
}
/*
Top-level routine for processing all HTTP PUT requests.
*/
void handle_put(http_request message) {
string path {uri::decode(message.relative_uri().path())};
cout << endl << "**** PUT " << path << endl;
auto paths = uri::split_path(path);
//no op, userid, and status/friend info
if (paths.size() < 3) {
message.reply(status_codes::BadRequest);
return;
}
string uid = paths[1];
if (paths[0] == add_friend) {
//add friend code
if (paths.size() < 4) {
message.reply(status_codes::BadRequest);
return;
}
string add_country = paths[2];
string add_name = paths[3];
//checks to see if userid has a session
if (session.size() > 0) {
for (auto it = session.begin(); it != session.end();) {
if (it->first == uid) {
cout << "userid was valid" << endl;
string token = get<0>(it->second);
string partition = get<1>(it->second);
string row = get<2>(it->second);
pair<status_code,value> get_entity {
do_request(methods::GET,
string(addr)
+ read_entity_auth + "/"
+ data_table_name + "/"
+ token + "/"
+ partition + "/"
+ row)
};
if (get_entity.first != status_codes::OK) {
message.reply(status_codes::NotFound);
return;
}
string friendslist = get_json_object_prop(get_entity.second, "Friends");
friends_list_t friendslist_vec = parse_friends_list(friendslist);
//if already in friends list
for (int i = 0; i < friendslist_vec.size(); i++) {
if (friendslist_vec[i].first == add_country &&
friendslist_vec[i].second == add_name) {
message.reply(status_codes::OK);
return;
}
}
friendslist_vec.push_back(make_pair(add_country, add_name));
friendslist = friends_list_to_string(friendslist_vec);
value val = build_json_value("Friends", friendslist);
pair<status_code,value> merge_friend {
do_request (methods::PUT,
string(addr)
+ update_entity_auth + "/"
+ data_table_name + "/"
+ token + "/"
+ partition + "/"
+ row,
val)
};
if (merge_friend.first != status_codes::OK) {
message.reply(status_codes::NotFound);
return;
}
message.reply(status_codes::OK);
return;
}
else {
++it;
}
}
//uid did not have an active session
message.reply(status_codes::Forbidden);
return;
}
else {
message.reply(status_codes::Forbidden);
return;
}
return;
}
else if (paths[0] == un_friend) {
//unfriend code
if (paths.size() < 4) {
message.reply(status_codes::BadRequest);
return;
}
string rm_country = paths[2];
string rm_name = paths[3];
//checks to see if userid has a session
if (session.size() > 0) {
for (auto it = session.begin(); it != session.end();) {
if (it->first == uid) {
cout << "userid was valid" << endl;
string token = get<0>(it->second);
string partition = get<1>(it->second);
string row = get<2>(it->second);
pair<status_code,value> get_entity {
do_request(methods::GET,
string(addr)
+ read_entity_auth + "/"
+ data_table_name + "/"
+ token + "/"
+ partition + "/"
+ row)
};
if (get_entity.first != status_codes::OK) {
message.reply(status_codes::NotFound);
return;
}
string friendslist = get_json_object_prop(get_entity.second, "Friends");
friends_list_t friendslist_vec = parse_friends_list(friendslist);
//if in friend's list, delete
//if not, nothing happens
for (int i = 0; i < friendslist_vec.size(); i++) {
if (friendslist_vec[i].first == rm_country &&
friendslist_vec[i].second == rm_name) {
friendslist_vec.erase(friendslist_vec.begin() + i); //removes the friend from friend list
break;
}
}
friendslist = friends_list_to_string(friendslist_vec);
value val = build_json_value("Friends", friendslist);
pair<status_code,value> delete_friend {
do_request (methods::PUT,
string(addr)
+ update_entity_auth + "/"
+ data_table_name + "/"
+ token + "/"
+ partition + "/"
+ row,
val)
};
if (delete_friend.first != status_codes::OK) {
message.reply(status_codes::NotFound);
return;
}
message.reply(status_codes::OK);
return;
}
else {
++it;
}
}
//uid did not have an active session
message.reply(status_codes::Forbidden);
return;
}
else {
message.reply(status_codes::Forbidden);
return;
}
return;
}
else if (paths[0] == update_status) { //status update code
if (session.size() > 0) {
for (auto it = session.begin(); it != session.end();) {
if (it->first == uid) {
cout << "userid was valid" << endl;
string token = get<0>(it->second);
string partition = get<1>(it->second);
string row = get<2>(it->second);
pair<status_code,value> get_entity {
do_request(methods::GET,
string(addr)
+ read_entity_auth + "/"
+ data_table_name + "/"
+ token + "/"
+ partition + "/"
+ row)
};
if (get_entity.first != status_codes::OK) {
message.reply(status_codes::NotFound);
return;
}
value val = build_json_value("Status", paths[2]);
string friendslist = get_json_object_prop(get_entity.second, "Friends");
value flist = build_json_value("Friends", friendslist);
pair<status_code, value> statusupdate {
do_request (methods::PUT,
string(addr)
+ update_entity_auth + "/"
+ data_table_name + "/"
+ token + "/"
+ partition + "/"
+ row,
val)
};
if (statusupdate.first != status_codes::OK) {
message.reply(status_codes::NotFound);
return;
}
cout << "updating friends" << endl;
try {
//pushserver code
pair<status_code, value> statusupdate {
do_request (methods::POST,
string(push_addr)
+ push_status + "/"
+ partition + "/"
+ uid + "/"
+ paths[2],
flist)
};
cout << "PushServer is up" << endl;
if (statusupdate.first != status_codes::OK &&
statusupdate.first != status_codes::ServiceUnavailable) {
message.reply(status_codes::NotFound);
return;
}
message.reply(status_codes::OK);
return;
}
catch (const web::uri_exception& e) {
cout << "PushServer is down" << endl;
message.reply(status_codes::ServiceUnavailable);
return;
}
catch (...) {
cout << "PushServer is down" << endl;
message.reply(status_codes::ServiceUnavailable);
return;
}
}
else {
++it;
}
}
message.reply(status_codes::Forbidden);
return;
}
else {
message.reply(status_codes::Forbidden);
return;
}
}
else {
message.reply(status_codes::BadRequest);
return;
}
}
void handle_delete(http_request message) {
string path {uri::decode(message.relative_uri().path())};
cout << endl << "**** DELETE " << path << endl;
}
/*
Main authentication server routine
Install handlers for the HTTP requests and open the listener,
which processes each request asynchronously.
Note that, unlike BasicServer, UserServer only
installs the listeners for GET, PUT and POST. Any other HTTP
method will produce a Method Not Allowed (405)
response.
If you want to support other methods, uncomment
the call below that hooks in a the appropriate
listener.
Wait for a carriage return, then shut the server down.
*/
int main (int argc, char const * argv[]) {
cout << "UserServer: Parsing connection string" << endl;
cout << "UserServer: Opening listener" << endl;
http_listener listener {def_url};
listener.support(methods::GET, &handle_get);
listener.support(methods::POST, &handle_post);
listener.support(methods::PUT, &handle_put);
//listener.support(methods::DEL, &handle_delete);
listener.open().wait(); // Wait for listener to complete starting
cout << "Enter carriage return to stop UserServer." << endl;
string line;
getline(std::cin, line);
// Shut it down
listener.close().wait();
cout << "UserServer closed" << endl;
}