-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathcheckIdParamMiddleware.js
More file actions
289 lines (251 loc) · 8.75 KB
/
Copy pathcheckIdParamMiddleware.js
File metadata and controls
289 lines (251 loc) · 8.75 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
import httpCodes from 'http-codes';
import { auditLogger } from '../logger';
const errorMessage = 'Received malformed request params';
function canBeInt(str) {
return Number.isInteger(Number(str)) && Number(str) > 0;
}
/**
* Check activityReportId req param
*
* This middleware validates that the Activity Report id supplied
* by the activityReportId query param is an integer before we proceed with the request
* @param {*} req - request
* @param {*} res - response
* @param {*} next - next middleware
*/
export function checkActivityReportIdParam(req, res, next) {
if (req.params && req.params.activityReportId && canBeInt(req.params.activityReportId)) {
return next();
}
const msg = `${errorMessage}: activityReportId ${String(req?.params?.activityReportId)}`;
auditLogger.error(msg);
return res.status(httpCodes.BAD_REQUEST).send(msg);
}
/**
* Check collabReportId req param
*
* This middleware validates that the Collaboration Report id supplied
* by the collabReportId query param is an integer before we proceed with the request
* @param {*} req - request
* @param {*} res - response
* @param {*} next - next middleware
*/
export function checkCollabReportIdParam(req, res, next) {
if (req.params && req.params.collabReportId && canBeInt(req.params.collabReportId)) {
return next();
}
const msg = `${errorMessage}: collabReportId ${String(req?.params?.collabReportId)}`;
auditLogger.error(msg);
return res.status(httpCodes.BAD_REQUEST).send(msg);
}
/**
* Check fileId req param
*
* This middleware validates that the File id supplied
* by the fileId query param is an integer before we proceed with the request
* @param {*} req - request
* @param {*} res - response
* @param {*} next - next middleware
*/
export function checkFileIdParam(req, res, next) {
if (req.params && req.params.fileId && canBeInt(req.params.fileId)) {
return next();
}
const msg = `${errorMessage}: fileId ${String(req?.params?.fileId)}`;
auditLogger.error(msg);
return res.status(httpCodes.BAD_REQUEST).send(msg);
}
/**
* Check reportId req param
*
* This middleware validates that the Activity Report id supplied
* by the reportId query param is an integer before we proceed with the request
* @param {*} req - request
* @param {*} res - response
* @param {*} next - next middleware
*/
export function checkReportIdParam(req, res, next) {
if (req.params && req.params.reportId && canBeInt(req.params.reportId)) {
return next();
}
const msg = `${errorMessage}: reportId ${String(req?.params?.reportId)}`;
auditLogger.error(msg);
return res.status(httpCodes.BAD_REQUEST).send(msg);
}
/**
* Check objectiveId req param
*
* This middleware validates that the Objective id supplied
* by the objectiveId query param is an integer before we proceed with the request
* @param {*} req - request
* @param {*} res - response
* @param {*} next - next middleware
*/
export function checkObjectiveIdParam(req, res, next) {
if (req.params && req.params.objectiveId && canBeInt(req.params.objectiveId)) {
return next();
}
const msg = `${errorMessage}: objectiveId ${String(req?.params?.objectiveId)}`;
auditLogger.error(msg);
return res.status(httpCodes.BAD_REQUEST).send(msg);
}
/**
* Check objectiveTemplateId req param
*
* This middleware validates that the Objective Template id supplied
* by the objectiveTemplateId query param is an integer before we proceed with the request
* @param {*} req - request
* @param {*} res - response
* @param {*} next - next middleware
*/
export function checkObjectiveTemplateIdParam(req, res, next) {
if (req.params && req.params.objectiveTemplateId && canBeInt(req.params.objectiveTemplateId)) {
return next();
}
const msg = `${errorMessage}: objectiveTemplateId ${String(req?.params?.objectiveTemplateId)}`;
auditLogger.error(msg);
return res.status(httpCodes.BAD_REQUEST).send(msg);
}
/**
* Check groupId req param
*
* This middleware validates that the site alert id supplied
* by the alertId query param is an integer before we proceed with the request
* @param {*} req - request
* @param {*} res - response
* @param {*} next - next middleware
*/
export function checkGroupIdParam(req, res, next) {
if (
req.params &&
req.params.groupId &&
(req.params.groupId === 'new' || canBeInt(req.params.groupId))
) {
return next();
}
const msg = `${errorMessage}: groupId ${String(req?.params?.groupId)}`;
auditLogger.error(msg);
return res.status(httpCodes.BAD_REQUEST).send(msg);
}
/**
* Check groupId req param
*
* This middleware validates that the site alert id supplied
* by the alertId query param is an integer before we proceed with the request
* @param {*} req - request
* @param {*} res - response
* @param {*} next - next middleware
*/
export function checkGrantIdParam(req, res, next) {
if (req.params && req.params.grantId && canBeInt(req.params.grantId)) {
return next();
}
const msg = `${errorMessage}: grantId ${String(req?.params?.grantId)}`;
auditLogger.error(msg);
return res.status(httpCodes.BAD_REQUEST).send(msg);
}
/**
* Check alertId req param
*
* This middleware validates that the site alert id supplied
* by the alertId query param is an integer before we proceed with the request
* @param {*} req - request
* @param {*} res - response
* @param {*} next - next middleware
*/
export function checkAlertIdParam(req, res, next) {
if (req.params && req.params.alertId && canBeInt(req.params.alertId)) {
return next();
}
const msg = `${errorMessage}: alertId ${String(req?.params?.alertId)}`;
auditLogger.error(msg);
return res.status(httpCodes.BAD_REQUEST).send(msg);
}
/**
* Check goalTemplateId req param
*
* This middleware validates that the site alert id supplied
* by the goalTemplateId query param is an integer before we proceed with the request
* @param {*} req - request
* @param {*} res - response
* @param {*} next - next middleware
*/
export function checkGoalTemplateIdParam(req, res, next) {
if (req.params && req.params.goalTemplateId && canBeInt(req.params.goalTemplateId)) {
return next();
}
const msg = `${errorMessage}: goalTemplateId ${String(req?.params?.goalTemplateId)}`;
auditLogger.error(msg);
return res.status(httpCodes.BAD_REQUEST).send(msg);
}
export function checkIdParam(req, res, next, paramName) {
if (req.params && req.params[paramName] && canBeInt(req.params[paramName])) {
return next();
}
const msg = `${errorMessage}: ${paramName} ${req.params ? req.params[paramName] || 'undefined' : 'undefined'}`;
auditLogger.error(msg);
return res.status(httpCodes.BAD_REQUEST).send(msg);
}
export function checkCommunicationLogIdParam(req, res, next) {
return checkIdParam(req, res, next, 'communicationLogId');
}
export function checkSessionAttachmentIdParam(req, res, next) {
return checkIdParam(req, res, next, 'sessionAttachmentId');
}
export function checkRegionIdParam(req, res, next) {
return checkIdParam(req, res, next, 'regionId');
}
export function checkRecipientIdParam(req, res, next) {
return checkIdParam(req, res, next, 'recipientId');
}
export function checkUserIdParam(req, res, next) {
return checkIdParam(req, res, next, 'userId');
}
export function checkGoalGroupIdParam(req, res, next) {
return checkIdParam(req, res, next, 'goalGroupId');
}
export function checkIdIdParam(req, res, next) {
return checkIdParam(req, res, next, 'id');
}
export function checkGrantNumberParam(req, res, next) {
if (
req.params &&
req.params.grantNumber &&
typeof req.params.grantNumber === 'string' &&
req.params.grantNumber.trim() !== ''
) {
return next();
}
const msg = `${errorMessage}: grantNumber ${String(req?.params?.grantNumber)}`;
auditLogger.error(msg);
return res.status(httpCodes.BAD_REQUEST).send(msg);
}
/**
* Check grantId query param (optional)
*
* This middleware validates the grantId supplied via req.query.grantId.
* If absent or empty, sets req.query.parsedGrantId = null and proceeds.
* If present but invalid, returns 400.
* If valid, sets req.query.parsedGrantId to the parsed integer and proceeds.
* @param {*} req - request
* @param {*} res - response
* @param {*} next - next middleware
*/
export function checkGrantIdQueryParam(req, res, next) {
const { grantId } = req.query || {};
if (grantId === undefined || grantId === null || grantId === '') {
req.query.parsedGrantId = null;
return next();
}
const parsed = Number(grantId);
if (!Number.isInteger(parsed) || parsed < 1) {
const msg = `${errorMessage}: grantId ${String(grantId)}`;
auditLogger.error(msg);
return res.status(httpCodes.BAD_REQUEST).send(msg);
}
req.query.parsedGrantId = parsed;
return next();
}
export function checkNotificationIdParam(req, res, next) {
return checkIdParam(req, res, next, 'notificationId');
}