1
0
Fork 0
peertube/server/middlewares/validators/search.ts

23 lines
618 B
TypeScript
Raw Normal View History

2018-07-19 14:17:54 +00:00
import * as express from 'express'
import { areValidationErrors } from './utils'
import { logger } from '../../helpers/logger'
import { query } from 'express-validator/check'
const searchValidator = [
query('search').not().isEmpty().withMessage('Should have a valid search'),
(req: express.Request, res: express.Response, next: express.NextFunction) => {
logger.debug('Checking search parameters', { parameters: req.params })
if (areValidationErrors(req, res)) return
return next()
}
]
// ---------------------------------------------------------------------------
export {
searchValidator
}