]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - server/middlewares/validators/user-history.ts
Merge branch 'release/4.3.0' into develop
[github/Chocobozzz/PeerTube.git] / server / middlewares / validators / user-history.ts
... / ...
CommitLineData
1import express from 'express'
2import { body, param, query } from 'express-validator'
3import { exists, isDateValid, isIdValid } from '../../helpers/custom-validators/misc'
4import { areValidationErrors } from './shared'
5
6const userHistoryListValidator = [
7 query('search')
8 .optional()
9 .custom(exists),
10
11 (req: express.Request, res: express.Response, next: express.NextFunction) => {
12 if (areValidationErrors(req, res)) return
13
14 return next()
15 }
16]
17
18const userHistoryRemoveAllValidator = [
19 body('beforeDate')
20 .optional()
21 .custom(isDateValid).withMessage('Should have a before date that conforms to ISO 8601'),
22
23 (req: express.Request, res: express.Response, next: express.NextFunction) => {
24 if (areValidationErrors(req, res)) return
25
26 return next()
27 }
28]
29
30const userHistoryRemoveElementValidator = [
31 param('videoId')
32 .custom(isIdValid),
33
34 (req: express.Request, res: express.Response, next: express.NextFunction) => {
35 if (areValidationErrors(req, res)) return
36
37 return next()
38 }
39]
40
41// ---------------------------------------------------------------------------
42
43export {
44 userHistoryListValidator,
45 userHistoryRemoveElementValidator,
46 userHistoryRemoveAllValidator
47}