2021-08-27 14:32:44 +02:00
|
|
|
import express from 'express'
|
2021-10-19 15:02:43 +02:00
|
|
|
import { param, validationResult } from 'express-validator'
|
2021-06-28 17:30:59 +02:00
|
|
|
import { isIdOrUUIDValid, toCompleteUUID } from '@server/helpers/custom-validators/misc'
|
2021-06-03 17:33:44 +02:00
|
|
|
import { logger } from '../../../helpers/logger'
|
2016-01-31 11:23:52 +01:00
|
|
|
|
2017-11-27 14:44:51 +01: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() })
|
2021-06-01 01:36:53 +02:00
|
|
|
res.fail({
|
|
|
|
message: 'Incorrect request parameters: ' + Object.keys(errors.mapped()).join(', '),
|
|
|
|
instance: req.originalUrl,
|
|
|
|
data: {
|
|
|
|
'invalid-params': errors.mapped()
|
|
|
|
}
|
|
|
|
})
|
2017-11-27 14:44:51 +01:00
|
|
|
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2021-06-28 17:30:59 +02: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 11:23:23 +01:00
|
|
|
// ---------------------------------------------------------------------------
|
2016-01-31 11:23:52 +01:00
|
|
|
|
2017-05-15 22:22:03 +02:00
|
|
|
export {
|
2018-03-13 11:28:37 +01:00
|
|
|
areValidationErrors,
|
2021-06-28 17:30:59 +02:00
|
|
|
isValidVideoIdParam,
|
|
|
|
isValidPlaylistIdParam
|
2017-05-15 22:22:03 +02:00
|
|
|
}
|