2017-06-10 22:15:25 +02:00
|
|
|
import 'express-validator'
|
|
|
|
import * as express from 'express'
|
|
|
|
|
2017-05-15 22:22:03 +02:00
|
|
|
import { logger } from '../../../helpers'
|
|
|
|
import { checkErrors } from '../utils'
|
2017-01-04 20:59:23 +01:00
|
|
|
|
2017-06-10 22:15:25 +02:00
|
|
|
function remoteVideosValidator (req: express.Request, res: express.Response, next: express.NextFunction) {
|
2017-01-04 20:59:23 +01:00
|
|
|
req.checkBody('data').isEachRemoteRequestVideosValid()
|
|
|
|
|
|
|
|
logger.debug('Checking remoteVideos parameters', { parameters: req.body })
|
|
|
|
|
|
|
|
checkErrors(req, res, next)
|
|
|
|
}
|
|
|
|
|
2017-06-10 22:15:25 +02:00
|
|
|
function remoteQaduVideosValidator (req: express.Request, res: express.Response, next: express.NextFunction) {
|
2017-02-21 21:35:59 +01:00
|
|
|
req.checkBody('data').isEachRemoteRequestVideosQaduValid()
|
|
|
|
|
2017-02-26 18:57:33 +01:00
|
|
|
logger.debug('Checking remoteQaduVideos parameters', { parameters: req.body })
|
2017-02-21 21:35:59 +01:00
|
|
|
|
|
|
|
checkErrors(req, res, next)
|
|
|
|
}
|
|
|
|
|
2017-06-10 22:15:25 +02:00
|
|
|
function remoteEventsVideosValidator (req: express.Request, res: express.Response, next: express.NextFunction) {
|
2017-02-26 18:57:33 +01:00
|
|
|
req.checkBody('data').isEachRemoteRequestVideosEventsValid()
|
|
|
|
|
|
|
|
logger.debug('Checking remoteEventsVideos parameters', { parameters: req.body })
|
|
|
|
|
|
|
|
checkErrors(req, res, next)
|
|
|
|
}
|
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
|
|
|
|
}
|