]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/middlewares/validators/video-channels.ts
Use sequelize scopes
[github/Chocobozzz/PeerTube.git] / server / middlewares / validators / video-channels.ts
CommitLineData
72c7248b 1import * as express from 'express'
d4f1e94c
C
2import { body, param } from 'express-validator/check'
3import { UserRight } from '../../../shared'
3fd3ab2d
C
4import { logger } from '../../helpers'
5import { isAccountIdExist } from '../../helpers/custom-validators/accounts'
6import { isIdOrUUIDValid, isIdValid } from '../../helpers/custom-validators/misc'
4e50b6a1 7import {
4e50b6a1 8 isVideoChannelDescriptionValid,
a2431b7d 9 isVideoChannelExist,
4e50b6a1
C
10 isVideoChannelNameValid
11} from '../../helpers/custom-validators/video-channels'
3fd3ab2d
C
12import { UserModel } from '../../models/account/user'
13import { VideoChannelModel } from '../../models/video/video-channel'
14import { VideoChannelShareModel } from '../../models/video/video-channel-share'
a2431b7d 15import { areValidationErrors } from './utils'
72c7248b 16
38fa2065
C
17const listVideoAccountChannelsValidator = [
18 param('accountId').custom(isIdOrUUIDValid).withMessage('Should have a valid account id'),
72c7248b 19
a2431b7d 20 async (req: express.Request, res: express.Response, next: express.NextFunction) => {
38fa2065 21 logger.debug('Checking listVideoAccountChannelsValidator parameters', { parameters: req.body })
72c7248b 22
a2431b7d
C
23 if (areValidationErrors(req, res)) return
24 if (!await isAccountIdExist(req.params.accountId, res)) return
25
26 return next()
72c7248b
C
27 }
28]
29
30const videoChannelsAddValidator = [
31 body('name').custom(isVideoChannelNameValid).withMessage('Should have a valid name'),
32 body('description').custom(isVideoChannelDescriptionValid).withMessage('Should have a valid description'),
33
34 (req: express.Request, res: express.Response, next: express.NextFunction) => {
35 logger.debug('Checking videoChannelsAdd parameters', { parameters: req.body })
36
a2431b7d
C
37 if (areValidationErrors(req, res)) return
38
39 return next()
72c7248b
C
40 }
41]
42
43const videoChannelsUpdateValidator = [
44 param('id').custom(isIdOrUUIDValid).not().isEmpty().withMessage('Should have a valid id'),
45 body('name').optional().custom(isVideoChannelNameValid).withMessage('Should have a valid name'),
46 body('description').optional().custom(isVideoChannelDescriptionValid).withMessage('Should have a valid description'),
47
a2431b7d 48 async (req: express.Request, res: express.Response, next: express.NextFunction) => {
72c7248b
C
49 logger.debug('Checking videoChannelsUpdate parameters', { parameters: req.body })
50
a2431b7d
C
51 if (areValidationErrors(req, res)) return
52 if (!await isVideoChannelExist(req.params.id, res)) return
53
54 // We need to make additional checks
55 if (res.locals.videoChannel.isOwned() === false) {
56 return res.status(403)
57 .json({ error: 'Cannot update video channel of another server' })
58 .end()
59 }
60
61 if (res.locals.videoChannel.Account.userId !== res.locals.oauth.token.User.id) {
62 return res.status(403)
63 .json({ error: 'Cannot update video channel of another user' })
64 .end()
65 }
66
67 return next()
72c7248b
C
68 }
69]
70
71const videoChannelsRemoveValidator = [
72 param('id').custom(isIdOrUUIDValid).not().isEmpty().withMessage('Should have a valid id'),
73
a2431b7d 74 async (req: express.Request, res: express.Response, next: express.NextFunction) => {
72c7248b
C
75 logger.debug('Checking videoChannelsRemove parameters', { parameters: req.params })
76
a2431b7d
C
77 if (areValidationErrors(req, res)) return
78 if (!await isVideoChannelExist(req.params.id, res)) return
79
80 // Check if the user who did the request is able to delete the video
d48ff09d 81 if (!checkUserCanDeleteVideoChannel(res.locals.oauth.token.User, res.locals.videoChannel, res)) return
a2431b7d
C
82 if (!await checkVideoChannelIsNotTheLastOne(res)) return
83
84 return next()
72c7248b
C
85 }
86]
87
20494f12 88const videoChannelsGetValidator = [
72c7248b
C
89 param('id').custom(isIdOrUUIDValid).not().isEmpty().withMessage('Should have a valid id'),
90
a2431b7d 91 async (req: express.Request, res: express.Response, next: express.NextFunction) => {
72c7248b
C
92 logger.debug('Checking videoChannelsGet parameters', { parameters: req.params })
93
a2431b7d
C
94 if (areValidationErrors(req, res)) return
95 if (!await isVideoChannelExist(req.params.id, res)) return
96
97 return next()
72c7248b
C
98 }
99]
100
4e50b6a1
C
101const videoChannelsShareValidator = [
102 param('id').custom(isIdOrUUIDValid).not().isEmpty().withMessage('Should have a valid id'),
103 param('accountId').custom(isIdValid).not().isEmpty().withMessage('Should have a valid account id'),
104
105 async (req: express.Request, res: express.Response, next: express.NextFunction) => {
106 logger.debug('Checking videoChannelShare parameters', { parameters: req.params })
107
108 if (areValidationErrors(req, res)) return
a2431b7d 109 if (!await isVideoChannelExist(req.params.id, res)) return
4e50b6a1 110
3fd3ab2d 111 const share = await VideoChannelShareModel.load(res.locals.video.id, req.params.accountId, undefined)
4e50b6a1
C
112 if (!share) {
113 return res.status(404)
114 .end()
115 }
116
117 res.locals.videoChannelShare = share
118
119 return next()
120 }
121]
122
72c7248b
C
123// ---------------------------------------------------------------------------
124
125export {
38fa2065 126 listVideoAccountChannelsValidator,
72c7248b
C
127 videoChannelsAddValidator,
128 videoChannelsUpdateValidator,
129 videoChannelsRemoveValidator,
4e50b6a1
C
130 videoChannelsGetValidator,
131 videoChannelsShareValidator
72c7248b
C
132}
133
134// ---------------------------------------------------------------------------
135
3fd3ab2d 136function checkUserCanDeleteVideoChannel (user: UserModel, videoChannel: VideoChannelModel, res: express.Response) {
72c7248b 137 // Retrieve the user who did the request
a2431b7d
C
138 if (videoChannel.isOwned() === false) {
139 res.status(403)
60862425 140 .json({ error: 'Cannot remove video channel of another server.' })
72c7248b 141 .end()
a2431b7d
C
142
143 return false
72c7248b
C
144 }
145
146 // Check if the user can delete the video channel
147 // The user can delete it if s/he is an admin
38fa2065 148 // Or if s/he is the video channel's account
a2431b7d
C
149 if (user.hasRight(UserRight.REMOVE_ANY_VIDEO_CHANNEL) === false && videoChannel.Account.userId !== user.id) {
150 res.status(403)
72c7248b
C
151 .json({ error: 'Cannot remove video channel of another user' })
152 .end()
a2431b7d
C
153
154 return false
72c7248b
C
155 }
156
a2431b7d 157 return true
72c7248b
C
158}
159
a2431b7d 160async function checkVideoChannelIsNotTheLastOne (res: express.Response) {
3fd3ab2d 161 const count = await VideoChannelModel.countByAccount(res.locals.oauth.token.User.Account.id)
a2431b7d
C
162
163 if (count <= 1) {
164 res.status(409)
165 .json({ error: 'Cannot remove the last channel of this user' })
166 .end()
167
168 return false
169 }
170
171 return true
72c7248b 172}