-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathusersResolver.ts
More file actions
460 lines (423 loc) · 15.5 KB
/
Copy pathusersResolver.ts
File metadata and controls
460 lines (423 loc) · 15.5 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
import * as UserRepo from "../../database/repositories/Users/UserRepository.js";
import * as ModuleRepo from "../../database/repositories/Training/ModuleRepository.js";
import * as HoldsRepo from "../../database/repositories/Holds/HoldsRepository.js";
import * as AccessCheckRepo from "../../database/repositories/Equipment/AccessChecksRepository.js";
import * as EquipmentRepo from "../../database/repositories/Equipment/EquipmentRepository.js";
import * as RoomRepo from "../../database/repositories/Rooms/RoomRepository.js";
import * as RestrictionRepo from "../../database/repositories/Restrictions/RestrictionsRepository.js";
import * as CurrencyAccountRepo from "../../database/repositories/Currency/CurrencyAccountsRepository.js";
import { createUnassocaitedAuditLog } from "../../database/repositories/AuditLogs/AuditLogRepository.js";
import { ApolloContext, CurrentUser } from "../../context.js";
import { getUsersFullName } from "../../database/repositories/Users/UserRepository.js";
import { getActiveTrainingHoldsByUser } from "../../database/repositories/Training/TrainingHoldsRespository.js";
import { getMakerspaceByID } from "../../database/repositories/Makerspaces/MakerspaceRespository.js";
import { EntityNotFound } from "../../EntityNotFound.js";
import { UserRow } from "../../database/knex/tables.js";
import { User } from "../../database/models/users/User.js";
const UsersResolvers = {
User: {
//Map holds field to array of Holds
holds: async (
parent: { id: string },
_args: any,
_context: ApolloContext
) => {
return HoldsRepo.getHoldsByUser(Number(parent.id));
},
// Map restrictions field to array of Restricitons
restrictions: async (
parent: { id: string },
_args: any,
_context: ApolloContext
) => {
return RestrictionRepo.getRestrictionsByUserID(Number(parent.id))
},
//Map passedModules field to array of passed TrainingModules
passedModules: async (
parent: { id: string },
_args: any,
_context: ApolloContext) => {
return ModuleRepo.getPassedModulesByUser(Number(parent.id));
},
//Map accessChecks to array of AccessChecks
accessChecks: async (
parent: { id: string },
_args: any,
_context: ApolloContext
) => {
return AccessCheckRepo.getAccessChecksByUserID(Number(parent.id));
},
//Map trainingHolds field to array of active TrainingHolds
trainingHolds: async (
parent: { id: string },
_args: any,
_context: ApolloContext
) => {
return getActiveTrainingHoldsByUser(Number(parent.id));
},
manager: async (
parent: { id: string },
_args: any,
_context: ApolloContext
) => {
return UserRepo.getUserManagerPerms(Number(parent.id))
},
staff: async (
parent: { id: string },
_args: any,
_context: ApolloContext
) => {
return UserRepo.getUserStaffPerms(Number(parent.id))
},
trainer: async (
parent: { id: string },
_args: any,
_context: ApolloContext
) => {
return UserRepo.getUserTrainerPerms(Number(parent.id))
},
currencyAccount: async (
parent: UserRow,
_args: any,
{ ifStaffOrSelf }: ApolloContext
) => {
return ifStaffOrSelf(Number(parent.id), () => (CurrencyAccountRepo.getAccountByID(Number(parent.accountID))));
}
},
Query: {
/**
* Fetch all users by search text
* @argument searchText String to inclusively filter by related username, firstName, and lastName
* @returns array of Users
*/
users: async (
_parent: any,
args: { searchText: string },
{ isStaff }: ApolloContext) =>
isStaff(async () => {
const searchText = args.searchText ?? "";
return await UserRepo.getUsers(searchText);
}),
/**
* Fetch all users by search text with a limit of 100 users
* @argument searchText String to inclusively filter by related username, firstName, and lastName
* @returns array of Users
*/
usersLimit: async (
_parent: any,
args: { searchText: string },
{ isTrainer }: ApolloContext) =>
isTrainer(async () => {
const searchText = args.searchText ?? "";
return await UserRepo.getUsersLimit(searchText);
}),
/**
* Fetch a user by ID
* @argument id ID of the User
* @returns User
*/
user: async (
_parent: any,
args: { id: string },
{ ifAuthenticated }: ApolloContext) =>
ifAuthenticated(async () => {
return await UserRepo.getUserByID(Number(args.id));
}),
/**
* Fetch the user for the current Apollo session
* @returns User
*/
currentUser: async (
_parent: any,
_args: any,
{ user }: ApolloContext) => {
return user;
},
/**
* Check if the target user has been welcomed today
* @param userID the user to check
* @param roomID the room to check
* @returns true if welcomed
*/
isUserWelcomed: async (
_parent: any,
args: { userID: string, roomID: string },
{ ifStaffOrSelf }: ApolloContext) =>
ifStaffOrSelf(Number(args.userID), async () => {
const rawUser = await UserRepo.getUserByID(Number(args.userID))
const fullUser = new User(rawUser)
return await fullUser.wasWelcomedToday(Number(args.roomID));
}),
/**
* Fetch the number of total users
* @returns String JSON of {count: number}
*/
numUsers: async (
_parent: any,
_args: any,
{ isStaff }: ApolloContext) =>
isStaff(async () => {
return await UserRepo.getNumUsers();
}),
/**
* Fetch a user by search string for cardTagID or ritUsername
* @argument value string for inclusive search
* @returns User or undefined
*/
userByUsernameorUID: async (
_parent: any,
args: { value: string },
{ isStaff }: ApolloContext) =>
isStaff(async () => {
return await UserRepo.getUserByUsernameOrUID(args.value);
}),
},
Mutation: {
/**
* Create a User
* @argument firstName User's Preffered First Name
* @argument lastName User's Last Name / Family Name
* @argument ritUsername RIT ITS Username
* @returns User
* @throws GraphQLError if not MENTOR or STAFF or is on hold
*/
createUser: async (
_parent: any,
args: {
firstName: string;
lastName: string;
ritUsername: string;
},
{ isStaff }: ApolloContext) =>
isStaff(async () => {
return await UserRepo.createUser(args);
}),
/**
* Modify a User to complete other profile items
* @argument userID ID of User to modify
* @argument pronouns User's pronouns (ex: "They / Them")
* @argument college User's College shorthand (ex: "KGCOE")
* @argument expectedGraduation Expected Graduation Year and Semester (ex: "Summer 2028")
* @returns User
* @throws GraphQLError if not MENTOR or STAFF or is on hold. Allow if subject user is requesting user
*/
updateStudentProfile: async (
_: any,
args: {
userID: string;
pronouns: string;
college: string;
expectedGraduation: string;
},
{ ifStaffOrSelf }: ApolloContext) =>
ifStaffOrSelf(Number(args.userID), async () => {
return await UserRepo.updateStudentProfile({
userID: Number(args.userID),
pronouns: args.pronouns,
college: args.college,
expectedGraduation: args.expectedGraduation
});
}),
/**
* Modify a User's cardTagID
* @argument userID ID of User to modify
* @argument cardTagID New value
* @returns User
* @throws GraphQLError if not MENTOR or STAFF or is on hold
*/
setCardTagID: async (
_parent: any,
args: { userID: string, cardTagID: string },
{ isStaff }: ApolloContext
) =>
isStaff(async (executingUser: any) => {
const userSubject = await UserRepo.setCardTagID(Number(args.userID), args.cardTagID);
await createUnassocaitedAuditLog(
`{user} updated {user}'s Card Tag ID.`,
"admin",
{ id: executingUser.id, label: getUsersFullName(executingUser) },
{ id: userSubject.id, label: getUsersFullName(userSubject) }
);
}),
/**
* Modify a User's notes field
* @argument userID ID of User to modify
* @argument notes New value
* @returns User
* @throws GraphQLError if not MENTOR or STAFF or is on hold
*/
setNotes: async (
_parent: any,
args: { userID: string, notes: string },
{ isStaff }: ApolloContext
) =>
isStaff(async (_executingUser: any) => {
const userSubject = await UserRepo.setNotes(Number(args.userID), args.notes);
return userSubject;
}),
/**
* Set a User as Archived
* @argument userID ID of User to modify
* @returns User
* @throws GraphQLError if not STAFF or is on hold
*/
archiveUser: async (
_parent: any,
args: { userID: string },
{ isManager }: ApolloContext
) =>
isManager(
async (user: any) => {
const userSubject = await UserRepo.getUserByID(Number(args.userID));
await createUnassocaitedAuditLog(
`{user} archived {user}'s profile.`,
"admin",
{ id: user.id, label: getUsersFullName(user) },
{ id: Number(args.userID), label: getUsersFullName(userSubject) }
);
return await UserRepo.archiveUser(Number(args.userID), true);
}
),
setUserAdmin: async (
_parent: any,
args: { userID: number, admin: boolean },
{ isAdmin }: ApolloContext
) => isAdmin(async (user: CurrentUser) => {
const target = await UserRepo.getUserByID(Number(args.userID));
await createUnassocaitedAuditLog(
`{user} ${args.admin ? "granted" : "revoked"} ADMIN access ${args.admin ? "to" : "from"} {user}`,
"admin",
{ id: user.id, label: getUsersFullName(user) },
{ id: target.id, label: getUsersFullName(target) }
);
return await UserRepo.setUserAdmin(args.userID, args.admin);
}),
makeUserManager: async (
_parent: any,
args: { userID: number, makerspaceID: number },
{ isAdmin }: ApolloContext
) => isAdmin(async (user: CurrentUser) => {
const target = await UserRepo.getUserByID(args.userID);
const makerspace = await getMakerspaceByID(args.makerspaceID);
if (makerspace === undefined) {
throw new EntityNotFound(`Makerspace ${args.makerspaceID} Not Found`);
}
await createUnassocaitedAuditLog(
`{user} granted MANAGER access for {makerspace} to {user}`,
"admin",
{ id: user.id, label: getUsersFullName(user) },
{ id: args.makerspaceID, label: makerspace.name },
{ id: args.userID, label: getUsersFullName(target) }
);
return await UserRepo.makeUserManager(args.userID, args.makerspaceID);
}),
makeUserStaff: async (
_parent: any,
args: { userID: number, makerspaceID: number },
{ isManagerFor }: ApolloContext
) => isManagerFor(args.makerspaceID, async (user: CurrentUser) => {
const target = await UserRepo.getUserByID(args.userID);
const makerspace = await getMakerspaceByID(args.makerspaceID);
if (makerspace === undefined) {
throw new EntityNotFound(`Makerspace ${args.makerspaceID} Not Found`);
}
await createUnassocaitedAuditLog(
`{user} granted STAFF access for {makerspace} to {user}`,
"admin",
{ id: user.id, label: getUsersFullName(user) },
{ id: args.makerspaceID, label: makerspace.name },
{ id: args.userID, label: getUsersFullName(target) }
);
return await UserRepo.makeUserStaff(args.userID, args.makerspaceID);
}),
makeUserTrainer: async (
_parent: any,
args: { userID: number, equipmentID: number },
{ isManagerFor }: ApolloContext
) => {
const equipment = await EquipmentRepo.getEquipmentByID(args.equipmentID);
const room = await RoomRepo.getRoomByID(equipment.roomID);
return await isManagerFor(room?.makerspaceID ?? -1, async (user: CurrentUser) => {
const target = await UserRepo.getUserByID(args.userID);
await createUnassocaitedAuditLog(
`{user} granted TRAINER access for {equipment} to {user}`,
"admin",
{ id: user.id, label: getUsersFullName(user) },
{ id: args.equipmentID, label: equipment.name },
{ id: args.userID, label: getUsersFullName(target) }
);
return await UserRepo.makeUserTrainer(args.userID, args.equipmentID);
})
},
revokeUserManager: async (
_parent: any,
args: { userID: number, makerspaceID: number },
{ isAdmin }: ApolloContext
) => isAdmin(async (user: CurrentUser) => {
const target = await UserRepo.getUserByID(args.userID);
const makerspace = await getMakerspaceByID(args.makerspaceID);
if (makerspace === undefined) {
throw new EntityNotFound(`Makerspace ${args.makerspaceID} Not Found`);
}
await createUnassocaitedAuditLog(
`{user} revoked MANAGER access for {makerspace} from {user}`,
"admin",
{ id: user.id, label: getUsersFullName(user) },
{ id: args.makerspaceID, label: makerspace.name },
{ id: args.userID, label: getUsersFullName(target) }
);
return await UserRepo.revokeUserManager(args.userID, args.makerspaceID);
}),
revokeUserStaff: async (
_parent: any,
args: { userID: number, makerspaceID: number },
{ isManagerFor }: ApolloContext
) => isManagerFor(args.makerspaceID, async (user: CurrentUser) => {
const target = await UserRepo.getUserByID(args.userID);
const makerspace = await getMakerspaceByID(args.makerspaceID);
if (makerspace === undefined) {
throw new EntityNotFound(`Makerspace ${args.makerspaceID} Not Found`);
}
await createUnassocaitedAuditLog(
`{user} revoked STAFF access for {makerspace} from {user}`,
"admin",
{ id: user.id, label: getUsersFullName(user) },
{ id: args.makerspaceID, label: makerspace.name },
{ id: args.userID, label: getUsersFullName(target) }
);
return await UserRepo.revokeUserStaff(args.userID, args.makerspaceID);
}),
revokeUserTrainer: async (
_parent: any,
args: { userID: number, equipmentID: number },
{ isManagerFor }: ApolloContext
) => {
const equipment = await EquipmentRepo.getEquipmentByID(args.equipmentID);
const room = await RoomRepo.getRoomByID(equipment.roomID);
return await isManagerFor(room?.makerspaceID ?? -1, async (user: CurrentUser) => {
const target = await UserRepo.getUserByID(args.userID);
await createUnassocaitedAuditLog(
`{user} revoked TRAINER access for {equipment} from {user}`,
"admin",
{ id: user.id, label: getUsersFullName(user) },
{ id: args.equipmentID, label: equipment.name },
{ id: args.userID, label: getUsersFullName(target) }
);
return await UserRepo.revokeUserTrainer(args.userID, args.equipmentID);
})
},
forceArchiveUser: async (
_parent: any,
args: {
userID: number,
force: boolean | null
},
{ isManager }: ApolloContext
) => {
return await isManager(async () => {
return await UserRepo.setForceArchive(args.userID, args.force);
})
}
}
};
export default UsersResolvers;