mirror of https://github.com/Chocobozzz/PeerTube
45 lines
1.4 KiB
TypeScript
45 lines
1.4 KiB
TypeScript
|
import { checkErrors } from './utils'
|
||
|
import { logger } from '../../helpers'
|
||
|
import { SORTABLE_COLUMNS } from '../../initializers'
|
||
|
|
||
|
// Initialize constants here for better performances
|
||
|
const SORTABLE_USERS_COLUMNS = createSortableColumns(SORTABLE_COLUMNS.USERS)
|
||
|
const SORTABLE_VIDEO_ABUSES_COLUMNS = createSortableColumns(SORTABLE_COLUMNS.VIDEO_ABUSES)
|
||
|
const SORTABLE_VIDEOS_COLUMNS = createSortableColumns(SORTABLE_COLUMNS.VIDEOS)
|
||
|
|
||
|
function usersSortValidator (req, res, next) {
|
||
|
checkSort(req, res, next, SORTABLE_USERS_COLUMNS)
|
||
|
}
|
||
|
|
||
|
function videoAbusesSortValidator (req, res, next) {
|
||
|
checkSort(req, res, next, SORTABLE_VIDEO_ABUSES_COLUMNS)
|
||
|
}
|
||
|
|
||
|
function videosSortValidator (req, res, next) {
|
||
|
checkSort(req, res, next, SORTABLE_VIDEOS_COLUMNS)
|
||
|
}
|
||
|
|
||
|
// ---------------------------------------------------------------------------
|
||
|
|
||
|
export {
|
||
|
usersSortValidator,
|
||
|
videoAbusesSortValidator,
|
||
|
videosSortValidator
|
||
|
}
|
||
|
|
||
|
// ---------------------------------------------------------------------------
|
||
|
|
||
|
function checkSort (req, res, next, sortableColumns) {
|
||
|
req.checkQuery('sort', 'Should have correct sortable column').optional().isIn(sortableColumns)
|
||
|
|
||
|
logger.debug('Checking sort parameters', { parameters: req.query })
|
||
|
|
||
|
checkErrors(req, res, next)
|
||
|
}
|
||
|
|
||
|
function createSortableColumns (sortableColumns) {
|
||
|
const sortableColumnDesc = sortableColumns.map(sortableColumn => '-' + sortableColumn)
|
||
|
|
||
|
return sortableColumns.concat(sortableColumnDesc)
|
||
|
}
|