-
Notifications
You must be signed in to change notification settings - Fork 2
/
queries.js
273 lines (249 loc) · 6.65 KB
/
queries.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
const fullDateRegex = /^\d\d\d\d-\d\d-\d\d$/;
module.exports = (self, query) => {
return {
builders: {
upcoming: {
def: null,
safeFor: 'public',
finalize() {
// Navigation by year, month or day should
// trump this filter allowing you to
// browse the past
if (query.get('year')) {
return;
}
if (query.get('month')) {
return;
}
if (query.get('day')) {
return;
}
const upcoming = query.get('upcoming');
if (upcoming === null) {
return;
}
if (upcoming) {
query.and({
end: { $gt: new Date() }
});
} else {
query.and({
end: { $lte: new Date() }
});
}
},
launder(value) {
return self.apos.launder.booleanOrNull(value);
},
choices() {
return [
{
value: null,
label: 'aposEvent:filterUpcomingBoth'
},
{
value: true,
label: 'aposEvent:filterUpcomingTrue'
},
{
value: false,
label: 'aposEvent:filterUpcomingFalse'
}
];
}
},
// Filter by year, in YYYY-MM-DD format. The event must
// be taking place during that year (it might surround it).
// Use of this filter cancels the upcoming filter
year: {
def: null,
safeFor: 'public',
finalize() {
const year = query.get('year');
if (!year) {
return;
}
query.and({
$and: [
{ startDate: { $lte: year + '-12-31' } },
{ endDate: { $gte: year + '-01-01' } }
]
});
},
launder(value) {
return self.apos.launder.string(value);
},
async choices() {
const allDates = await query
.clone()
.upcoming(null)
.toDistinct('startDate');
const years = [ {
value: null,
label: 'aposEvent:filterAll'
} ];
for (const eachDate of allDates) {
const year = eachDate.substr(0, 4);
if (!years.find(e => e.value === year)) {
years.push({
value: year,
label: year
});
}
}
years.sort().reverse();
return years;
}
},
// Filter by month, in YYYY-MM- format, using regex. The event must
// be taking place during that month (it might surround it).
// Use of this filter cancels the upcoming filter
month: {
def: null,
safeFor: 'public',
finalize() {
const month = query.get('month');
if (!month) {
return;
}
query.and({
$and: [
{ startDate: { $lte: month + '-31' } },
{ endDate: { $gte: month + '-01' } }
]
});
},
launder(s) {
s = self.apos.launder.string(s);
if (!s.match(/^\d\d\d\d-\d\d$/)) {
return null;
}
return s;
},
async choices() {
const allDates = await query
.clone()
.upcoming(null)
.toDistinct('startDate');
const months = [ {
value: null,
label: 'aposEvent:filterAll'
} ];
for (const eachDate of allDates) {
const month = eachDate.substr(0, 7);
if (!months.find(e => e.value === month)) {
months.push({
value: month,
label: month
});
}
}
months.sort().reverse();
return months;
}
},
// Filter by month, in YYYY-MM-DD format, using regex. The event must
// be taking place during that month (it might surround it).
// Use of this filter cancels the upcoming filter
day: {
def: null,
safeFor: 'public',
finalize() {
const day = query.get('day');
if (day === null) {
return;
}
query.and({
$and: [
{ startDate: { $lte: day } },
{ endDate: { $gte: day } }
]
});
},
launder(s) {
s = self.apos.launder.string(s);
if (!s.match(fullDateRegex)) {
return null;
}
return s;
},
async choices() {
const allDates = await query
.clone()
.upcoming(null)
.toDistinct('startDate');
const days = [ {
value: null,
label: 'aposEvent:filterAll'
} ];
for (const eachDate of allDates) {
if (!days.find(e => e.value === eachDate)) {
days.push({
value: eachDate,
label: eachDate
});
}
}
days.sort().reverse();
return days;
}
},
// Filter for events that are active after a certain date, in YYYY-MM-DD format.
// The event must end on or after that day.
// Use of this filter cancels the upcoming filter
start: {
def: null,
safeFor: 'public',
finalize() {
const start = query.get('start');
if (start === null) {
return;
}
query.and({
endDate: { $gte: start }
});
},
launder(s) {
s = self.apos.launder.string(s);
if (!s.match(fullDateRegex)) {
return null;
}
return s;
}
},
// Filter for events that are active up until a certain day, in YYYY-MM-DD format.
// The event must start on or before that day.
// Use of this filter cancels the upcoming filter
end: {
def: null,
safeFor: 'public',
finalize() {
const end = query.get('end');
if (end === null) {
return;
}
query.and({
startDate: { $lte: end }
});
},
launder(s) {
s = self.apos.launder.string(s);
if (!s.match(fullDateRegex)) {
return null;
}
return s;
}
},
date: {
def: null,
safeFor: 'public',
finalize() {
query.day(query.get('date'));
},
launder(s) {
return self.apos.launder.string(s);
}
}
}
};
};