2021-10-19 03:10:01 -04:00
|
|
|
import express from 'express'
|
|
|
|
import { query } from 'express-validator'
|
|
|
|
import { logger } from '@server/helpers/logger'
|
2019-04-11 08:26:41 -04:00
|
|
|
import { SORTABLE_COLUMNS } from '../../initializers/constants'
|
2021-10-19 03:10:01 -04:00
|
|
|
import { areValidationErrors } from './shared'
|
2016-05-17 15:03:00 -04:00
|
|
|
|
2021-10-19 03:10:01 -04: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 16:31:45 -04:00
|
|
|
|
2021-10-19 03:10:01 -04:00
|
|
|
const usersSortValidator = checkSortFactory(SORTABLE_COLUMNS.USERS)
|
|
|
|
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 14:59:23 -05:00
|
|
|
|
2021-10-19 03:44:43 -04:00
|
|
|
const accountsFollowersSortValidator = checkSortFactory(SORTABLE_COLUMNS.ACCOUNT_FOLLOWERS)
|
|
|
|
const videoChannelsFollowersSortValidator = checkSortFactory(SORTABLE_COLUMNS.CHANNEL_FOLLOWERS)
|
|
|
|
|
2017-01-04 14:59:23 -05:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2017-05-15 16:22:03 -04:00
|
|
|
export {
|
|
|
|
usersSortValidator,
|
2020-07-01 10:05:30 -04:00
|
|
|
abusesSortValidator,
|
2017-10-24 13:41:09 -04:00
|
|
|
videoChannelsSortValidator,
|
2018-08-02 11:48:50 -04:00
|
|
|
videoImportsSortValidator,
|
2020-11-13 10:38:23 -05:00
|
|
|
videoCommentsValidator,
|
2018-07-19 10:17:54 -04:00
|
|
|
videosSearchSortValidator,
|
2017-09-22 03:13:43 -04:00
|
|
|
videosSortValidator,
|
2017-11-13 11:39:41 -05:00
|
|
|
blacklistSortValidator,
|
2018-01-03 10:38:50 -05:00
|
|
|
accountsSortValidator,
|
2021-10-19 03:10:01 -04:00
|
|
|
instanceFollowersSortValidator,
|
|
|
|
instanceFollowingSortValidator,
|
2017-12-22 04:50:07 -05:00
|
|
|
jobsSortValidator,
|
2018-08-16 09:25:20 -04:00
|
|
|
videoCommentThreadsSortValidator,
|
2019-04-09 05:02:02 -04:00
|
|
|
videoRatesSortValidator,
|
2018-08-23 11:58:39 -04:00
|
|
|
userSubscriptionsSortValidator,
|
2019-07-16 05:33:22 -04:00
|
|
|
availablePluginsSortValidator,
|
2018-10-12 09:26:04 -04:00
|
|
|
videoChannelsSearchSortValidator,
|
|
|
|
accountsBlocklistSortValidator,
|
2018-12-26 04:36:24 -05:00
|
|
|
serversBlocklistSortValidator,
|
2019-02-26 04:55:40 -05:00
|
|
|
userNotificationsSortValidator,
|
2019-07-10 10:59:53 -04:00
|
|
|
videoPlaylistsSortValidator,
|
2020-01-10 04:11:28 -05:00
|
|
|
videoRedundanciesSortValidator,
|
2021-06-17 10:02:38 -04:00
|
|
|
videoPlaylistsSearchSortValidator,
|
2021-10-19 03:44:43 -04:00
|
|
|
accountsFollowersSortValidator,
|
|
|
|
videoChannelsFollowersSortValidator,
|
2019-07-10 10:59:53 -04:00
|
|
|
pluginsSortValidator
|
2017-05-15 16:22:03 -04:00
|
|
|
}
|