-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscheduleController.js
443 lines (395 loc) · 16 KB
/
scheduleController.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
const Volunteer = require('../models/volunteer');
const Student = require('../models/student');
const Admin = require('../models/admin');
const Schedule = require('../models/schedule');
const Class = require('../models/class');
const { errResponse } = require('../utils/error');
const getSchedule = async (req, res, next) => {
try {
const schedules = await Schedule.aggregate([
{
$lookup: {
from: "classes",
localField: "_id",
foreignField: "scheduleId",
as: "classDetails"
}
},
{
$lookup: {
from: "students",
localField: "studentId",
foreignField: "_id",
as: "students"
}
},
{
$lookup: {
from: 'volunteers',
localField: 'volunteerId',
foreignField: '_id',
as: 'volunteerId'
}
},
{
$lookup: {
from: 'volunteers',
localField: 'backupVolunteer',
foreignField: '_id',
as: 'backupVolunteer'
}
},
{
$lookup: {
from: 'volunteers',
localField: 'availableVolunteer',
foreignField: '_id',
as: 'availableVolunteer'
}
},
{
$sort: {
day: 1,
time: 1
}
},
{
$project: {
studentId: 0,
students: {
password: 0
},
availableVolunteer: {
password: 0
},
backupVolunteer: {
password: 0
},
volunteerId: {
password: 0
}
}
}
])
res.status(200).json({ success: true, message: "Success get schedules", data: schedules })
} catch (err) {
if (!err.statusCode) err.statusCode = 500;
next(err)
}
}
const searchSchedule = async (req, res, next) => {
try {
const { searchTerm } = req.params;
const schedules = await Schedule.aggregate([
{
$lookup: {
from: 'students',
localField: 'studentId',
foreignField: '_id',
as: 'students'
}
},
{
$lookup: {
from: 'volunteers',
localField: 'volunteerId',
foreignField: '_id',
as: 'volunteerId'
}
},
{
$lookup: {
from: 'volunteers',
localField: 'backupVolunteer',
foreignField: '_id',
as: 'backupVolunteer'
}
},
{
$lookup: {
from: 'volunteers',
localField: 'availableVolunteer',
foreignField: '_id',
as: 'availableVolunteer'
}
},
{
$match: {
$or: [
{
'students.name': { $regex: searchTerm, $options: 'i' }
},
{
'volunteerId.name': { $regex: searchTerm, $options: 'i' }
},
{
'backupVolunteer.name': { $regex: searchTerm, $options: 'i' }
},
{
'availableVolunteer.name': { $regex: searchTerm, $options: 'i' }
},
{
'day': { $eq: +searchTerm }
},
{
'time': { $eq: +searchTerm }
}
]
}
},
{
$project: {
studentId: 0,
students: {
password: 0
},
availableVolunteer: {
password: 0
},
backupVolunteer: {
password: 0
},
volunteerId: {
password: 0
}
}
}
])
res.status(200).json({ success: true, message: "Success get schedule", data: schedules })
} catch (err) {
if (!err.statusCode) err.statusCode = 500
next(err)
}
}
const addStudentId = async (req, res, next) => {
try {
const currentUser = { ...req.user._doc, role: req.user.role };
if (currentUser.role !== 'Admin') errResponse("Access denied", 403);
const { endTime, day, studentId, subject, building, room, floor, note } = req.body;
let { startTime } = req.body;
const existingStudent = await Student.findById(studentId);
if (!existingStudent) errResponse("Student not found", 404);
// Lopping schedule
while (startTime < endTime) {
const existingSchedule = await Schedule.findOne({ day, time: startTime });
let currentSchedule = existingSchedule;
if (currentSchedule) {
currentSchedule.studentId.push(existingStudent);
await currentSchedule.save();
} else {
currentSchedule = new Schedule({
day,
time: startTime,
studentId: existingStudent,
})
await currentSchedule.save();
}
const newClass = new Class({
scheduleId: currentSchedule,
studentId: existingStudent,
subject,
building,
room,
floor,
note: note || ""
})
await newClass.save();
startTime++
}
res.status(201).json({ success: true, message: "Success add student to schedule" });
} catch (err) {
if (!err.statusCode) err.statusCode = 500
next(err)
}
}
const removeStudentId = async (req, res, next) => {
try {
const currentUser = { ...req.user._doc, role: req.user.role };
if (currentUser.role !== 'Admin') errResponse("Access denied", 403);
const { endTime, day, studentId } = req.body;
let { startTime } = req.body;
const existingStudent = await Student.findById(studentId);
if (!existingStudent) errResponse("Student not found", 404);
// Lopping schedule
while (startTime < endTime) {
const existingSchedule = await Schedule.findOne({ day, time: startTime });
const existingClass = await Class.findOne({ scheduleId: existingSchedule, studentId })
if (!existingSchedule) errResponse("Schedule not found", 404);
if (!existingClass) errResponse("Class not found", 404);
await Class.findByIdAndDelete(existingClass);
existingSchedule.studentId.pull(existingStudent);
await existingSchedule.save();
startTime++;
}
res.status(201).json({ success: true, message: "Success remove student from schedule" });
} catch (err) {
if (!err.statusCode) err.statusCode = 500
next(err)
}
}
const addVolunteerId = async (req, res, next) => {
try {
const currentUser = { ...req.user._doc, role: req.user.role };
if (currentUser.role !== 'Admin') errResponse("Access denied", 403);
const { volunteerId, endTime, day } = req.body;
let { startTime } = req.body;
const existingVolunteer = await Volunteer.findById(volunteerId);
if (!existingVolunteer) errResponse("Volunteer not found", 404);
// Lopping schedule
while (startTime < endTime) {
const existingSchedule = await Schedule.findOne({ day, time: startTime })
if (!existingSchedule) errResponse("Schedule not found", 404)
const existingAvailableVolunteerIndex = existingSchedule.availableVolunteer.findIndex(volunteer => volunteer._id.toString() === volunteer._id.toString());
if (existingAvailableVolunteerIndex === -1) errResponse("Volunteer must have available schdule on that time", 422)
existingSchedule.availableVolunteer.pull(volunteerId)
existingSchedule.volunteerId.push(volunteerId);
await existingSchedule.save();
startTime++;
}
res.status(201).json({ success: true, message: "Success add volunteer to schedule" })
} catch (err) {
if (!err.statusCode) err.statusCode = 500
next(err)
}
}
const removeVolunteerId = async (req, res, next) => {
try {
const currentUser = { ...req.user._doc, role: req.user.role };
if (currentUser.role !== 'Admin') errResponse("Access denied", 403);
const { volunteerId, endTime, isSwitch = true, day } = req.body;
let { startTime } = req.body;
const existingVolunteer = await Volunteer.findById(volunteerId);
if (!existingVolunteer) errResponse("Volunteer not found", 404);
// Lopping schedule
while (startTime < endTime) {
const existingSchedule = await Schedule.findOne({ day, time: startTime });
if (!existingSchedule) errResponse("Schedule not found", 404);
existingSchedule.volunteerId.pull(volunteerId);
// Switch to available volunteer
if (isSwitch) existingSchedule.availableVolunteer.push(volunteerId);
await existingSchedule.save();
startTime++;
}
let message = "Success remove volunteer from schedule"
if (isSwitch) message = "Success switch volunteer to available volunteer";
res.status(201).json({ success: true, message })
} catch (err) {
if (!err.statusCode) err.statusCode = 500;
next(err)
}
}
const addBackupVolunteer = async (req, res, next) => {
try {
const currentUser = { ...req.user._doc, role: req.user.role };
if (currentUser.role !== 'Admin') errResponse("Access denied", 403)
const { endTime, day, volunteerId } = req.body;
let { startTime } = req.body;
const existingVolunteer = await Volunteer.findById(volunteerId);
if (!existingVolunteer) errResponse("Volunteer not found", 404);
while (startTime < endTime) {
const existingSchedule = await Schedule.findOne({ day, time: startTime });
if (!existingSchedule) errResponse("Schedule not found", 404);
existingSchedule.backupVolunteer.push(volunteerId);
existingSchedule.availableVolunteer.pull(volunteerId);
await existingSchedule.save();
startTime++;
}
res.status(201).json({ success: true, message: "Success add backup volunteer to schedule" });
} catch (err) {
if (!err.statusCode) err.statusCode = 500
next(err)
}
}
const removeBackupVolunteer = async (req, res, next) => {
try {
const currentUser = { ...req.user._doc, role: req.user.role };
if (currentUser.role !== 'Admin') errResponse("Access denied", 403)
const { endTime, day, isSwitch = true, volunteerId } = req.body;
let { startTime } = req.body;
const existingVolunteer = await Volunteer.findById(volunteerId);
if (!existingVolunteer) errResponse("Volunteer not found", 404);
while (startTime < endTime) {
const existingSchedule = await Schedule.findOne({ day, time: startTime });
if (!existingSchedule) errResponse("Schedule not found", 404)
existingSchedule.backupVolunteer.pull(volunteerId)
if (isSwitch) existingSchedule.availableVolunteer.push(volunteerId);
await existingSchedule.save()
startTime++;
}
let message = "Success remove backup volunteer from schedule";
if (isSwitch) message = "Success switch volunteer to available volunteer";
res.status(201).json({ success: true, message });
} catch (err) {
if (!err.statusCode) err.statusCode = 500;
next(err)
}
}
const addAvailableVolunteer = async (req, res, next) => {
try {
const currentUser = { ...req.user._doc, role: req.user.role };
if (currentUser.role !== 'Volunteer') errResponse("Access denied", 403);
const { endTime, day } = req.body;
let { startTime } = req.body;
while (startTime < endTime) {
const existingSchedule = await Schedule.findOne({ day, time: startTime });
if (existingSchedule) {
existingSchedule.availableVolunteer.push(currentUser);
await existingSchedule.save();
} else {
const newSchedule = new Schedule({
day,
time: startTime,
availableVolunteer: currentUser
})
await newSchedule.save();
}
startTime++;
}
res.status(201).json({ success: true, message: "Success add available volunteer to schedule" })
} catch (err) {
if (!err.statusCode) err.statusCode = 500
next(err)
}
}
const removeAvailableVolunteer = async (req, res, next) => {
try {
const currentUser = { ...req.user._doc, role: req.user.role };
if (currentUser.role !== 'Volunteer') errResponse("Access denied", 403);
const { endTime, day } = req.body;
let { startTime } = req.body;
while (startTime < endTime) {
const existingSchedule = await Schedule.findOne({ day, time: startTime });
if (!existingSchedule) errResponse("Schedule not found", 404);
const availableVolunteerIndex = existingSchedule.availableVolunteer.findIndex(volunteer => volunteer._id.toString() === currentUser._id.toString());
if (availableVolunteerIndex === -1) errResponse("Volunteer not found in available volunteer field")
existingSchedule.availableVolunteer.pull(currentUser);
await existingSchedule.save();
startTime++;
}
res.status(201).json({ success: true, message: "Success remove available volunteer from schedule" })
} catch (err) {
if (!err.statusCode) err.statusCode = 500;
next(err)
}
}
const changePicketStatus = async (req, res, next) => {
try {
const currentUser = { ...req.user._doc, role: req.user.role };
if (currentUser.role === 'Student') errResponse("Access denied", 403);
const { startTime, endTime, day, status, volunteerId } = req.body;
// Lopping schedule
while (startTime < endTime) {
const existingSchedule = await Schedule.findOne({ day, time: startTime });
if (!existingSchedule) errResponse("Schedule not found", 404);
const existingVolunteerIndex = existingSchedule.volunteerId.findIndex(volunteer => volunteer._id.toString() === volunteerId);
if (existingVolunteerIndex === -1) errResponse("Schedule dont have volunteer id yet", 404);
existingSchedule.status[existingVolunteerIndex] = status;
await existingSchedule.save();
}
res.status(201).json({ success: true, message: "Success update picket status" })
} catch (err) {
if (!err.statusCode) err.statusCode = 500
next(err)
}
}
module.exports = { getSchedule, searchSchedule, addStudentId, removeStudentId, addVolunteerId, removeVolunteerId, addBackupVolunteer, removeBackupVolunteer, addAvailableVolunteer, removeAvailableVolunteer, changePicketStatus }