PeerTube/server/middlewares/validators/remote/videos.ts

62 lines
1.5 KiB
TypeScript
Raw Normal View History

2017-09-15 12:17:08 +02:00
import { body } from 'express-validator/check'
2017-06-10 22:15:25 +02:00
import * as express from 'express'
2017-09-15 12:17:08 +02:00
import {
logger,
isArray,
removeBadRequestVideos,
removeBadRequestVideosQadu,
removeBadRequestVideosEvents
2017-09-15 12:17:08 +02:00
} from '../../../helpers'
2017-05-15 22:22:03 +02:00
import { checkErrors } from '../utils'
2017-01-04 20:59:23 +01:00
2017-09-15 12:17:08 +02:00
const remoteVideosValidator = [
body('data').custom(isArray),
2017-01-04 20:59:23 +01:00
2017-09-15 12:17:08 +02:00
(req: express.Request, res: express.Response, next: express.NextFunction) => {
logger.debug('Checking remoteVideos parameters', { parameters: req.body })
2017-01-04 20:59:23 +01:00
checkErrors(req, res, () => {
removeBadRequestVideos(req.body.data)
return next()
})
2017-09-15 12:17:08 +02:00
}
]
2017-01-04 20:59:23 +01:00
2017-09-15 12:17:08 +02:00
const remoteQaduVideosValidator = [
body('data').custom(isArray),
2017-09-15 12:17:08 +02:00
(req: express.Request, res: express.Response, next: express.NextFunction) => {
logger.debug('Checking remoteQaduVideos parameters', { parameters: req.body })
checkErrors(req, res, () => {
removeBadRequestVideosQadu(req.body.data)
return next()
})
2017-09-15 12:17:08 +02:00
}
]
2017-09-15 12:17:08 +02:00
const remoteEventsVideosValidator = [
body('data').custom(isArray),
2017-02-26 18:57:33 +01:00
2017-09-15 12:17:08 +02:00
(req: express.Request, res: express.Response, next: express.NextFunction) => {
logger.debug('Checking remoteEventsVideos parameters', { parameters: req.body })
2017-02-26 18:57:33 +01:00
checkErrors(req, res, () => {
removeBadRequestVideosEvents(req.body.data)
return next()
})
2017-09-15 12:17:08 +02:00
}
]
2017-05-15 22:22:03 +02:00
2017-01-04 20:59:23 +01:00
// ---------------------------------------------------------------------------
2017-05-15 22:22:03 +02:00
export {
remoteVideosValidator,
remoteQaduVideosValidator,
remoteEventsVideosValidator
}