2017-06-10 22:15:25 +02:00
|
|
|
import * as express from 'express'
|
2021-06-28 17:30:59 +02:00
|
|
|
import { param, query, validationResult } from 'express-validator'
|
|
|
|
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-03-09 09:22:05 +01:00
|
|
|
function checkSort (sortableColumns: string[], tags: string[] = []) {
|
2018-03-13 11:28:37 +01:00
|
|
|
return [
|
|
|
|
query('sort').optional().isIn(sortableColumns).withMessage('Should have correct sortable column'),
|
|
|
|
|
|
|
|
(req: express.Request, res: express.Response, next: express.NextFunction) => {
|
2021-03-09 09:22:05 +01:00
|
|
|
logger.debug('Checking sort parameters', { parameters: req.query, tags })
|
2018-03-13 11:28:37 +01:00
|
|
|
|
|
|
|
if (areValidationErrors(req, res)) return
|
|
|
|
|
|
|
|
return next()
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
function createSortableColumns (sortableColumns: string[]) {
|
|
|
|
const sortableColumnDesc = sortableColumns.map(sortableColumn => '-' + sortableColumn)
|
|
|
|
|
|
|
|
return sortableColumns.concat(sortableColumnDesc)
|
|
|
|
}
|
|
|
|
|
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,
|
|
|
|
checkSort,
|
2021-06-28 17:30:59 +02:00
|
|
|
createSortableColumns,
|
|
|
|
isValidVideoIdParam,
|
|
|
|
isValidPlaylistIdParam
|
2017-05-15 22:22:03 +02:00
|
|
|
}
|