]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/middlewares/validators/avatar.ts
Cleanup utils helper
[github/Chocobozzz/PeerTube.git] / server / middlewares / validators / avatar.ts
CommitLineData
4bbfc6c6
C
1import * as express from 'express'
2import { body } from 'express-validator/check'
3import { isAvatarFile } from '../../helpers/custom-validators/users'
4import { areValidationErrors } from './utils'
5import { CONSTRAINTS_FIELDS } from '../../initializers'
6import { logger } from '../../helpers/logger'
06215f15 7import { cleanUpReqFiles } from '../../helpers/express-utils'
4bbfc6c6
C
8
9const updateAvatarValidator = [
10 body('avatarfile').custom((value, { req }) => isAvatarFile(req.files)).withMessage(
11 'This file is not supported or too large. Please, make sure it is of the following type : '
12 + CONSTRAINTS_FIELDS.ACTORS.AVATAR.EXTNAME.join(', ')
13 ),
14
15 (req: express.Request, res: express.Response, next: express.NextFunction) => {
16 logger.debug('Checking updateAvatarValidator parameters', { files: req.files })
17
cf7a61b5 18 if (areValidationErrors(req, res)) return cleanUpReqFiles(req)
4bbfc6c6
C
19
20 return next()
21 }
22]
23
24export {
25 updateAvatarValidator
26}