2021-10-19 09:10:01 +02:00
|
|
|
import express from 'express'
|
|
|
|
import { query } from 'express-validator'
|
|
|
|
import { logger } from '@server/helpers/logger'
|
2019-04-11 14:26:41 +02:00
|
|
|
import { SORTABLE_COLUMNS } from '../../initializers/constants'
|
2021-10-19 09:10:01 +02:00
|
|
|
import { areValidationErrors } from './shared'
|
2016-05-17 21:03:00 +02:00
|
|
|
|
2021-10-19 09:10:01 +02:00
|
|
|
function checkSortFactory (columns: string[], tags: string[] = []) {
|
|
|
|
return checkSort(createSortableColumns(columns), tags)
|
|
|
|
}
|
|
|
|
|
|
|
|
function checkSort (sortableColumns: string[], tags: 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, tags })
|
|
|
|
|
|
|
|
if (areValidationErrors(req, res)) return
|
|
|
|
|
|
|
|
return next()
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
function createSortableColumns (sortableColumns: string[]) {
|
|
|
|
const sortableColumnDesc = sortableColumns.map(sortableColumn => '-' + sortableColumn)
|
|
|
|
|
|
|
|
return sortableColumns.concat(sortableColumnDesc)
|
|
|
|
}
|
2016-08-16 22:31:45 +02:00
|
|
|
|
2022-05-24 15:05:39 +02:00
|
|
|
const adminUsersSortValidator = checkSortFactory(SORTABLE_COLUMNS.ADMIN_USERS)
|
2021-10-19 09:10:01 +02:00
|
|
|
const accountsSortValidator = checkSortFactory(SORTABLE_COLUMNS.ACCOUNTS)
|
|
|
|
const jobsSortValidator = checkSortFactory(SORTABLE_COLUMNS.JOBS, [ 'jobs' ])
|
|
|
|
const abusesSortValidator = checkSortFactory(SORTABLE_COLUMNS.ABUSES)
|
|
|
|
const videosSortValidator = checkSortFactory(SORTABLE_COLUMNS.VIDEOS)
|
|
|
|
const videoImportsSortValidator = checkSortFactory(SORTABLE_COLUMNS.VIDEO_IMPORTS)
|
|
|
|
const videosSearchSortValidator = checkSortFactory(SORTABLE_COLUMNS.VIDEOS_SEARCH)
|
|
|
|
const videoChannelsSearchSortValidator = checkSortFactory(SORTABLE_COLUMNS.VIDEO_CHANNELS_SEARCH)
|
|
|
|
const videoPlaylistsSearchSortValidator = checkSortFactory(SORTABLE_COLUMNS.VIDEO_PLAYLISTS_SEARCH)
|
|
|
|
const videoCommentsValidator = checkSortFactory(SORTABLE_COLUMNS.VIDEO_COMMENTS)
|
|
|
|
const videoCommentThreadsSortValidator = checkSortFactory(SORTABLE_COLUMNS.VIDEO_COMMENT_THREADS)
|
|
|
|
const videoRatesSortValidator = checkSortFactory(SORTABLE_COLUMNS.VIDEO_RATES)
|
|
|
|
const blacklistSortValidator = checkSortFactory(SORTABLE_COLUMNS.BLACKLISTS)
|
|
|
|
const videoChannelsSortValidator = checkSortFactory(SORTABLE_COLUMNS.VIDEO_CHANNELS)
|
|
|
|
const instanceFollowersSortValidator = checkSortFactory(SORTABLE_COLUMNS.INSTANCE_FOLLOWERS)
|
|
|
|
const instanceFollowingSortValidator = checkSortFactory(SORTABLE_COLUMNS.INSTANCE_FOLLOWING)
|
|
|
|
const userSubscriptionsSortValidator = checkSortFactory(SORTABLE_COLUMNS.USER_SUBSCRIPTIONS)
|
|
|
|
const accountsBlocklistSortValidator = checkSortFactory(SORTABLE_COLUMNS.ACCOUNTS_BLOCKLIST)
|
|
|
|
const serversBlocklistSortValidator = checkSortFactory(SORTABLE_COLUMNS.SERVERS_BLOCKLIST)
|
|
|
|
const userNotificationsSortValidator = checkSortFactory(SORTABLE_COLUMNS.USER_NOTIFICATIONS)
|
|
|
|
const videoPlaylistsSortValidator = checkSortFactory(SORTABLE_COLUMNS.VIDEO_PLAYLISTS)
|
|
|
|
const pluginsSortValidator = checkSortFactory(SORTABLE_COLUMNS.PLUGINS)
|
|
|
|
const availablePluginsSortValidator = checkSortFactory(SORTABLE_COLUMNS.AVAILABLE_PLUGINS)
|
|
|
|
const videoRedundanciesSortValidator = checkSortFactory(SORTABLE_COLUMNS.VIDEO_REDUNDANCIES)
|
2017-01-04 20:59:23 +01:00
|
|
|
|
2021-10-19 09:44:43 +02:00
|
|
|
const accountsFollowersSortValidator = checkSortFactory(SORTABLE_COLUMNS.ACCOUNT_FOLLOWERS)
|
|
|
|
const videoChannelsFollowersSortValidator = checkSortFactory(SORTABLE_COLUMNS.CHANNEL_FOLLOWERS)
|
|
|
|
|
2017-01-04 20:59:23 +01:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2017-05-15 22:22:03 +02:00
|
|
|
export {
|
2022-05-24 15:05:39 +02:00
|
|
|
adminUsersSortValidator,
|
2020-07-01 16:05:30 +02:00
|
|
|
abusesSortValidator,
|
2017-10-24 19:41:09 +02:00
|
|
|
videoChannelsSortValidator,
|
2018-08-02 17:48:50 +02:00
|
|
|
videoImportsSortValidator,
|
2020-11-13 16:38:23 +01:00
|
|
|
videoCommentsValidator,
|
2018-07-19 16:17:54 +02:00
|
|
|
videosSearchSortValidator,
|
2017-09-22 09:13:43 +02:00
|
|
|
videosSortValidator,
|
2017-11-13 17:39:41 +01:00
|
|
|
blacklistSortValidator,
|
2018-01-03 16:38:50 +01:00
|
|
|
accountsSortValidator,
|
2021-10-19 09:10:01 +02:00
|
|
|
instanceFollowersSortValidator,
|
|
|
|
instanceFollowingSortValidator,
|
2017-12-22 10:50:07 +01:00
|
|
|
jobsSortValidator,
|
2018-08-16 15:25:20 +02:00
|
|
|
videoCommentThreadsSortValidator,
|
2019-04-09 11:02:02 +02:00
|
|
|
videoRatesSortValidator,
|
2018-08-23 17:58:39 +02:00
|
|
|
userSubscriptionsSortValidator,
|
2019-07-16 11:33:22 +02:00
|
|
|
availablePluginsSortValidator,
|
2018-10-12 15:26:04 +02:00
|
|
|
videoChannelsSearchSortValidator,
|
|
|
|
accountsBlocklistSortValidator,
|
2018-12-26 10:36:24 +01:00
|
|
|
serversBlocklistSortValidator,
|
2019-02-26 10:55:40 +01:00
|
|
|
userNotificationsSortValidator,
|
2019-07-10 16:59:53 +02:00
|
|
|
videoPlaylistsSortValidator,
|
2020-01-10 10:11:28 +01:00
|
|
|
videoRedundanciesSortValidator,
|
2021-06-17 16:02:38 +02:00
|
|
|
videoPlaylistsSearchSortValidator,
|
2021-10-19 09:44:43 +02:00
|
|
|
accountsFollowersSortValidator,
|
|
|
|
videoChannelsFollowersSortValidator,
|
2019-07-10 16:59:53 +02:00
|
|
|
pluginsSortValidator
|
2017-05-15 22:22:03 +02:00
|
|
|
}
|