]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/middlewares/validators/bulk.ts
refactor API errors to standard error format
[github/Chocobozzz/PeerTube.git] / server / middlewares / validators / bulk.ts
CommitLineData
444c0a0e
C
1import * as express from 'express'
2import { body } from 'express-validator'
3import { isBulkRemoveCommentsOfScopeValid } from '@server/helpers/custom-validators/bulk'
4import { doesAccountNameWithHostExist } from '@server/helpers/middlewares'
5import { UserRight } from '@shared/models'
6import { BulkRemoveCommentsOfBody } from '@shared/models/bulk/bulk-remove-comments-of-body.model'
7import { logger } from '../../helpers/logger'
8import { areValidationErrors } from './utils'
2d53be02 9import { HttpStatusCode } from '@shared/core-utils/miscs/http-error-codes'
444c0a0e
C
10
11const bulkRemoveCommentsOfValidator = [
12 body('accountName').exists().withMessage('Should have an account name with host'),
13 body('scope')
14 .custom(isBulkRemoveCommentsOfScopeValid).withMessage('Should have a valid scope'),
15
16 async (req: express.Request, res: express.Response, next: express.NextFunction) => {
17 logger.debug('Checking bulkRemoveCommentsOfValidator parameters', { parameters: req.body })
18
19 if (areValidationErrors(req, res)) return
20 if (!await doesAccountNameWithHostExist(req.body.accountName, res)) return
21
22 const user = res.locals.oauth.token.User
23 const body = req.body as BulkRemoveCommentsOfBody
24
25 if (body.scope === 'instance' && user.hasRight(UserRight.REMOVE_ANY_VIDEO_COMMENT) !== true) {
76148b27
RK
26 return res.fail({
27 status: HttpStatusCode.FORBIDDEN_403,
28 message: 'User cannot remove any comments of this instance.'
444c0a0e
C
29 })
30 }
31
32 return next()
33 }
34]
35
36// ---------------------------------------------------------------------------
37
38export {
39 bulkRemoveCommentsOfValidator
40}
41
42// ---------------------------------------------------------------------------