-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhandler.js
More file actions
535 lines (458 loc) · 17.6 KB
/
handler.js
File metadata and controls
535 lines (458 loc) · 17.6 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
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
533
534
535
import { success, unauthorized, failure } from "./util/response-lib";
import UserService from "./services/UserService";
import StudentProfileService from "./services/StudentProfileService";
import StaffProfileService from "./services/StaffProfileService";
import StudentISAService from "./services/StudentISAService";
import StaffModel from "./models/StaffModel";
import CreateStaffModel from "./models/CreateStaffModel";
import UpdateStaffModel from "./models/UpdateStaffModel";
import StudentModel from "./models/StudentModel";
import CreateStudentModel from "./models/CreateStudentModel";
import UpdateStudentModel from "./models/UpdateStudentModel";
//import StudentISAModel from "./models/StudentISAModel";
import CreateStudentISAModel from "./models/CreateStudentISAModel";
import UpdateStudentISAModel from "./models/UpdateStudentISAModel";
const studentProfileService = new StudentProfileService();
const studentISAService = new StudentISAService();
const staffProfileService = new StaffProfileService();
const userService = new UserService();
// Group Names
const StaffUserGroupName = process.env.staffUserGroupName;
const StaffAdminUserGroupName = process.env.staffAdminUserGroupName;
const StudentUserGroupName = process.env.studentUserGroupName;
// HELPER FUNCTIONS
function parseAuthProvider(event) {
const authProvider = event.requestContext.identity.cognitoAuthenticationProvider;
const parts = authProvider.split(":");
const userPoolIdParts = parts[parts.length - 3].split("/");
const userPoolId = userPoolIdParts[userPoolIdParts.length - 1];
const userSub = parts[parts.length - 1];
return { userPoolId: userPoolId, userSub: userSub };
}
async function getUserDetails(event) {
const { userPoolId, userSub } = parseAuthProvider(event);
const user = await userService.getUser(userPoolId, userSub);
const userName = user.Username;
const userGroupResults = await userService.getUserGroups(userPoolId, userName);
const userGroups = userGroupResults.map(function(userGroup) {
return userGroup.GroupName;
});
const isStaffUser = userGroups.includes(StaffUserGroupName);
const isStaffAdminUser = userGroups.includes(StaffAdminUserGroupName);
const isStudentUser = userGroups.includes(StudentUserGroupName);
return {
user: user,
userPoolId: userPoolId,
userSub: userSub,
userGroups: userGroups,
isStaffUser: isStaffUser,
isStaffAdminUser: isStaffAdminUser,
isStudentUser: isStudentUser
};
}
// LAMBDAS
// Universal Calls
export async function user(event, context) {
try {
const { user, userSub, isStaffUser, isStaffAdminUser, isStudentUser } = await getUserDetails(event);
const result = {
userId: userSub
};
result.userAttributes = user.Attributes;
result.userStatus = user.UserStatus;
result.userCreateDate = user.UserCreateDate;
result.userEnabled = user.Enabled;
result.userStatus = user.UserStatus;
if (isStaffAdminUser) {
result.userGroup = StaffAdminUserGroupName;
} else if (isStaffUser) {
result.userGroup = StaffUserGroupName;
} else if (isStudentUser) {
result.userGroup = StudentUserGroupName;
} else {
result.userGroup = "unknown";
}
if (isStaffUser || isStaffAdminUser) {
const staffProfileId = userSub;
const staffProfile = await staffProfileService.staffProfile(staffProfileId);
if (staffProfile !== undefined) {
result.userFirstName = staffProfile.staffFirstName;
result.userLastName = staffProfile.staffLastName;
}
} else if (isStudentUser) {
const studentProfileId = userSub;
const studentProfile = await studentProfileService.studentProfile(studentProfileId);
if (studentProfile !== undefined) {
result.userFirstName = studentProfile.studentFirstName;
result.userLastName = studentProfile.studentLastName;
}
result.userFirstName = studentProfile.studentFirstName;
result.userLastName = studentProfile.studentLastName;
}
return success({ result: JSON.stringify(result) });
} catch (err) {
console.error("Lamdda Error", err);
return failure(err);
}
}
export async function dashboard(event, context) {
return user(event, context);
}
export async function listStaff(event, context) {
try {
const { userSub, isStaffAdminUser } = await getUserDetails(event);
if (!isStaffAdminUser) {
return unauthorized({ result: "Caller is not a staff admin user" });
}
const result = await staffProfileService.listStaffProfiles();
const resultWithoutOwnProfile = result.filter(function(staffProfile) {
return staffProfile.staffProfileId !== userSub;
});
return success({ result: JSON.stringify(resultWithoutOwnProfile) });
} catch (err) {
console.error("Lamdda Error", err);
return failure(err);
}
}
export async function createStaff(event, context) {
try {
const { userPoolId, isStaffAdminUser } = await getUserDetails(event);
if (!isStaffAdminUser) {
return unauthorized({ result: "Caller is not a staff admin user" });
}
const data = JSON.parse(event.body);
const createStaffModel = new CreateStaffModel(data);
const newUserEmail = createStaffModel.staffEmail;
const userExists = await userService.doesUserExist(userPoolId, newUserEmail);
if (userExists) {
return failure({
message: "User Already Exists with email",
email: newUserEmail
});
}
const userCreationResults = await userService.createUser(userPoolId, newUserEmail);
const userName = userCreationResults.Username;
await userService.addUserToGroup(StaffUserGroupName, userPoolId, userName);
const staffProfileId = userName;
data.staffProfileId = staffProfileId;
const staffModel = new StaffModel(data);
const result = await staffProfileService.updateStaffProfile(staffProfileId, staffModel);
return success({ result: JSON.stringify(result) });
} catch (err) {
console.error("Lamdda Error", err);
return failure(err);
}
}
export async function getStaff(event, context) {
try {
const staffProfileId = event.pathParameters.staffId;
const { userPoolId, isStaffAdminUser, userSub } = await getUserDetails(event);
if (!isStaffAdminUser && userSub !== staffProfileId) {
return unauthorized({
result: "Caller is not a staff admin user and this is not a call for own profile"
});
}
const user = await userService.getUser(userPoolId, staffProfileId);
if (user == undefined) {
return failure({
message: "Could not find staff user with id",
staffId: staffProfileId
});
}
const result = await staffProfileService.staffProfile(staffProfileId);
return success({ result: result });
} catch (err) {
console.error("Lamdda Error", err);
return failure(err);
}
}
export async function updateStaff(event, context) {
try {
const staffProfileId = event.pathParameters.staffId;
const { userSub, userPoolId, isStaffAdminUser } = await getUserDetails(event);
if (!isStaffAdminUser && userSub !== staffProfileId) {
return unauthorized({
result: "Caller is not a staff admin user and this is not a call for own profile"
});
}
const user = await userService.getUser(userPoolId, staffProfileId);
if (user == undefined) {
return failure({
message: "Could not find staff user with id",
staffId: staffProfileId
});
}
const data = JSON.parse(event.body);
const updateStaffModel = new UpdateStaffModel(data);
updateStaffModel.staffProfileId = staffProfileId;
//TODO: Check if we are actually updating a staff user and not a student user
const result = await staffProfileService.updateStaffProfile(staffProfileId, updateStaffModel);
return success({ result: JSON.stringify(result) });
} catch (err) {
console.error("Lamdda Error", err);
return failure(err);
}
}
export async function deleteStaff(event, context) {
try {
const staffProfileId = event.pathParameters.staffId;
const { userSub, userPoolId, isStaffAdminUser } = await getUserDetails(event);
if (!isStaffAdminUser) {
return unauthorized({ result: "Caller is not a staff admin user" });
}
if (staffProfileId === userSub) {
return failure({
message: "Cannot delete yourself with this call"
});
}
const user = await userService.getUser(userPoolId, staffProfileId);
if (user == undefined) {
return failure({
message: "Could not find staff user with id",
staffId: staffProfileId
});
}
//TODO: Check if we are actually deleting a staff user
await userService.deleteUser(userPoolId, staffProfileId);
const result = await staffProfileService.deleteStaffProfile(staffProfileId);
return success({ result: JSON.stringify(result) });
} catch (err) {
console.error("Lamdda Error", err);
return failure(err);
}
}
export async function listStudents(event, context) {
try {
const { isStaffAdminUser, isStaffUser } = await getUserDetails(event);
if (!isStaffAdminUser && !isStaffUser) {
return unauthorized({
result: "Caller is not a staff admin user or a staff user"
});
}
const result = await studentProfileService.listStudentProfiles();
return success({ result: JSON.stringify(result) });
} catch (err) {
console.error("Lamdda Error", err);
return failure(err);
}
}
export async function createStudent(event, context) {
try {
const { userPoolId, isStaffAdminUser, isStaffUser } = await getUserDetails(event);
if (!isStaffAdminUser && !isStaffUser) {
return unauthorized({
result: "Caller is not a staff admin user or a staff user"
});
}
const data = JSON.parse(event.body);
const createStudentModel = new CreateStudentModel(data);
const newUserEmail = createStudentModel.studentEmail;
const userExists = await userService.doesUserExist(userPoolId, newUserEmail);
if (userExists) {
return failure({
message: "User Already Exists with email",
email: newUserEmail
});
}
const userCreationResults = await userService.createUser(userPoolId, newUserEmail);
const userName = userCreationResults.Username;
await userService.addUserToGroup(StudentUserGroupName, userPoolId, userName);
const studentProfileId = userName;
data.studentProfileId = studentProfileId;
const studentModel = new StudentModel(data);
const result = await studentProfileService.updateStudentProfile(studentProfileId, studentModel);
return success({ result: JSON.stringify(result) });
} catch (err) {
console.error("Lamdda Error", err);
return failure(err);
}
}
export async function getStudent(event, context) {
try {
const studentProfileId = event.pathParameters.studentId;
const { userPoolId, isStaffAdminUser, isStaffUser, userSub } = await getUserDetails(event);
if (!isStaffAdminUser && !isStaffUser && userSub !== studentProfileId) {
return unauthorized({
result: "Caller is not a staff admin user or a staff user and this is not a call for own profile"
});
}
const user = await userService.getUser(userPoolId, studentProfileId);
if (user == undefined) {
return failure({
message: "Could not find student user with id",
studentId: studentProfileId
});
}
const result = await studentProfileService.studentProfile(studentProfileId);
return success({ result: result });
} catch (err) {
console.error("Lamdda Error", err);
return failure(err);
}
}
export async function updateStudent(event, context) {
try {
const studentProfileId = event.pathParameters.studentId;
const { userPoolId, isStaffAdminUser, isStaffUser, userSub } = await getUserDetails(event);
if (!isStaffAdminUser && !isStaffUser && userSub !== studentProfileId) {
return unauthorized({
result: "Caller is not a staff admin user or a staff user and this is not a call for own profile"
});
}
const user = await userService.getUser(userPoolId, studentProfileId);
if (user == undefined) {
return failure({
message: "Could not find student user with id",
studentId: studentProfileId
});
}
//TODO: Check if we are actually deleting a student user
const data = JSON.parse(event.body);
const updateStudentModel = new UpdateStudentModel(data);
updateStudentModel.studentProfileId = studentProfileId;
const result = await studentProfileService.updateStudentProfile(studentProfileId, updateStudentModel);
return success({ result: JSON.stringify(result) });
} catch (err) {
console.error("Lamdda Error", err);
return failure(err);
}
}
export async function deleteStudent(event, context) {
try {
const studentProfileId = event.pathParameters.studentId;
const { userPoolId, isStaffAdminUser, isStaffUser } = await getUserDetails(event);
if (!isStaffAdminUser && !isStaffUser) {
return unauthorized({
result: "User is not a staff admin user or a staff user"
});
}
const user = await userService.getUser(userPoolId, studentProfileId);
if (user == undefined) {
return failure({
message: "Could not find student user with id",
studentId: studentProfileId
});
}
//TODO: Check if we are actually deleting a student user
await userService.deleteUser(userPoolId, studentProfileId);
const result = await studentProfileService.deleteStudentProfile(studentProfileId);
return success({ result: JSON.stringify(result) });
} catch (err) {
console.error("Lamdda Error", err);
return failure(err);
}
}
export async function createStudentISA(event, context) {
try {
const studentId = event.pathParameters.studentId;
const { userPoolId, isStaffAdminUser, isStaffUser } = await getUserDetails(event);
if (!isStaffAdminUser && !isStaffUser) {
return unauthorized({
result: "Caller is not a staff admin user or a staff user"
});
}
const user = await userService.getUser(userPoolId, studentId);
if (user == undefined) {
return failure({
message: "Could not find student user with id",
studentId: studentId
});
}
const data = JSON.parse(event.body);
const createStudentISAModel = new CreateStudentISAModel(data);
const isaExists = await studentISAService.doesISAExist(studentId);
if (isaExists) {
return failure({
message: "ISA already exists for student",
studentId: studentId
});
}
createStudentISAModel.studentId = studentId;
const result = await studentISAService.updateStudentISA(studentId, createStudentISAModel);
return success({ result: JSON.stringify(result) });
} catch (err) {
console.error("Lamdda Error", err);
return failure(err);
}
}
export async function getStudentISA(event, context) {
try {
const studentId = event.pathParameters.studentId;
const { userPoolId, isStaffAdminUser, isStaffUser, userSub } = await getUserDetails(event);
if (!isStaffAdminUser && !isStaffUser && userSub !== studentId) {
return unauthorized({
result: "Caller is not a staff admin user or a staff user and this is not a call for own isa"
});
}
const user = await userService.getUser(userPoolId, studentId);
if (user == undefined) {
return failure({
message: "Could not find student user with id",
studentId: studentId
});
}
const isaExists = await studentISAService.doesISAExist(studentId);
if (!isaExists) {
return failure({
message: "ISA does not exist for student",
studentId: studentId
});
}
const result = await studentISAService.studentISA(studentId);
return success({ result: result });
} catch (err) {
console.error("Lamdda Error", err);
return failure(err);
}
}
export async function updateISA(event, context) {
try {
const studentId = event.pathParameters.studentId;
const { userPoolId, isStaffAdminUser, isStaffUser, userSub } = await getUserDetails(event);
if (!isStaffAdminUser && !isStaffUser && userSub !== studentId) {
return unauthorized({
result: "Caller is not a staff admin user or a staff user and this is not a call for own isa"
});
}
const user = await userService.getUser(userPoolId, studentId);
if (user == undefined) {
return failure({
message: "Could not find student user with id",
studentId: studentId
});
}
//TODO: Check if we are actually updating a student user isa
const data = JSON.parse(event.body);
const updateStudentISAModel = new UpdateStudentISAModel(data);
updateStudentISAModel.studentId = studentId;
const result = await studentISAService.updateStudentISA(studentId, updateStudentISAModel);
return success({ result: JSON.stringify(result) });
} catch (err) {
console.error("Lamdda Error", err);
return failure(err);
}
}
export async function deleteStudentISA(event, context) {
try {
const studentId = event.pathParameters.studentId;
const { userPoolId, isStaffAdminUser, isStaffUser } = await getUserDetails(event);
if (!isStaffAdminUser && !isStaffUser) {
return unauthorized({
result: "User is not a staff admin user or a staff user"
});
}
const user = await userService.getUser(userPoolId, studentId);
if (user == undefined) {
return failure({
message: "Could not find student user with id",
studentId: studentId
});
}
//TODO: Check if we are actually deleting a student user isa
const result = await studentISAService.deleteStudentISA(studentId);
return success({ result: JSON.stringify(result) });
} catch (err) {
console.error("Lamdda Error", err);
return failure(err);
}
}