2021-08-27 07:32:44 -05:00
|
|
|
import express from 'express'
|
2021-10-19 08:02:43 -05:00
|
|
|
import { param, validationResult } from 'express-validator'
|
2021-06-28 10:30:59 -05:00
|
|
|
import { isIdOrUUIDValid, toCompleteUUID } from '@server/helpers/custom-validators/misc'
|
2021-06-03 10:33:44 -05:00
|
|
|
import { logger } from '../../../helpers/logger'
|
2016-01-31 04:23:52 -06:00
|
|
|
|
2017-11-27 07:44:51 -06:00
|
|
|
function areValidationErrors (req: express.Request, res: express.Response) {
|
|
|
|
const errors = validationResult(req)
|
|
|
|
|
|
|
|
if (!errors.isEmpty()) {
|
|
|
|
logger.warn('Incorrect request parameters', { path: req.originalUrl, err: errors.mapped() })
|
2022-02-11 03:51:33 -06:00
|
|
|
|
2021-05-31 18:36:53 -05:00
|
|
|
res.fail({
|
|
|
|
message: 'Incorrect request parameters: ' + Object.keys(errors.mapped()).join(', '),
|
|
|
|
instance: req.originalUrl,
|
|
|
|
data: {
|
|
|
|
'invalid-params': errors.mapped()
|
|
|
|
}
|
|
|
|
})
|
2017-11-27 07:44:51 -06:00
|
|
|
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2021-06-28 10:30:59 -05:00
|
|
|
function isValidVideoIdParam (paramName: string) {
|
|
|
|
return param(paramName)
|
|
|
|
.customSanitizer(toCompleteUUID)
|
|
|
|
.custom(isIdOrUUIDValid).withMessage('Should have a valid video id')
|
|
|
|
}
|
|
|
|
|
|
|
|
function isValidPlaylistIdParam (paramName: string) {
|
|
|
|
return param(paramName)
|
|
|
|
.customSanitizer(toCompleteUUID)
|
|
|
|
.custom(isIdOrUUIDValid).withMessage('Should have a valid playlist id')
|
|
|
|
}
|
|
|
|
|
2016-02-07 04:23:23 -06:00
|
|
|
// ---------------------------------------------------------------------------
|
2016-01-31 04:23:52 -06:00
|
|
|
|
2017-05-15 15:22:03 -05:00
|
|
|
export {
|
2018-03-13 05:28:37 -05:00
|
|
|
areValidationErrors,
|
2021-06-28 10:30:59 -05:00
|
|
|
isValidVideoIdParam,
|
|
|
|
isValidPlaylistIdParam
|
2017-05-15 15:22:03 -05:00
|
|
|
}
|