2021-10-19 09:10:01 +02:00
|
|
|
import express from 'express'
|
|
|
|
import { query } from 'express-validator'
|
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
|
|
|
|
2023-01-19 09:27:16 +01:00
|
|
|
export const adminUsersSortValidator = checkSortFactory(SORTABLE_COLUMNS.ADMIN_USERS)
|
|
|
|
export const accountsSortValidator = checkSortFactory(SORTABLE_COLUMNS.ACCOUNTS)
|
|
|
|
export const jobsSortValidator = checkSortFactory(SORTABLE_COLUMNS.JOBS, [ 'jobs' ])
|
|
|
|
export const abusesSortValidator = checkSortFactory(SORTABLE_COLUMNS.ABUSES)
|
|
|
|
export const videosSortValidator = checkSortFactory(SORTABLE_COLUMNS.VIDEOS)
|
|
|
|
export const videoImportsSortValidator = checkSortFactory(SORTABLE_COLUMNS.VIDEO_IMPORTS)
|
|
|
|
export const videosSearchSortValidator = checkSortFactory(SORTABLE_COLUMNS.VIDEOS_SEARCH)
|
|
|
|
export const videoChannelsSearchSortValidator = checkSortFactory(SORTABLE_COLUMNS.VIDEO_CHANNELS_SEARCH)
|
|
|
|
export const videoPlaylistsSearchSortValidator = checkSortFactory(SORTABLE_COLUMNS.VIDEO_PLAYLISTS_SEARCH)
|
|
|
|
export const videoCommentsValidator = checkSortFactory(SORTABLE_COLUMNS.VIDEO_COMMENTS)
|
|
|
|
export const videoCommentThreadsSortValidator = checkSortFactory(SORTABLE_COLUMNS.VIDEO_COMMENT_THREADS)
|
|
|
|
export const videoRatesSortValidator = checkSortFactory(SORTABLE_COLUMNS.VIDEO_RATES)
|
|
|
|
export const blacklistSortValidator = checkSortFactory(SORTABLE_COLUMNS.BLACKLISTS)
|
|
|
|
export const videoChannelsSortValidator = checkSortFactory(SORTABLE_COLUMNS.VIDEO_CHANNELS)
|
|
|
|
export const instanceFollowersSortValidator = checkSortFactory(SORTABLE_COLUMNS.INSTANCE_FOLLOWERS)
|
|
|
|
export const instanceFollowingSortValidator = checkSortFactory(SORTABLE_COLUMNS.INSTANCE_FOLLOWING)
|
|
|
|
export const userSubscriptionsSortValidator = checkSortFactory(SORTABLE_COLUMNS.USER_SUBSCRIPTIONS)
|
|
|
|
export const accountsBlocklistSortValidator = checkSortFactory(SORTABLE_COLUMNS.ACCOUNTS_BLOCKLIST)
|
|
|
|
export const serversBlocklistSortValidator = checkSortFactory(SORTABLE_COLUMNS.SERVERS_BLOCKLIST)
|
|
|
|
export const userNotificationsSortValidator = checkSortFactory(SORTABLE_COLUMNS.USER_NOTIFICATIONS)
|
|
|
|
export const videoPlaylistsSortValidator = checkSortFactory(SORTABLE_COLUMNS.VIDEO_PLAYLISTS)
|
|
|
|
export const pluginsSortValidator = checkSortFactory(SORTABLE_COLUMNS.PLUGINS)
|
|
|
|
export const availablePluginsSortValidator = checkSortFactory(SORTABLE_COLUMNS.AVAILABLE_PLUGINS)
|
|
|
|
export const videoRedundanciesSortValidator = checkSortFactory(SORTABLE_COLUMNS.VIDEO_REDUNDANCIES)
|
|
|
|
export const videoChannelSyncsSortValidator = checkSortFactory(SORTABLE_COLUMNS.VIDEO_CHANNEL_SYNCS)
|
|
|
|
|
|
|
|
export const accountsFollowersSortValidator = checkSortFactory(SORTABLE_COLUMNS.ACCOUNT_FOLLOWERS)
|
|
|
|
export const videoChannelsFollowersSortValidator = checkSortFactory(SORTABLE_COLUMNS.CHANNEL_FOLLOWERS)
|
|
|
|
|
|
|
|
export const userRegistrationsSortValidator = checkSortFactory(SORTABLE_COLUMNS.USER_REGISTRATIONS)
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
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 [
|
2022-08-17 14:27:04 +02:00
|
|
|
query('sort')
|
|
|
|
.optional()
|
|
|
|
.isIn(sortableColumns),
|
2021-10-19 09:10:01 +02:00
|
|
|
|
|
|
|
(req: express.Request, res: express.Response, next: express.NextFunction) => {
|
2022-08-17 14:58:40 +02:00
|
|
|
if (areValidationErrors(req, res, { tags })) return
|
2021-10-19 09:10:01 +02:00
|
|
|
|
|
|
|
return next()
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
function createSortableColumns (sortableColumns: string[]) {
|
|
|
|
const sortableColumnDesc = sortableColumns.map(sortableColumn => '-' + sortableColumn)
|
|
|
|
|
|
|
|
return sortableColumns.concat(sortableColumnDesc)
|
|
|
|
}
|