mirror of https://github.com/Chocobozzz/PeerTube
26 lines
711 B
TypeScript
26 lines
711 B
TypeScript
import express from 'express'
|
|
import { query } from 'express-validator'
|
|
import { PAGINATION } from '@server/initializers/constants'
|
|
import { areValidationErrors } from '../shared'
|
|
|
|
const apPaginationValidator = [
|
|
query('page')
|
|
.optional()
|
|
.isInt({ min: 1 }),
|
|
query('size')
|
|
.optional()
|
|
.isInt({ min: 0, max: PAGINATION.OUTBOX.COUNT.MAX }).withMessage(`Should have a valid page size (max: ${PAGINATION.OUTBOX.COUNT.MAX})`),
|
|
|
|
(req: express.Request, res: express.Response, next: express.NextFunction) => {
|
|
if (areValidationErrors(req, res)) return
|
|
|
|
return next()
|
|
}
|
|
]
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
export {
|
|
apPaginationValidator
|
|
}
|