-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathHallSummary.js
228 lines (199 loc) · 6.23 KB
/
HallSummary.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
// Static data
var root = 'https://www.mealbookings.cai.cam.ac.uk/index.php';
var parseMenu = function(type, mHtml) {
var lines = mHtml
.replace(/\n/g, ' ')
.split(/<br(?: ?\/?)>/g)
.map(function(l) { return l.trim(); })
.map(function(l) {
return l.replace(/\([A-Z]+(?:,[A-Z]+)*\)/g, function(m) {
return m.replace(/[A-Z]+/g, function(m) {
return '<abbr class="allergen">' + m + '</abbr>';
});
});
});
if(type.name != 'cafeteria' && lines[1] == '') {
lines[1] = '*';
}
var courses = lines
.join('\n')
.split(/\n[\*_]+\n/)
.map(function(c) { return c.trim(); });
// remove obvious line wrapping
courses = courses.map(function(s) {
return s.replace(/\([^)]+\)/, function(l) { return l.replace(/\s+/g, ' ') });
});
var vegCourses = courses[courses.length - 1].split(/\n+vegetarian:?\s*(?:-\s*\n?|\n)/i);
if(vegCourses.length > 1) {
courses[courses.length - 1] = vegCourses[0];
var mainIdx = type.name == 'cafeteria' ? 0 : courses.length - 2;
var mainLines = courses[mainIdx].split(/\n\n+/);
mainLines[0] = '<span class="main-meat">' + mainLines[0] + '</span>\n'
+ '<span class="main-vegetarian">' + vegCourses[1].replace(/\s+/g, ' ') + '</span>';
courses[mainIdx] = mainLines.map(function(x) {
return '<span class="menu-part">' + x + '</span>';
}).join('');
}
return courses;
}
// HallSummary class
var HallSummary = function(type) {
this.date = null;
this.capacity = NaN;
this.available = NaN;
this.status = 'unknown';
this.type = type;
}
Object.defineProperty(HallSummary.prototype, 'url', {
get: function() { return root + '?' + $.param({event: this.type.id, date: this.date.toLocalISODateString()}); }
});
HallSummary.prototype.toString = function() {
return this.date.toLocalISODateString() + ' (' + this.type.name + ') - ' + this.status + ' ' + this.available + '/' + this.capacity;
}
HallSummary.prototype.loadPage = function() {
if(this._ajaxTask) return this._ajaxTask;
return this._ajaxTask = $.get(this.url, null, null, 'html').then(function(data) {
return $(data);
});
}
HallSummary.prototype.loadBookableness = function() {
return this.loadPage().then(function($doc) {
return this.bookable = $doc.find('form').size() > 0;
}.bind(this));
}
HallSummary.prototype.loadMenu = function() {
var self = this;
return this.loadPage().then(function($doc) {
var error = $doc.find('.error');
if(error.size())
return $.Deferred().reject(error);
var menu = $doc.find('.message .announcement');
if(menu.size()) {
menu = parseMenu(self.type, menu.html());
self.menu = menu;
return menu;
}
}).promise();
};
HallSummary.prototype.loadAttendees = function() {
var self = this;
return this.loadPage().then(function($doc) {
var error = $doc.find('.error');
if(error.size())
return $.Deferred().reject(error);
self.attendees = [];
var attendees = $doc.find('.list');
if(attendees.size() == 1 && attendees.find('tr').find('td').size() == 1) {
self.attendees = [];
}
else if(attendees.size()) {
attendees = attendees.find('tr').map(function() {
var cells = $(this).find('td');
var name = cells.eq(0).text();
var crsid = cells.eq(0).attr('title');
var namedGuestStr = /\((\d+) guests?;(.*)\)/.exec(cells.eq(1).text());
var guestStr = /\((\d+) guests?\)/.exec(cells.eq(1).text());
if(namedGuestStr)
return {name: name, crsid: crsid, guestCount: namedGuestStr[1], guests: namedGuestStr[2]};
else if(guestStr)
return {name: name, crsid: crsid, guestCount: guestStr[1]};
else
return {name: name, crsid: crsid};
}).get();
self.attendees = attendees;
}
return self.attendees;
}).promise();
};
HallSummary.prototype.loadWaitList = function() {
var self = this;
return this.loadPage().then(function($doc) {
var listElem = $doc
.find('h2')
.filter(function() {
return $(this).text().startsWith('Waiting list');
})
.next('table')
.eq(0);
return listElem.find('tr').map(function() {
var cells = $(this).find('td')
return {
n: +cells.eq(0).text().match(/^\d+/)[0],
pos: +cells.eq(1).text().match(/^\d+/)[0]
}
}).get();
}).promise();
};
/* Possible booking messages:
update:
<div class="message"><div class="success">Booking updated successfully</div></div>
<div class="message"><div class="success">Booking created successfully</div></div>
delete_confirm:
<div class="message"><div class="success">Your booking for .* on .* has been successfully deleted.</div></div>
*/
HallSummary.prototype.makeBooking = function(settings) {
return $.post(this.url, {
update: '',
vegetarians: settings.vegetarian ? 1 : 0,
requirements: settings.requirements
}, null, 'html').then(function(data) {
var message = $(data).find('.message > div');
var notOpenYet = $(data).find('h2').filter(function() {
return $(this).text().trim() == "Bookings for this event have not yet opened";
}).length != 0;
var d = $.Deferred();
if(notOpenYet) {
return d.reject('Not open');
}
else if(message.hasClass('success') && message.text().match(/Booking (?:created|updated) successfully/)) {
return d.resolve(); // everything is ok
}
else if(message.size() == 0) {
var win = window.open('about:blank');
with(win.document) {
open();
write(data.replace(/<(\/?)ajax:/g, '<$1'));
close();
}
return d.reject('Booking failed silently!');
}
else {
return d.reject('Error!');
console.log(message.html());
}
});
};
HallSummary.prototype.clearBooking = function() {
return $.post(this.url, {
delete_confirm: ''
}, null, 'html').then(function(data) {
console.log(data);
});
};
HallSummary.prototype.swapTo = function(typeId) {
$.post(this.url, {
transfer: '',
target: typeId
}).then(function(data) {
console.log(data);
});
};
/*
target:257
transfer:""
delete:
edit:
*/
HallSummary.loadAll = function(opts) {
return HallType.loadAll()
.then(function(types) {
var tasks = types.map(function(t) {
return t.loadHalls(opts);
});
return $.whenAll(tasks);
})
.then(function(results) {
return [].concat.apply([], results);
})
.promise();
};