1 import * as express from 'express'
2 import { body } from 'express-validator'
3 import { isBulkRemoveCommentsOfScopeValid } from '@server/helpers/custom-validators/bulk'
4 import { doesAccountNameWithHostExist } from '@server/helpers/middlewares'
5 import { UserRight } from '@shared/models'
6 import { BulkRemoveCommentsOfBody } from '@shared/models/bulk/bulk-remove-comments-of-body.model'
7 import { logger } from '../../helpers/logger'
8 import { areValidationErrors } from './utils'
10 const bulkRemoveCommentsOfValidator = [
11 body('accountName').exists().withMessage('Should have an account name with host'),
13 .custom(isBulkRemoveCommentsOfScopeValid).withMessage('Should have a valid scope'),
15 async (req: express.Request, res: express.Response, next: express.NextFunction) => {
16 logger.debug('Checking bulkRemoveCommentsOfValidator parameters', { parameters: req.body })
18 if (areValidationErrors(req, res)) return
19 if (!await doesAccountNameWithHostExist(req.body.accountName, res)) return
21 const user = res.locals.oauth.token.User
22 const body = req.body as BulkRemoveCommentsOfBody
24 if (body.scope === 'instance' && user.hasRight(UserRight.REMOVE_ANY_VIDEO_COMMENT) !== true) {
25 return res.status(403)
27 error: 'User cannot remove any comments of this instance.'
35 // ---------------------------------------------------------------------------
38 bulkRemoveCommentsOfValidator
41 // ---------------------------------------------------------------------------