]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/middlewares/validators/search.ts
Add ability to search by uuids/actor names
[github/Chocobozzz/PeerTube.git] / server / middlewares / validators / search.ts
CommitLineData
57c36b27 1import * as express from 'express'
c8861d5d 2import { query } from 'express-validator'
3b0bd70a 3import { isSearchTargetValid } from '@server/helpers/custom-validators/search'
29837f88 4import { isHostValid } from '@server/helpers/custom-validators/servers'
fbd67e7f 5import { areUUIDsValid, isDateValid, toCompleteUUIDs } from '../../helpers/custom-validators/misc'
10363c74
C
6import { logger } from '../../helpers/logger'
7import { areValidationErrors } from './shared'
57c36b27 8
f37dc0dd 9const videosSearchValidator = [
d4112450 10 query('search').optional().not().isEmpty().withMessage('Should have a valid search'),
57c36b27 11
29837f88
C
12 query('host')
13 .optional()
14 .custom(isHostValid).withMessage('Should have a valid host'),
15
70330f63
RK
16 query('startDate')
17 .optional()
18 .custom(isDateValid).withMessage('Should have a start date that conforms to ISO 8601'),
19 query('endDate')
20 .optional()
21 .custom(isDateValid).withMessage('Should have a end date that conforms to ISO 8601'),
22
23 query('originallyPublishedStartDate')
24 .optional()
25 .custom(isDateValid).withMessage('Should have a published start date that conforms to ISO 8601'),
26 query('originallyPublishedEndDate')
27 .optional()
28 .custom(isDateValid).withMessage('Should have a published end date that conforms to ISO 8601'),
c74c9be9 29
fbd67e7f
C
30 query('durationMin')
31 .optional()
32 .isInt().withMessage('Should have a valid min duration'),
33 query('durationMax')
34 .optional()
35 .isInt().withMessage('Should have a valid max duration'),
36
37 query('uuids')
38 .optional()
39 .toArray()
40 .customSanitizer(toCompleteUUIDs)
41 .custom(areUUIDsValid).withMessage('Should have valid uuids'),
d525fc39 42
3b0bd70a
C
43 query('searchTarget').optional().custom(isSearchTargetValid).withMessage('Should have a valid search target'),
44
d525fc39 45 (req: express.Request, res: express.Response, next: express.NextFunction) => {
f37dc0dd
C
46 logger.debug('Checking videos search query', { parameters: req.query })
47
48 if (areValidationErrors(req, res)) return
49
50 return next()
51 }
52]
53
7b390964 54const videoChannelsListSearchValidator = [
fbd67e7f
C
55 query('search')
56 .optional()
57 .not().isEmpty().withMessage('Should have a valid search'),
fa47956e
C
58
59 query('host')
60 .optional()
61 .custom(isHostValid).withMessage('Should have a valid host'),
62
63 query('searchTarget')
64 .optional()
65 .custom(isSearchTargetValid).withMessage('Should have a valid search target'),
f37dc0dd 66
fbd67e7f
C
67 query('names')
68 .optional()
69 .toArray(),
70
f37dc0dd
C
71 (req: express.Request, res: express.Response, next: express.NextFunction) => {
72 logger.debug('Checking video channels search query', { parameters: req.query })
d525fc39
C
73
74 if (areValidationErrors(req, res)) return
75
76 return next()
77 }
78]
79
37a44fc9 80const videoPlaylistsListSearchValidator = [
fbd67e7f
C
81 query('search')
82 .optional()
83 .not().isEmpty().withMessage('Should have a valid search'),
fa47956e
C
84
85 query('host')
86 .optional()
87 .custom(isHostValid).withMessage('Should have a valid host'),
88
89 query('searchTarget')
90 .optional()
91 .custom(isSearchTargetValid).withMessage('Should have a valid search target'),
bc99dfe5 92
fbd67e7f
C
93 query('uuids')
94 .optional()
95 .toArray()
96 .customSanitizer(toCompleteUUIDs)
97 .custom(areUUIDsValid).withMessage('Should have valid uuids'),
98
bc99dfe5 99 (req: express.Request, res: express.Response, next: express.NextFunction) => {
37a44fc9 100 logger.debug('Checking video playlists search query', { parameters: req.query })
bc99dfe5
RK
101
102 if (areValidationErrors(req, res)) return
103
104 return next()
105 }
106]
107
57c36b27
C
108// ---------------------------------------------------------------------------
109
110export {
bc99dfe5 111 videosSearchValidator,
7b390964 112 videoChannelsListSearchValidator,
37a44fc9 113 videoPlaylistsListSearchValidator
57c36b27 114}