2021-08-27 07:32:44 -05:00
|
|
|
import express from 'express'
|
2019-07-25 09:23:44 -05:00
|
|
|
import { query } from 'express-validator'
|
2020-06-09 09:39:45 -05:00
|
|
|
import { isSearchTargetValid } from '@server/helpers/custom-validators/search'
|
2021-07-27 02:07:38 -05:00
|
|
|
import { isHostValid } from '@server/helpers/custom-validators/servers'
|
2021-07-29 03:27:24 -05:00
|
|
|
import { areUUIDsValid, isDateValid, isNotEmptyStringArray, toCompleteUUIDs } from '../../helpers/custom-validators/misc'
|
2021-06-03 10:33:44 -05:00
|
|
|
import { areValidationErrors } from './shared'
|
2018-07-19 09:17:54 -05:00
|
|
|
|
2018-08-23 10:58:39 -05:00
|
|
|
const videosSearchValidator = [
|
2022-08-17 07:27:04 -05:00
|
|
|
query('search')
|
|
|
|
.optional()
|
|
|
|
.not().isEmpty(),
|
2018-07-19 09:17:54 -05:00
|
|
|
|
2021-07-27 02:07:38 -05:00
|
|
|
query('host')
|
|
|
|
.optional()
|
2022-08-17 07:27:04 -05:00
|
|
|
.custom(isHostValid),
|
2021-07-27 02:07:38 -05:00
|
|
|
|
2021-05-31 12:47:14 -05:00
|
|
|
query('startDate')
|
|
|
|
.optional()
|
|
|
|
.custom(isDateValid).withMessage('Should have a start date that conforms to ISO 8601'),
|
|
|
|
query('endDate')
|
|
|
|
.optional()
|
|
|
|
.custom(isDateValid).withMessage('Should have a end date that conforms to ISO 8601'),
|
|
|
|
|
|
|
|
query('originallyPublishedStartDate')
|
|
|
|
.optional()
|
|
|
|
.custom(isDateValid).withMessage('Should have a published start date that conforms to ISO 8601'),
|
|
|
|
query('originallyPublishedEndDate')
|
|
|
|
.optional()
|
|
|
|
.custom(isDateValid).withMessage('Should have a published end date that conforms to ISO 8601'),
|
2019-02-12 04:47:23 -06:00
|
|
|
|
2021-07-28 09:40:21 -05:00
|
|
|
query('durationMin')
|
|
|
|
.optional()
|
2022-08-17 07:27:04 -05:00
|
|
|
.isInt(),
|
2021-07-28 09:40:21 -05:00
|
|
|
query('durationMax')
|
|
|
|
.optional()
|
2022-08-17 07:27:04 -05:00
|
|
|
.isInt(),
|
2021-07-28 09:40:21 -05:00
|
|
|
|
|
|
|
query('uuids')
|
|
|
|
.optional()
|
|
|
|
.toArray()
|
|
|
|
.customSanitizer(toCompleteUUIDs)
|
2022-08-17 07:27:04 -05:00
|
|
|
.custom(areUUIDsValid).withMessage('Should have valid array of uuid'),
|
2018-07-20 07:35:18 -05:00
|
|
|
|
2022-08-17 07:27:04 -05:00
|
|
|
query('searchTarget')
|
|
|
|
.optional()
|
|
|
|
.custom(isSearchTargetValid),
|
2020-06-09 09:39:45 -05:00
|
|
|
|
2018-07-20 07:35:18 -05:00
|
|
|
(req: express.Request, res: express.Response, next: express.NextFunction) => {
|
2018-08-23 10:58:39 -05:00
|
|
|
if (areValidationErrors(req, res)) return
|
|
|
|
|
|
|
|
return next()
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
2020-07-27 10:00:39 -05:00
|
|
|
const videoChannelsListSearchValidator = [
|
2021-07-28 09:40:21 -05:00
|
|
|
query('search')
|
|
|
|
.optional()
|
2022-08-17 07:27:04 -05:00
|
|
|
.not().isEmpty(),
|
2021-07-28 03:32:40 -05:00
|
|
|
|
|
|
|
query('host')
|
|
|
|
.optional()
|
2022-08-17 07:27:04 -05:00
|
|
|
.custom(isHostValid),
|
2021-07-28 03:32:40 -05:00
|
|
|
|
|
|
|
query('searchTarget')
|
|
|
|
.optional()
|
2022-08-17 07:27:04 -05:00
|
|
|
.custom(isSearchTargetValid),
|
2018-08-23 10:58:39 -05:00
|
|
|
|
2021-07-29 03:27:24 -05:00
|
|
|
query('handles')
|
2021-07-28 09:40:21 -05:00
|
|
|
.optional()
|
2021-07-29 03:27:24 -05:00
|
|
|
.toArray()
|
2022-08-17 07:27:04 -05:00
|
|
|
.custom(isNotEmptyStringArray).withMessage('Should have valid array of handles'),
|
2021-07-28 09:40:21 -05:00
|
|
|
|
2018-08-23 10:58:39 -05:00
|
|
|
(req: express.Request, res: express.Response, next: express.NextFunction) => {
|
2018-07-20 07:35:18 -05:00
|
|
|
if (areValidationErrors(req, res)) return
|
|
|
|
|
|
|
|
return next()
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
2021-06-17 09:02:38 -05:00
|
|
|
const videoPlaylistsListSearchValidator = [
|
2021-07-28 09:40:21 -05:00
|
|
|
query('search')
|
|
|
|
.optional()
|
2022-08-17 07:27:04 -05:00
|
|
|
.not().isEmpty(),
|
2021-07-28 03:32:40 -05:00
|
|
|
|
|
|
|
query('host')
|
|
|
|
.optional()
|
2022-08-17 07:27:04 -05:00
|
|
|
.custom(isHostValid),
|
2021-07-28 03:32:40 -05:00
|
|
|
|
|
|
|
query('searchTarget')
|
|
|
|
.optional()
|
2022-08-17 07:27:04 -05:00
|
|
|
.custom(isSearchTargetValid),
|
2020-07-15 04:17:03 -05:00
|
|
|
|
2021-07-28 09:40:21 -05:00
|
|
|
query('uuids')
|
|
|
|
.optional()
|
|
|
|
.toArray()
|
|
|
|
.customSanitizer(toCompleteUUIDs)
|
2022-08-17 07:27:04 -05:00
|
|
|
.custom(areUUIDsValid).withMessage('Should have valid array of uuid'),
|
2021-07-28 09:40:21 -05:00
|
|
|
|
2020-07-15 04:17:03 -05:00
|
|
|
(req: express.Request, res: express.Response, next: express.NextFunction) => {
|
|
|
|
if (areValidationErrors(req, res)) return
|
|
|
|
|
|
|
|
return next()
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
2018-07-19 09:17:54 -05:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
2020-07-15 04:17:03 -05:00
|
|
|
videosSearchValidator,
|
2020-07-27 10:00:39 -05:00
|
|
|
videoChannelsListSearchValidator,
|
2021-06-17 09:02:38 -05:00
|
|
|
videoPlaylistsListSearchValidator
|
2018-07-19 09:17:54 -05:00
|
|
|
}
|