-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheventFunctions.cpp
More file actions
363 lines (298 loc) · 9.08 KB
/
eventFunctions.cpp
File metadata and controls
363 lines (298 loc) · 9.08 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
#include <crow.h>
#include <map>
#include <string>
#include <algorithm>
#include "eventFunctions.h"
#include "Event.h"
#include "PastEvent.h"
using namespace std;
using namespace crow;
extern map<string, Event> eventMap;
extern map<string, Artist> artistMap;
extern map<string, Venue> venueMap;
extern map<string, PastEvent> pastMap;
response readRandomReview(string searchString){
json::wvalue jsonWriteValue;
try
{
PastEvent pastevent = pastMap.at(searchString);
json::wvalue jsonWriteValue;
jsonWriteValue["random review"] = pastevent.getReview();
return response(200, jsonWriteValue.dump());
}
catch(out_of_range& exception)
{
return response(404, "Event Not Found");
}
}
response readPastEvent(string id)
{
try
{
//Get the event id from the event map
PastEvent event = pastMap.at(id);
//return the event as a JSON string
return response(event.convertToJson().dump());
}
catch(out_of_range& exception)
{
return response(404, "Event Not Found");
}
}
//printing out all past events
response readPastEvents()
{
json::wvalue jsonWriteValue;
//For each past event in the map, convert the event to JSON and add to the write value
int index = 0;
for(pair<string,PastEvent> keyValuePair : pastMap)
{
// first: gives you access to the first item in the pair
// second: gives you access to the second item in the pair
jsonWriteValue[index] = keyValuePair.second.convertToJson();
index++;
}
return response(jsonWriteValue.dump());
}
response searchArtist(string searchString)
{
vector<Event> found;
//For each string/Event pair in the event map
for(pair<string, Event> eventPair : eventMap)
{
if(eventPair.second.getArtist().getName().find(searchString) != string::npos)
found.push_back(eventPair.second);
}
json::wvalue jsonWriteValue;
int index = 0;
for(Event event : found)
{
jsonWriteValue[index] = event.convertToJson();
index++;
}
return response(200,jsonWriteValue.dump());
}
response searchVenue(string searchString)
{
vector<Event> found;
//For each string/Event pair in the event map
for(pair<string, Event> eventPair : eventMap)
{
if(eventPair.second.getWhere().getCity().find(searchString) != string::npos)
found.push_back(eventPair.second);
}
json::wvalue jsonWriteValue;
int index = 0;
for(Event event : found)
{
jsonWriteValue[index] = event.convertToJson();
index++;
}
return response(200,jsonWriteValue.dump());
}
struct
{
bool operator()(pair<string, Event>& a, pair<string,Event>& b)
{
//substring of certain indices of the format MM/DD/YYYY
string year_a = a.second.getDate().substr(6,4);
string year_b = b.second.getDate().substr(6,4);
string month_a = a.second.getDate().substr(0,2);
string month_b = b.second.getDate().substr(0,2);
string day_a = a.second.getDate().substr(3,2);
string day_b = b.second.getDate().substr(3,2);
if(year_a < year_b)
return true;
if(year_a == year_b && month_a < month_b)
return true;
if(year_a == year_b && month_a == month_b && day_a < day_b)
return true;
return false;
}
} comparatorDate;
response sortDates(string forwardsOrBackwards)
{
vector<pair<string, Event>> eventsToSort;
for (pair<string, Event> eventPair : eventMap)
{
eventsToSort.push_back(eventPair);
}
sort(eventsToSort.begin(), eventsToSort.end(), comparatorDate);
json::wvalue jsonWriteValue;
if (forwardsOrBackwards == "0")
{
int index = 0;
for(pair<string, Event> eventPair : eventsToSort)
{
jsonWriteValue[index] = eventPair.second.convertToJson();
index++;
}
return response(200, jsonWriteValue.dump());
}
else
{
reverse(eventsToSort.begin(), eventsToSort.end());
int index = 0;
for(pair<string, Event> eventPair : eventsToSort)
{
jsonWriteValue[index] = eventPair.second.convertToJson();
index++;
}
return response(200, jsonWriteValue.dump());
}
return response(200, jsonWriteValue.dump());
}
response createEvent(request req)
{
// Load the request body string into a JSON read value.
json::rvalue readValueJson = json::load(req.body);
// If there was a problem converting the body text to JSON return an error.
if(!readValueJson)
return response(400, "Invalid JSON");
// Create a new event.
Event event{readValueJson["id"].s(), artistMap[readValueJson["artist"]["name"].s()], venueMap[readValueJson["venue"]["city"].s()], readValueJson["date"].s(), readValueJson["time"].s()};
eventMap[event.getId()] = event;
return response(201, event.convertToJson().dump());
}
response readEvent(string id)
{
try
{
//Get the event id from the event map
Event event = eventMap.at(id);
//return the event as a JSON string
return response(event.convertToJson().dump());
}
catch(out_of_range& exception)
{
return response(404, "Event Not Found");
}
}
response readAllEvents(request req)
{
//If there is a sort parameter on the request, then sort the sizes
if(req.url_params.get("sort"))
{
return sortDates(req.url_params.get("sort"));
}
if(req.url_params.get("artist"))
{
return searchArtist(req.url_params.get("artist"));
}
if(req.url_params.get("location"))
{
return searchVenue(req.url_params.get("location"));
}
if(req.url_params.get("past"))
{
return readPastEvents();
}
// Create a new JSON write value use to write to the file
json::wvalue jsonWriteValue;
//For each event in the map, convert the event to JSON and add to the write value
int index = 0;
for(pair<string,Event> keyValuePair : eventMap)
{
// first: gives you access to the first item in the pair
// second: gives you access to the second item in the pair
jsonWriteValue[index] = keyValuePair.second.convertToJson();
index++;
}
return response(jsonWriteValue.dump());
}
void updateEvent(request req, response& res, string id)
{
if(req.url_params.get("finished"))
{
try
{
// Get the event from the event map
Event event = eventMap.at(id);
PastEvent finishedEvent(event.getId(), event.getArtist(), event.getWhere(), event.getDate(), event.getTime());
//adds it to pastMap
pastMap[id] = finishedEvent;
//update the event
eventMap.erase(id);
//return the updated event as a JSON string
res.code = 200;
res.set_header("Content-Type", "application/json");
res.write(event.convertToJson().dump());
res.end();
}
catch(out_of_range& exception)
{
res.code = 404;
res.end("Event Not Found");
}
}
try
{
// Get the event from the event map
Event event = eventMap.at(id);
//Convert the request body to json
json::rvalue readValueJson = json::load(req.body);
if(!readValueJson)
{
res.code = 400;
res.end("Invalid Json");
return;
}
//update the event
event.setArtist(artistMap.at(readValueJson["artist"]["name"].s()));
event.setWhere(venueMap.at(readValueJson["venue"]["city"].s()));
event.setWhen(readValueJson["date"].s(), readValueJson["time"].s());
eventMap[id] = event;
//return the updated event as a JSON string
res.code = 200;
res.set_header("Content-Type", "application/json");
res.write(event.convertToJson().dump());
res.end();
}
catch(out_of_range& exception)
{
res.code = 404;
res.end("Event Not Found");
}
}
response deleteEvent(string id)
{
try
{
Event event = eventMap.at(id);
eventMap.erase(id);
return response(204);
}
catch(out_of_range& exception)
{
return response(404, "Event not found");
}
}
void addReview(request req, response& res, string id)
{
try
{
// Get the event from the event map
PastEvent event = pastMap.at(id);
//Convert the request body to json
json::rvalue readValueJson = json::load(req.body);
if(!readValueJson)
{
res.code = 400;
res.end("Invalid Json");
return;
}
//update the event
event.addReview(readValueJson["new review"].s());
pastMap[id] = event;
//return the updated event as a JSON string
res.code = 200;
res.set_header("Content-Type", "application/json");
res.write(event.convertToJson().dump());
res.end();
}
catch(out_of_range& exception)
{
res.code = 404;
res.end("Event Not Found");
}
}