1
0
Fork 0
peertube/server/middlewares/validators/video-channels.ts

151 lines
5.3 KiB
TypeScript
Raw Normal View History

2017-10-24 17:41:09 +00:00
import * as express from 'express'
2017-11-23 17:04:48 +00:00
import { body, param } from 'express-validator/check'
import { UserRight } from '../../../shared'
2018-07-31 13:09:34 +00:00
import { isAccountNameWithHostExist } from '../../helpers/custom-validators/accounts'
2017-12-14 16:38:41 +00:00
import { isIdOrUUIDValid } from '../../helpers/custom-validators/misc'
import {
isVideoChannelDescriptionValid,
isVideoChannelExist,
isVideoChannelNameValid,
isVideoChannelSupportValid
} from '../../helpers/custom-validators/video-channels'
2017-12-28 10:16:08 +00:00
import { logger } from '../../helpers/logger'
2017-12-12 16:53:50 +00:00
import { UserModel } from '../../models/account/user'
import { VideoChannelModel } from '../../models/video/video-channel'
2017-11-27 16:30:46 +00:00
import { areValidationErrors } from './utils'
2017-10-24 17:41:09 +00:00
2017-11-10 13:48:08 +00:00
const listVideoAccountChannelsValidator = [
2018-05-25 07:57:16 +00:00
param('accountName').exists().withMessage('Should have a valid account name'),
2017-10-24 17:41:09 +00:00
2017-11-27 16:30:46 +00:00
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
2017-11-10 13:48:08 +00:00
logger.debug('Checking listVideoAccountChannelsValidator parameters', { parameters: req.body })
2017-10-24 17:41:09 +00:00
2017-11-27 16:30:46 +00:00
if (areValidationErrors(req, res)) return
2018-05-25 07:57:16 +00:00
if (!await isAccountNameWithHostExist(req.params.accountName, res)) return
2017-11-27 16:30:46 +00:00
return next()
2017-10-24 17:41:09 +00:00
}
]
const videoChannelsAddValidator = [
2018-04-26 14:11:38 +00:00
body('displayName').custom(isVideoChannelNameValid).withMessage('Should have a valid display name'),
body('description').optional().custom(isVideoChannelDescriptionValid).withMessage('Should have a valid description'),
body('support').optional().custom(isVideoChannelSupportValid).withMessage('Should have a valid support text'),
2017-10-24 17:41:09 +00:00
(req: express.Request, res: express.Response, next: express.NextFunction) => {
logger.debug('Checking videoChannelsAdd parameters', { parameters: req.body })
2017-11-27 16:30:46 +00:00
if (areValidationErrors(req, res)) return
return next()
2017-10-24 17:41:09 +00:00
}
]
const videoChannelsUpdateValidator = [
param('id').custom(isIdOrUUIDValid).not().isEmpty().withMessage('Should have a valid id'),
2018-04-26 14:11:38 +00:00
body('displayName').optional().custom(isVideoChannelNameValid).withMessage('Should have a valid display name'),
2017-10-24 17:41:09 +00:00
body('description').optional().custom(isVideoChannelDescriptionValid).withMessage('Should have a valid description'),
body('support').optional().custom(isVideoChannelSupportValid).withMessage('Should have a valid support text'),
2017-10-24 17:41:09 +00:00
2017-11-27 16:30:46 +00:00
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
2017-10-24 17:41:09 +00:00
logger.debug('Checking videoChannelsUpdate parameters', { parameters: req.body })
2017-11-27 16:30:46 +00:00
if (areValidationErrors(req, res)) return
if (!await isVideoChannelExist(req.params.id, res)) return
// We need to make additional checks
2017-12-27 19:03:37 +00:00
if (res.locals.videoChannel.Actor.isOwned() === false) {
2017-11-27 16:30:46 +00:00
return res.status(403)
.json({ error: 'Cannot update video channel of another server' })
.end()
}
if (res.locals.videoChannel.Account.userId !== res.locals.oauth.token.User.id) {
return res.status(403)
.json({ error: 'Cannot update video channel of another user' })
.end()
}
return next()
2017-10-24 17:41:09 +00:00
}
]
const videoChannelsRemoveValidator = [
param('id').custom(isIdOrUUIDValid).not().isEmpty().withMessage('Should have a valid id'),
2017-11-27 16:30:46 +00:00
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
2017-10-24 17:41:09 +00:00
logger.debug('Checking videoChannelsRemove parameters', { parameters: req.params })
2017-11-27 16:30:46 +00:00
if (areValidationErrors(req, res)) return
if (!await isVideoChannelExist(req.params.id, res)) return
2017-12-14 09:07:57 +00:00
if (!checkUserCanDeleteVideoChannel(res.locals.oauth.token.User, res.locals.videoChannel, res)) return
2017-11-27 16:30:46 +00:00
if (!await checkVideoChannelIsNotTheLastOne(res)) return
return next()
2017-10-24 17:41:09 +00:00
}
]
2017-11-16 14:22:39 +00:00
const videoChannelsGetValidator = [
2017-10-24 17:41:09 +00:00
param('id').custom(isIdOrUUIDValid).not().isEmpty().withMessage('Should have a valid id'),
2017-11-27 16:30:46 +00:00
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
2017-10-24 17:41:09 +00:00
logger.debug('Checking videoChannelsGet parameters', { parameters: req.params })
2017-11-27 16:30:46 +00:00
if (areValidationErrors(req, res)) return
2018-04-25 08:21:38 +00:00
2017-11-27 16:30:46 +00:00
if (!await isVideoChannelExist(req.params.id, res)) return
return next()
2017-10-24 17:41:09 +00:00
}
]
// ---------------------------------------------------------------------------
export {
2017-11-10 13:48:08 +00:00
listVideoAccountChannelsValidator,
2017-10-24 17:41:09 +00:00
videoChannelsAddValidator,
videoChannelsUpdateValidator,
videoChannelsRemoveValidator,
2017-12-14 16:38:41 +00:00
videoChannelsGetValidator
2017-10-24 17:41:09 +00:00
}
// ---------------------------------------------------------------------------
2017-12-12 16:53:50 +00:00
function checkUserCanDeleteVideoChannel (user: UserModel, videoChannel: VideoChannelModel, res: express.Response) {
2017-12-14 16:38:41 +00:00
if (videoChannel.Actor.isOwned() === false) {
2017-11-27 16:30:46 +00:00
res.status(403)
2017-11-15 10:00:25 +00:00
.json({ error: 'Cannot remove video channel of another server.' })
2017-10-24 17:41:09 +00:00
.end()
2017-11-27 16:30:46 +00:00
return false
2017-10-24 17:41:09 +00:00
}
// Check if the user can delete the video channel
// The user can delete it if s/he is an admin
2017-11-10 13:48:08 +00:00
// Or if s/he is the video channel's account
2017-11-27 16:30:46 +00:00
if (user.hasRight(UserRight.REMOVE_ANY_VIDEO_CHANNEL) === false && videoChannel.Account.userId !== user.id) {
res.status(403)
2017-10-24 17:41:09 +00:00
.json({ error: 'Cannot remove video channel of another user' })
.end()
2017-11-27 16:30:46 +00:00
return false
2017-10-24 17:41:09 +00:00
}
2017-11-27 16:30:46 +00:00
return true
2017-10-24 17:41:09 +00:00
}
2017-11-27 16:30:46 +00:00
async function checkVideoChannelIsNotTheLastOne (res: express.Response) {
2017-12-12 16:53:50 +00:00
const count = await VideoChannelModel.countByAccount(res.locals.oauth.token.User.Account.id)
2017-11-27 16:30:46 +00:00
if (count <= 1) {
res.status(409)
.json({ error: 'Cannot remove the last channel of this user' })
.end()
return false
}
return true
2017-10-24 17:41:09 +00:00
}