1234567891011121314151617181920212223242526 |
- import * as express from 'express'
- import { body } from 'express-validator/check'
- import { isAvatarFile } from '../../helpers/custom-validators/users'
- import { areValidationErrors } from './utils'
- import { CONSTRAINTS_FIELDS } from '../../initializers/constants'
- import { logger } from '../../helpers/logger'
- import { cleanUpReqFiles } from '../../helpers/express-utils'
- const updateAvatarValidator = [
- body('avatarfile').custom((value, { req }) => isAvatarFile(req.files)).withMessage(
- 'This file is not supported or too large. Please, make sure it is of the following type : '
- + CONSTRAINTS_FIELDS.ACTORS.AVATAR.EXTNAME.join(', ')
- ),
- (req: express.Request, res: express.Response, next: express.NextFunction) => {
- logger.debug('Checking updateAvatarValidator parameters', { files: req.files })
- if (areValidationErrors(req, res)) return cleanUpReqFiles(req)
- return next()
- }
- ]
- export {
- updateAvatarValidator
- }
|