2016-05-17 14:03:00 -05:00
|
|
|
'use strict'
|
|
|
|
|
|
|
|
const checkErrors = require('./utils').checkErrors
|
|
|
|
const constants = require('../../initializers/constants')
|
|
|
|
const logger = require('../../helpers/logger')
|
|
|
|
|
2016-07-01 09:16:40 -05:00
|
|
|
const validatorsSort = {
|
2016-10-02 05:19:02 -05:00
|
|
|
usersSort,
|
2017-01-04 13:59:23 -06:00
|
|
|
videoAbusesSort,
|
2016-10-02 05:19:02 -05:00
|
|
|
videosSort
|
2016-05-17 14:03:00 -05:00
|
|
|
}
|
|
|
|
|
2016-08-16 15:31:45 -05:00
|
|
|
function usersSort (req, res, next) {
|
|
|
|
const sortableColumns = constants.SORTABLE_COLUMNS.USERS
|
|
|
|
|
2017-01-04 13:59:23 -06:00
|
|
|
checkSort(req, res, next, sortableColumns)
|
|
|
|
}
|
2016-08-16 15:31:45 -05:00
|
|
|
|
2017-01-04 13:59:23 -06:00
|
|
|
function videoAbusesSort (req, res, next) {
|
|
|
|
const sortableColumns = constants.SORTABLE_COLUMNS.VIDEO_ABUSES
|
2016-08-16 15:31:45 -05:00
|
|
|
|
2017-01-04 13:59:23 -06:00
|
|
|
checkSort(req, res, next, sortableColumns)
|
2016-08-16 15:31:45 -05:00
|
|
|
}
|
|
|
|
|
2016-05-17 14:03:00 -05:00
|
|
|
function videosSort (req, res, next) {
|
|
|
|
const sortableColumns = constants.SORTABLE_COLUMNS.VIDEOS
|
|
|
|
|
2017-01-04 13:59:23 -06:00
|
|
|
checkSort(req, res, next, sortableColumns)
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
module.exports = validatorsSort
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
function checkSort (req, res, next, sortableColumns) {
|
2016-05-17 14:03:00 -05:00
|
|
|
req.checkQuery('sort', 'Should have correct sortable column').optional().isIn(sortableColumns)
|
|
|
|
|
|
|
|
logger.debug('Checking sort parameters', { parameters: req.query })
|
|
|
|
|
|
|
|
checkErrors(req, res, next)
|
|
|
|
}
|