PeerTube/server/middlewares/validators/logs.ts

49 lines
1.5 KiB
TypeScript
Raw Normal View History

2019-04-10 15:26:33 +02:00
import * as express from 'express'
2019-07-25 16:23:44 +02:00
import { query } from 'express-validator'
2019-04-10 15:26:33 +02:00
import { isValidLogLevel } from '../../helpers/custom-validators/logs'
import { isDateValid } from '../../helpers/custom-validators/misc'
import { logger } from '../../helpers/logger'
import { areValidationErrors } from './shared'
2019-04-10 15:26:33 +02:00
const getLogsValidator = [
query('startDate')
2021-05-31 19:47:14 +02:00
.custom(isDateValid).withMessage('Should have a start date that conforms to ISO 8601'),
2019-04-10 15:26:33 +02:00
query('level')
.optional()
.custom(isValidLogLevel).withMessage('Should have a valid level'),
query('endDate')
.optional()
2021-05-31 19:47:14 +02:00
.custom(isDateValid).withMessage('Should have an end date that conforms to ISO 8601'),
2019-04-10 15:26:33 +02:00
(req: express.Request, res: express.Response, next: express.NextFunction) => {
logger.debug('Checking getLogsValidator parameters.', { parameters: req.query })
if (areValidationErrors(req, res)) return
return next()
}
]
2019-12-11 14:14:01 +01:00
const getAuditLogsValidator = [
query('startDate')
2021-05-31 19:47:14 +02:00
.custom(isDateValid).withMessage('Should have a start date that conforms to ISO 8601'),
2019-12-11 14:14:01 +01:00
query('endDate')
.optional()
2021-05-31 19:47:14 +02:00
.custom(isDateValid).withMessage('Should have a end date that conforms to ISO 8601'),
2019-12-11 14:14:01 +01:00
(req: express.Request, res: express.Response, next: express.NextFunction) => {
logger.debug('Checking getAuditLogsValidator parameters.', { parameters: req.query })
if (areValidationErrors(req, res)) return
return next()
}
]
2019-04-10 15:26:33 +02:00
// ---------------------------------------------------------------------------
export {
2019-12-11 14:14:01 +01:00
getLogsValidator,
getAuditLogsValidator
2019-04-10 15:26:33 +02:00
}