]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - server/middlewares/validators/bulk.ts
Bumped to version v5.2.1
[github/Chocobozzz/PeerTube.git] / server / middlewares / validators / bulk.ts
... / ...
CommitLineData
1import express from 'express'
2import { body } from 'express-validator'
3import { isBulkRemoveCommentsOfScopeValid } from '@server/helpers/custom-validators/bulk'
4import { HttpStatusCode, UserRight } from '@shared/models'
5import { BulkRemoveCommentsOfBody } from '@shared/models/bulk/bulk-remove-comments-of-body.model'
6import { areValidationErrors, doesAccountNameWithHostExist } from './shared'
7
8const bulkRemoveCommentsOfValidator = [
9 body('accountName')
10 .exists(),
11 body('scope')
12 .custom(isBulkRemoveCommentsOfScopeValid),
13
14 async (req: express.Request, res: express.Response, next: express.NextFunction) => {
15 if (areValidationErrors(req, res)) return
16 if (!await doesAccountNameWithHostExist(req.body.accountName, res)) return
17
18 const user = res.locals.oauth.token.User
19 const body = req.body as BulkRemoveCommentsOfBody
20
21 if (body.scope === 'instance' && user.hasRight(UserRight.REMOVE_ANY_VIDEO_COMMENT) !== true) {
22 return res.fail({
23 status: HttpStatusCode.FORBIDDEN_403,
24 message: 'User cannot remove any comments of this instance.'
25 })
26 }
27
28 return next()
29 }
30]
31
32// ---------------------------------------------------------------------------
33
34export {
35 bulkRemoveCommentsOfValidator
36}
37
38// ---------------------------------------------------------------------------