2017-06-10 16:15:25 -04:00
|
|
|
import * as express from 'express'
|
2018-03-13 06:28:37 -04:00
|
|
|
import { query, validationResult } from 'express-validator/check'
|
2017-12-28 05:16:08 -05:00
|
|
|
import { logger } from '../../helpers/logger'
|
2016-01-31 05:23:52 -05:00
|
|
|
|
2017-11-27 08:44:51 -05: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() })
|
|
|
|
res.status(400).json({ errors: errors.mapped() })
|
|
|
|
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2018-03-13 06:28:37 -04:00
|
|
|
function checkSort (sortableColumns: string[]) {
|
|
|
|
return [
|
|
|
|
query('sort').optional().isIn(sortableColumns).withMessage('Should have correct sortable column'),
|
|
|
|
|
|
|
|
(req: express.Request, res: express.Response, next: express.NextFunction) => {
|
|
|
|
logger.debug('Checking sort parameters', { parameters: req.query })
|
|
|
|
|
|
|
|
if (areValidationErrors(req, res)) return
|
|
|
|
|
|
|
|
return next()
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
function createSortableColumns (sortableColumns: string[]) {
|
|
|
|
const sortableColumnDesc = sortableColumns.map(sortableColumn => '-' + sortableColumn)
|
|
|
|
|
|
|
|
return sortableColumns.concat(sortableColumnDesc)
|
|
|
|
}
|
|
|
|
|
2016-02-07 05:23:23 -05:00
|
|
|
// ---------------------------------------------------------------------------
|
2016-01-31 05:23:52 -05:00
|
|
|
|
2017-05-15 16:22:03 -04:00
|
|
|
export {
|
2018-03-13 06:28:37 -04:00
|
|
|
areValidationErrors,
|
|
|
|
checkSort,
|
|
|
|
createSortableColumns
|
2017-05-15 16:22:03 -04:00
|
|
|
}
|