]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/middlewares/validators/avatar.ts
Agnostic actor image storage
[github/Chocobozzz/PeerTube.git] / server / middlewares / validators / avatar.ts
CommitLineData
4bbfc6c6 1import * as express from 'express'
c8861d5d 2import { body } from 'express-validator'
4bbfc6c6
C
3import { isAvatarFile } from '../../helpers/custom-validators/users'
4import { areValidationErrors } from './utils'
74dc3bca 5import { CONSTRAINTS_FIELDS } from '../../initializers/constants'
4bbfc6c6 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(
a1587156
C
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(', ')
4bbfc6c6
C
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}