forked from codeforboston/mbta-ninja
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreport.js
532 lines (509 loc) · 14.3 KB
/
report.js
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
Reports = new Mongo.Collection('reports');
// Decay variables
var initialWeight = 20;
var upvoteWeight = 10;
var downvoteWeight = -5;
var maxWeight = 20;
function Report(name, location, line, votes, clears, createdAt, lastConfirmedAt, expired, weight) {
this.name = name;
this.location = location;
this.line = line;
this.votes = votes;
this.clears = clears;
this.createdAt = createdAt;
this.lastConfirmedAt = lastConfirmedAt;
this.expired = expired;
this.weight = weight;
}
Report.prototype = {
save: function() {
var docId = Reports.findOne({
name: this.name,
location: this.location,
line: this.line,
expired: false
});
if (docId) { // Upvote
if (Session.get(docId._id) == null) { // Can upvote
// Avoid future upvotes
Session.setPersistent(docId._id, 'upvoted');
Reports.update(docId._id, {$inc: {votes: 1}});
// Cap weight to maxWeight
var newWeight = docId.weight + upvoteWeight;
if (newWeight > maxWeight)
newWeight = maxWeight;
return Reports.update(docId._id,
{$set: {weight: newWeight, lastConfirmedAt: new Date()}});
}
} else { // Create
var newReport = Reports.insert({
name: this.name,
location: this.location,
line: this.line,
votes: 0,
clears: 0,
createdAt: new Date(),
lastConfirmedAt: new Date(),
expired: false,
weight: initialWeight
});
// Avoid user to upvote her own report
Session.setPersistent(newReport, 'created');
return newReport;
}
}
};
if (Meteor.isClient) {
var reportTypes = [
{name: 'Delayed train'},
{name: 'Train too crowded to board'},
{name: 'Overcrowded platform'},
{name: 'Overcrowded train'},
{name: 'Train stopped between stations'},
{name: 'Disabled train'},
{name: 'Medical emergency'},
{name: 'Normal conditions'}
];
var stations = {
"Red Line - Northbound": [
{name: 'Alewife'},
{name: 'Davis'},
{name: 'Porter Square'},
{name: 'Harvard Square'},
{name: 'Central Square'},
{name: 'Kendall'},
{name: 'Charles/MGH'},
{name: 'Park Street'},
{name: 'Downtown Crossing'},
{name: 'South Station'},
{name: 'Broadway'},
{name: 'Andrew'},
{name: 'JFK/UMass'},
{name: 'North Quincy'},
{name: 'Wollaston'},
{name: 'Quincy Center'},
{name: 'Quincy Adams'},
{name: 'Braintree'},
{name: 'Savin Hill'},
{name: 'Fields Corner'},
{name: 'Shawmut'},
{name: 'Ashmont'}
],
"Red Line - Southbound": [
{name: 'Alewife'},
{name: 'Davis'},
{name: 'Porter Square'},
{name: 'Harvard Square'},
{name: 'Central Square'},
{name: 'Kendall'},
{name: 'Charles/MGH'},
{name: 'Park Street'},
{name: 'Downtown Crossing'},
{name: 'South Station'},
{name: 'Broadway'},
{name: 'Andrew'},
{name: 'JFK/UMass'},
{name: 'North Quincy'},
{name: 'Wollaston'},
{name: 'Quincy Center'},
{name: 'Quincy Adams'},
{name: 'Braintree'},
{name: 'Savin Hill'},
{name: 'Fields Corner'},
{name: 'Shawmut'},
{name: 'Ashmont'}
],
"Orange Line - Northbound": [
{name: "Oak Grove"},
{name: "Malden Center"},
{name: "Wellington"},
{name: "Assembly"},
{name: "Sullivan Square"},
{name: "Community College"},
{name: "North Station"},
{name: "Haymarket"},
{name: "State Street"},
{name: "Downtown Crossing"},
{name: "Chinatown"},
{name: "Tufts Medical Center"},
{name: "Back Bay"},
{name: "Massachusetts Ave."},
{name: "Ruggles"},
{name: "Roxbury Crossing"},
{name: "Jackson Square"},
{name: "Stony Brook"},
{name: "Green Street"},
{name: "Forest Hills"}
],
"Orange Line - Southbound": [
{name: "Oak Grove"},
{name: "Malden Center"},
{name: "Wellington"},
{name: "Assembly"},
{name: "Sullivan Square"},
{name: "Community College"},
{name: "North Station"},
{name: "Haymarket"},
{name: "State Street"},
{name: "Downtown Crossing"},
{name: "Chinatown"},
{name: "Tufts Medical Center"},
{name: "Back Bay"},
{name: "Massachusetts Ave."},
{name: "Ruggles"},
{name: "Roxbury Crossing"},
{name: "Jackson Square"},
{name: "Stony Brook"},
{name: "Green Street"},
{name: "Forest Hills"}
],
"Blue Line - Northbound": [
{name: 'Wonderland'},
{name: 'Revere Beach'},
{name: 'Beachmont'},
{name: 'Suffolk Downs'},
{name: 'Orient Heights'},
{name: 'Wood Island'},
{name: 'Airport'},
{name: 'Maverick'},
{name: 'Aquarium'},
{name: 'State'},
{name: 'Bowdoin'}
],
"Blue Line - Southbound": [
{name: 'Wonderland'},
{name: 'Revere Beach'},
{name: 'Beachmont'},
{name: 'Suffolk Downs'},
{name: 'Orient Heights'},
{name: 'Wood Island'},
{name: 'Airport'},
{name: 'Maverick'},
{name: 'Aquarium'},
{name: 'State'},
{name: 'Bowdoin'}
],
"Green Line B - Westbound": [
{name: "Lechmere"},
{name: "Science Park"},
{name: "North Station"},
{name: "Haymarket"},
{name: "Park Street"},
{name: "Boylston"},
{name: "Arlington"},
{name: "Copley"},
{name: "Hynes Convention Center"},
{name: "Kenmore"},
{name: "Blandford Street"},
{name: "Boston Univ. East"},
{name: "Boston Univ. Central"},
{name: "Boston Univ. West"},
{name: "Saint Paul Street"},
{name: "Pleasant Street"},
{name: "Babcock Street"},
{name: "Packards Corner"},
{name: "Harvard Ave."},
{name: "Griggs Street"},
{name: "Allston Street"},
{name: "Warren Street"},
{name: "Washington Street"},
{name: "Sutherland Road"},
{name: "Chiswick Road"},
{name: "Chestnut Hill Ave."},
{name: "South Street"},
{name: "Boston College"}
],
"Green Line B - Eastbound": [
{name: "Lechmere"},
{name: "Science Park"},
{name: "North Station"},
{name: "Haymarket"},
{name: "Park Street"},
{name: "Boylston"},
{name: "Arlington"},
{name: "Copley"},
{name: "Hynes Convention Center"},
{name: "Kenmore"},
{name: "Blandford Street"},
{name: "Boston Univ. East"},
{name: "Boston Univ. Central"},
{name: "Boston Univ. West"},
{name: "Saint Paul Street"},
{name: "Pleasant Street"},
{name: "Babcock Street"},
{name: "Packards Corner"},
{name: "Harvard Ave."},
{name: "Griggs Street"},
{name: "Allston Street"},
{name: "Warren Street"},
{name: "Washington Street"},
{name: "Sutherland Road"},
{name: "Chiswick Road"},
{name: "Chestnut Hill Ave."},
{name: "South Street"},
{name: "Boston College"}
],
"Green Line C - Westbound": [
{name: "North Station"},
{name: "Haymarket"},
{name: "Park Street"},
{name: "Boylston"},
{name: "Arlington"},
{name: "Copley"},
{name: "Hynes Convention Center"},
{name: "Kenmore"},
{name: "Saint Mary Street"},
{name: "Hawes Street"},
{name: "Kent Street"},
{name: "Saint Paul Street"},
{name: "Coolidge Corner"},
{name: "Summit Ave."},
{name: "Brandon Hall"},
{name: "Fairbanks Street"},
{name: "Washington Square"},
{name: "Tappan Street"},
{name: "Dean Road"},
{name: "Englewood Ave."},
{name: "Cleveland Circle"}
],
"Green Line C - Eastbound": [
{name: "North Station"},
{name: "Haymarket"},
{name: "Park Street"},
{name: "Boylston"},
{name: "Arlington"},
{name: "Copley"},
{name: "Hynes Convention Center"},
{name: "Kenmore"},
{name: "Saint Mary Street"},
{name: "Hawes Street"},
{name: "Kent Street"},
{name: "Saint Paul Street"},
{name: "Coolidge Corner"},
{name: "Summit Ave."},
{name: "Brandon Hall"},
{name: "Fairbanks Street"},
{name: "Washington Square"},
{name: "Tappan Street"},
{name: "Dean Road"},
{name: "Englewood Ave."},
{name: "Cleveland Circle"}
],
"Green Line D - Westbound": [
{name: "North Station"},
{name: "Haymarket"},
{name: "Park Street"},
{name: "Boylston"},
{name: "Arlington"},
{name: "Copley"},
{name: "Hynes Convention Center"},
{name: "Kenmore"},
{name: "Fenway"},
{name: "Longwood"},
{name: "Brookline Village"},
{name: "Brookline Hills"},
{name: "Beaconsfield"},
{name: "Reservoir"},
{name: "Chestnut Hill"},
{name: "Newton Centre"},
{name: "Newton Highlands"},
{name: "Eliot"},
{name: "Waban"},
{name: "Woodland"},
{name: "Riverside"}
],
"Green Line D - Eastbound": [
{name: "North Station"},
{name: "Haymarket"},
{name: "Park Street"},
{name: "Boylston"},
{name: "Arlington"},
{name: "Copley"},
{name: "Hynes Convention Center"},
{name: "Kenmore"},
{name: "Fenway"},
{name: "Longwood"},
{name: "Brookline Village"},
{name: "Brookline Hills"},
{name: "Beaconsfield"},
{name: "Reservoir"},
{name: "Chestnut Hill"},
{name: "Newton Centre"},
{name: "Newton Highlands"},
{name: "Eliot"},
{name: "Waban"},
{name: "Woodland"},
{name: "Riverside"}
],
"Green Line E - Westbound": [
{name: "Park Street"},
{name: "Boylston"},
{name: "Arlington"},
{name: "Copley"},
{name: "Prudential"},
{name: "Symphony"},
{name: "Northeastern University"},
{name: "Museum of Fine Arts"},
{name: "Longwood Medical Area"},
{name: "Brigham Circle"},
{name: "Fenwood Road"},
{name: "Mission Park"},
{name: "Riverway"},
{name: "Back of the Hill"},
{name: "Heath Street"}
],
"Green Line E - Eastbound": [
{name: "Park Street"},
{name: "Boylston"},
{name: "Arlington"},
{name: "Copley"},
{name: "Prudential"},
{name: "Symphony"},
{name: "Northeastern University"},
{name: "Museum of Fine Arts"},
{name: "Longwood Medical Area"},
{name: "Brigham Circle"},
{name: "Fenwood Road"},
{name: "Mission Park"},
{name: "Riverway"},
{name: "Back of the Hill"},
{name: "Heath Street"}
]
};
// HELPERS
var numReports = function(line) {
return Reports.find({
line: currentLine(),
name: {$ne: 'Normal conditions'},
expired: false
}).count();
};
var currentLine = function() {
return Router.current().params.line;
};
var currentStations = function () {
return stations[currentLine()];
}
Template.main.helpers({
noReports: function() {
return numReports(currentLine()) === 0;
},
numReports: function() {
return numReports(currentLine());
},
lineColor: function() {
var line = currentLine();
var lineColor = ""
if(line.indexOf("Red") > -1) {
lineColor = "red-line";
}
else if(line.indexOf("Green") > -1) {
lineColor = "green-line";
}
else if(line.indexOf("Orange") > -1) {
lineColor = "orange-line";
}
else if(line.indexOf("Blue") > -1) {
lineColor = "blue-line";
}
return lineColor;
}
});
Template.createReport.helpers({
stations: function () {
return currentStations();
},
reportTypes: reportTypes
});
Template.report.helpers({
canUpvote: function() {
return Session.get(this._id) == null;
},
positive: function(reportName) {
return (reportName === 'Normal conditions');
}
});
Template.main.helpers({
stations: function () {
return currentStations();
},
currentLine: function() {
return currentLine();
}
});
Template.station.helpers({
reports: function() {
return Reports.find({
location: this.name,
line: currentLine(),
expired: false
});
}
});
// EVENTS
Template.createReport.events({
'click .submit': function() {
var nameInput = $('#nameInput');
var name = nameInput.val();
var locationInput = $('#locationInput');
var location = locationInput.val();
var line = currentLine();
newReport = new Report(
name,
location,
line,
0, // Votes
0, // Clears
new Date(), // Created
new Date(), // Updated
false, // Expired
initialWeight
).save();
if (name === 'Normal conditions') {
// Normal conditions expire all alerts
alert_reports = Reports.find({
line: line,
location: location,
name: {$ne: 'Normal conditions'},
expired: false
}).forEach(function(alert_report) {
Reports.update(alert_report._id, {$set: {expired: true}});
})
} else {
// Any alert expires normal conditions
// We have to search first, cannot run mass update in untrusted code
nc_report = Reports.findOne({
line: line,
location: location,
name: 'Normal conditions',
expired: false
});
if (nc_report)
Reports.update(nc_report._id, {$set: {expired: true}});
}
}
});
Template.report.events({
// Upvote the current event
'click .upvote': function() {
if (!Session.get(this._id)) {
Session.setPersistent(this._id, 'upvoted');
Reports.update(this._id, {$inc: {votes: 1}});
// Cap weight to maxWeight
var newWeight = this.weight + upvoteWeight;
if (newWeight > maxWeight)
newWeight = maxWeight;
Reports.update(this._id,
{$set: {weight: newWeight, lastConfirmedAt: new Date()}});
}
},
'click .downvote': function() {
if (!Session.get(this._id)) {
Reports.update(this._id, {$inc: {clears: 1}});
Reports.update(this._id, {$set: {lastClearedAt: new Date()}});
Reports.update(this._id, {$inc: {weight: downvoteWeight}});
Session.setPersistent(this._id, 'downvoted');
}
}
});
}