From 444c0a0e017824fb4ce526281a22c4abe0a13c50 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Thu, 14 May 2020 16:56:15 +0200 Subject: Add ability to bulk delete comments --- server/middlewares/validators/bulk.ts | 41 +++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 server/middlewares/validators/bulk.ts (limited to 'server/middlewares/validators/bulk.ts') diff --git a/server/middlewares/validators/bulk.ts b/server/middlewares/validators/bulk.ts new file mode 100644 index 000000000..f9b0f565a --- /dev/null +++ b/server/middlewares/validators/bulk.ts @@ -0,0 +1,41 @@ +import * as express from 'express' +import { body } from 'express-validator' +import { isBulkRemoveCommentsOfScopeValid } from '@server/helpers/custom-validators/bulk' +import { doesAccountNameWithHostExist } from '@server/helpers/middlewares' +import { UserRight } from '@shared/models' +import { BulkRemoveCommentsOfBody } from '@shared/models/bulk/bulk-remove-comments-of-body.model' +import { logger } from '../../helpers/logger' +import { areValidationErrors } from './utils' + +const bulkRemoveCommentsOfValidator = [ + body('accountName').exists().withMessage('Should have an account name with host'), + body('scope') + .custom(isBulkRemoveCommentsOfScopeValid).withMessage('Should have a valid scope'), + + async (req: express.Request, res: express.Response, next: express.NextFunction) => { + logger.debug('Checking bulkRemoveCommentsOfValidator parameters', { parameters: req.body }) + + if (areValidationErrors(req, res)) return + if (!await doesAccountNameWithHostExist(req.body.accountName, res)) return + + const user = res.locals.oauth.token.User + const body = req.body as BulkRemoveCommentsOfBody + + if (body.scope === 'instance' && user.hasRight(UserRight.REMOVE_ANY_VIDEO_COMMENT) !== true) { + return res.status(403) + .json({ + error: 'User cannot remove any comments of this instance.' + }) + } + + return next() + } +] + +// --------------------------------------------------------------------------- + +export { + bulkRemoveCommentsOfValidator +} + +// --------------------------------------------------------------------------- -- cgit v1.2.3