Add import.video.torrent configuration
[oweals/peertube.git] / server / middlewares / validators / search.ts
1 import * as express from 'express'
2 import { areValidationErrors } from './utils'
3 import { logger } from '../../helpers/logger'
4 import { query } from 'express-validator/check'
5 import { isNumberArray, isStringArray, isNSFWQueryValid } from '../../helpers/custom-validators/search'
6 import { isBooleanValid, isDateValid, toArray } from '../../helpers/custom-validators/misc'
7
8 const searchValidator = [
9   query('search').optional().not().isEmpty().withMessage('Should have a valid search'),
10
11   query('startDate').optional().custom(isDateValid).withMessage('Should have a valid start date'),
12   query('endDate').optional().custom(isDateValid).withMessage('Should have a valid end date'),
13
14   query('durationMin').optional().isInt().withMessage('Should have a valid min duration'),
15   query('durationMax').optional().isInt().withMessage('Should have a valid max duration'),
16
17   (req: express.Request, res: express.Response, next: express.NextFunction) => {
18     logger.debug('Checking search query', { parameters: req.query })
19
20     if (areValidationErrors(req, res)) return
21
22     return next()
23   }
24 ]
25
26 const commonVideosFiltersValidator = [
27   query('categoryOneOf')
28     .optional()
29     .customSanitizer(toArray)
30     .custom(isNumberArray).withMessage('Should have a valid one of category array'),
31   query('licenceOneOf')
32     .optional()
33     .customSanitizer(toArray)
34     .custom(isNumberArray).withMessage('Should have a valid one of licence array'),
35   query('languageOneOf')
36     .optional()
37     .customSanitizer(toArray)
38     .custom(isStringArray).withMessage('Should have a valid one of language array'),
39   query('tagsOneOf')
40     .optional()
41     .customSanitizer(toArray)
42     .custom(isStringArray).withMessage('Should have a valid one of tags array'),
43   query('tagsAllOf')
44     .optional()
45     .customSanitizer(toArray)
46     .custom(isStringArray).withMessage('Should have a valid all of tags array'),
47   query('nsfw')
48     .optional()
49     .custom(isNSFWQueryValid).withMessage('Should have a valid NSFW attribute'),
50
51   (req: express.Request, res: express.Response, next: express.NextFunction) => {
52     logger.debug('Checking commons video filters query', { parameters: req.query })
53
54     if (areValidationErrors(req, res)) return
55
56     return next()
57   }
58 ]
59
60 // ---------------------------------------------------------------------------
61
62 export {
63   commonVideosFiltersValidator,
64   searchValidator
65 }