aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/middlewares/validators/user-history.ts
diff options
context:
space:
mode:
Diffstat (limited to 'server/middlewares/validators/user-history.ts')
-rw-r--r--server/middlewares/validators/user-history.ts47
1 files changed, 0 insertions, 47 deletions
diff --git a/server/middlewares/validators/user-history.ts b/server/middlewares/validators/user-history.ts
deleted file mode 100644
index f2dae3134..000000000
--- a/server/middlewares/validators/user-history.ts
+++ /dev/null
@@ -1,47 +0,0 @@
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}