-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBasicServer.cpp
581 lines (504 loc) · 16.6 KB
/
BasicServer.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
/*
Basic Server code for CMPT 276, Spring 2016.
*/
#include <exception>
#include <iostream>
#include <memory>
#include <string>
#include <unordered_map>
#include <utility>
#include <vector>
#include <cpprest/base_uri.h>
#include <cpprest/http_listener.h>
#include <cpprest/json.h>
#include <pplx/pplxtasks.h>
#include <was/common.h>
#include <was/storage_account.h>
#include <was/table.h>
#include "TableCache.h"
#include "make_unique.h"
#include "ServerUtils.h"
#include "azure_keys.h"
using azure::storage::cloud_storage_account;
using azure::storage::storage_credentials;
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_query;
using azure::storage::table_query_iterator;
using azure::storage::table_result;
using pplx::extensibility::critical_section_t;
using pplx::extensibility::scoped_critical_section_t;
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 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_vals_t = vector<pair<string,value>>;
constexpr const char* def_url = "http://localhost:34568";
const string create_table {"CreateTableAdmin"};
const string delete_table {"DeleteTableAdmin"};
const string read_entity {"ReadEntityAdmin"};
const string update_entity {"UpdateEntityAdmin"};
const string delete_entity {"DeleteEntityAdmin"};
const string read_auth {"ReadEntityAuth"};
const string update_auth {"UpdateEntityAuth"};
// The two optional operations from Assignment 1
const string add_property {"AddPropertyAdmin"};
const string update_property {"UpdatePropertyAdmin"};
/*
Cache of opened tables
*/
TableCache table_cache {};
/*
Convert properties represented in Azure Storage type
to prop_vals_t type.
*/
prop_vals_t get_properties (const table_entity::properties_type& properties, prop_vals_t values = prop_vals_t {}) {
for (const auto v : properties) {
if (v.second.property_type() == edm_type::string) {
values.push_back(make_pair(v.first, value::string(v.second.string_value())));
}
else if (v.second.property_type() == edm_type::datetime) {
values.push_back(make_pair(v.first, value::string(v.second.str())));
}
else if(v.second.property_type() == edm_type::int32) {
values.push_back(make_pair(v.first, value::number(v.second.int32_value())));
}
else if(v.second.property_type() == edm_type::int64) {
values.push_back(make_pair(v.first, value::number(v.second.int64_value())));
}
else if(v.second.property_type() == edm_type::double_floating_point) {
values.push_back(make_pair(v.first, value::number(v.second.double_value())));
}
else if(v.second.property_type() == edm_type::boolean) {
values.push_back(make_pair(v.first, value::boolean(v.second.boolean_value())));
}
else {
values.push_back(make_pair(v.first, value::string(v.second.str())));
}
}
return values;
}
/*
Return true if an HTTP request has a JSON body
This routine can be called multiple times on the same message.
*/
bool has_json_body (http_request message) {
return message.headers()["Content-type"] == "application/json";
}
/*
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;
}
/*
Top-level routine for processing all HTTP GET requests.
GET is the only request that has no command. All
operands specify the value(s) to be retrieved.
*/
void handle_get(http_request message) {
unordered_map<string,string> json_body {get_json_body(message)};
string path {uri::decode(message.relative_uri().path())};
cout << endl << "**** GET " << path << endl;
auto paths = uri::split_path(path);
// Need at least a table name
if (paths.size() < 2) {
message.reply(status_codes::BadRequest);
return;
}
cloud_table table = table_cache.lookup_table(paths[1]);
if ( ! table.exists()) {
message.reply(status_codes::NotFound);
return;
}
// GET all entries in table
if (paths.size() == 2) {
if (paths[0] != read_entity) {
message.reply(status_codes::BadRequest);
return;
}
table_query query {};
table_query_iterator end;
table_query_iterator it = table.execute_query(query);
vector<value> key_vec;
if (json_body.size() == 0) {
cout << "**** No JSON body found" << endl;
while (it != end) {
cout << "Key: " << it->partition_key() << " / " << it->row_key() << endl;
prop_vals_t keys {
make_pair("Partition",value::string(it->partition_key())),
make_pair("Row", value::string(it->row_key()))
};
keys = get_properties(it->properties(), keys);
/*cout << std::get<0>(keys[2]) << endl;
cout << value::object(keys) << endl;
cout << it->partition_key() << endl;
cout << keys.size() << endl;*/
key_vec.push_back(value::object(keys));
++it;
}
message.reply(status_codes::OK, value::array(key_vec));
return;
}
else if (json_body.size() > 0) {
cout << "**** JSON Body found" << endl;
bool entityExists = false;
while (it != end) {
int count = 0;
bool outputKey = false;
for(const auto& n : json_body) {
prop_vals_t keys {
make_pair("Partition",value::string(it->partition_key())),
make_pair("Row", value::string(it->row_key()))
};
keys = get_properties(it->properties(), keys);
//cout << value::object(keys) << endl;
//cout << it->partition_key() << endl;
for (int i = 2; i < keys.size(); i = i + 2) {
///cout << "for loop" << endl;
//cout << n.first << " " << std::get<0>(keys[i]) << endl;
if (n.first == std::get<0>(keys[i])) {
//cout << "if statement" << endl;
count++;
if (!outputKey) {
cout << "Key: " << it->partition_key() << " / " << it->row_key() << endl;
outputKey = true;
}
}
}
//cout << count << " " << keys.size() << endl;
if(count == keys.size() - 2) {
key_vec.push_back(value::object(keys));
entityExists = true;
}
}
++it;
}
if (entityExists) {
message.reply(status_codes::OK, value::array(key_vec));
return;
}
else {
message.reply(status_codes::BadRequest);
}
}
}
// GET specific entry: Partition == paths[2], Row == paths[3]
if (paths.size() < 4)
{
message.reply(status_codes::BadRequest);
return;
}
if (paths[3] == "*") {
if (paths[0] != read_entity) {
message.reply(status_codes::BadRequest);
return;
}
table_query query2 {};
query2.set_filter_string(azure::storage::table_query::generate_filter_condition(U("PartitionKey"), azure::storage::query_comparison_operator::equal, U(paths[2])));
table_query_iterator it = table.execute_query(query2);
table_query_iterator end;
vector<value> values2_vec {};
bool partition_exists = false;
while (it != end) {
if (it->partition_key() == paths[2]) {
partition_exists = true;
prop_vals_t values2 {
make_pair("Partition", value::string(it->partition_key())),
make_pair("Row", value::string(it->row_key()))
};
values2 = get_properties(it->properties(), values2);
values2_vec.push_back(value::object(values2));
++it;
}
}
if (partition_exists) {
message.reply(status_codes::OK, value::array(values2_vec));
return;
}
else {
message.reply(status_codes::BadRequest);
return;
}
}
//GET specific entity
if (paths.size() == 4) {
if (paths[0] != read_entity) {
message.reply(status_codes::BadRequest);
return;
}
table_operation retrieve_operation {table_operation::retrieve_entity(paths[2],paths[3])};
table_result retrieve_result {table.execute(retrieve_operation)};
cout << "HTTP code: " << retrieve_result.http_status_code() << endl;
if (retrieve_result.http_status_code() == status_codes::NotFound)
{
message.reply(status_codes::NotFound);
return;
}
table_entity entity {retrieve_result.entity()};
table_entity::properties_type properties {entity.properties()};
// If the entity has any properties, return them as JSON
prop_vals_t values (get_properties(properties));
vector<pair<string,value>> entityvals
{
///make_pair("Partition", value::string(paths[2])),
//make_pair("Row", value::string(paths[3]))
};
entityvals.insert(entityvals.end(), values.begin(), values.end());
if (values.size() > 0)
{
message.reply(status_codes::OK, value::object(entityvals));
return;
}
else
{
message.reply(status_codes::OK);
return;
}
}
//Get with read_auth and token
if (paths.size() >= 5) {
cout << "**** GET using token" << endl;
if (paths[0] != read_auth) {
message.reply(status_codes::BadRequest);
return;
}
pair<status_code, table_entity> reader {
read_with_token (message,
tables_endpoint
)
};
cout << "HTTP code: " << reader.first << endl;
if (reader.first == status_codes::OK) {
///value v {value::table_entity(reader.second)};
table_entity::properties_type properties {reader.second.properties()};
// If the entity has any properties, return them as JSON
prop_vals_t values (get_properties(properties));
//cout << std::get<1>(values[0]) << endl;
vector<pair<string,value>> entityvals
{
///make_pair("Partition", value::string(paths[2])),
//make_pair("Row", value::string(paths[3]))
};
entityvals.insert(entityvals.end(), values.begin(), values.end());
message.reply(status_codes::OK, value::object(entityvals));
return;
}
else {
message.reply(reader.first);
return;
}
}
else if (paths[0] == read_auth) {
message.reply(status_codes::BadRequest);
return;
}
message.reply(status_codes::BadRequest);
}
/*
Top-level routine for processing all HTTP POST requests.
*/
void handle_post(http_request message) {
string path {uri::decode(message.relative_uri().path())};
cout << endl << "**** POST " << path << endl;
auto paths = uri::split_path(path);
// Need at least an operation and a table name
if (paths.size() < 2) {
message.reply(status_codes::BadRequest);
return;
}
string table_name {paths[1]};
cloud_table table {table_cache.lookup_table(table_name)};
// Create table (idempotent if table exists)
if (paths[0] == create_table) {
cout << "Create " << table_name << endl;
bool created {table.create_if_not_exists()};
cout << "Administrative table URI " << table.uri().primary_uri().to_string() << endl;
if (created)
message.reply(status_codes::Created);
else
message.reply(status_codes::Accepted);
}
else {
message.reply(status_codes::BadRequest);
}
}
/*
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);
if (paths[0] == add_property || paths[0] == update_property) //optional operations that weren't implemented
{
message.reply(status_codes::NotImplemented);
return;
}
// Need at least an operation, table name, partition, and row
if (paths.size() < 4) {
message.reply(status_codes::BadRequest);
return;
}
if (paths.size() == 4)
{
if (paths[0] == update_entity)
{
table_cache.init(storage_connection_string);
cloud_table table {table_cache.lookup_table(paths[1])};
if ( ! table.exists()) {
message.reply(status_codes::NotFound);
return;
}
table_entity entity {paths[2], paths[3]};
cout << "Update " << entity.partition_key() << " / " << entity.row_key() << endl;
table_entity::properties_type& properties = entity.properties();
for (const auto v : get_json_body(message)) {
properties[v.first] = entity_property {v.second};
}
table_operation operation {table_operation::insert_or_merge_entity(entity)};
table_result op_result {table.execute(operation)};
message.reply(status_codes::OK);
}
else
{
message.reply(status_codes::BadRequest);
}
}
cloud_table table = table_cache.lookup_table(paths[1]);
if ( ! table.exists()) {
message.reply(status_codes::NotFound);
return;
}
if (paths[0] == update_auth) {
message.reply(update_with_token(message, tables_endpoint, get_json_body(message)));
return;
}
else if (paths[0] == read_auth) {
message.reply(status_codes::Forbidden);
return;
}
else {
message.reply(status_codes::NotFound);
return;
}
}
/*
Top-level routine for processing all HTTP DELETE requests.
*/
void handle_delete(http_request message) {
string path {uri::decode(message.relative_uri().path())};
cout << endl << "**** DELETE " << path << endl;
auto paths = uri::split_path(path);
// Need at least an operation and table name
if (paths.size() < 2) {
message.reply(status_codes::BadRequest);
return;
}
string table_name {paths[1]};
cloud_table table {table_cache.lookup_table(table_name)};
// Delete table
if (paths[0] == delete_table) {
cout << "Delete " << table_name << endl;
if ( ! table.exists()) {
message.reply(status_codes::NotFound);
}
table.delete_table();
table_cache.delete_entry(table_name);
message.reply(status_codes::OK);
}
// Delete entity
else if (paths[0] == delete_entity) {
// For delete entity, also need partition and row
if (paths.size() < 4) {
message.reply(status_codes::BadRequest);
return;
}
table_entity entity {paths[2], paths[3]};
cout << "Delete " << entity.partition_key() << " / " << entity.row_key()<< endl;
table_operation operation {table_operation::delete_entity(entity)};
table_result op_result {table.execute(operation)};
int code {op_result.http_status_code()};
if (code == status_codes::OK ||
code == status_codes::NoContent)
message.reply(status_codes::OK);
else
message.reply(code);
}
else {
message.reply(status_codes::BadRequest);
}
}
/*
Main server routine
Install handlers for the HTTP requests and open the listener,
which processes each request asynchronously.
Wait for a carriage return, then shut the server down.
*/
int main (int argc, char const * argv[]) {
cout << "Parsing connection string" << endl;
table_cache.init (storage_connection_string);
cout << "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 server." << endl;
string line;
getline(std::cin, line);
// Shut it down
listener.close().wait();
cout << "Closed" << endl;
}