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