PeerTube/server/middlewares/validators/videos/video-channels.ts

179 lines
6.5 KiB
TypeScript
Raw Normal View History

2017-10-24 19:41:09 +02:00
import * as express from 'express'
2019-07-25 16:23:44 +02:00
import { body, param } from 'express-validator'
2018-10-05 11:15:06 +02:00
import { UserRight } from '../../../../shared'
import {
isVideoChannelDescriptionValid,
isVideoChannelNameValid,
isVideoChannelSupportValid
2018-10-05 11:15:06 +02:00
} from '../../../helpers/custom-validators/video-channels'
import { logger } from '../../../helpers/logger'
import { VideoChannelModel } from '../../../models/video/video-channel'
import { areValidationErrors } from '../utils'
import { isActorPreferredUsernameValid } from '../../../helpers/custom-validators/activitypub/actor'
import { ActorModel } from '../../../models/activitypub/actor'
import { isBooleanValid } from '../../../helpers/custom-validators/misc'
2019-07-23 10:40:39 +02:00
import { doesLocalVideoChannelNameExist, doesVideoChannelNameWithHostExist } from '../../../helpers/middlewares'
2019-08-20 13:52:49 +02:00
import { MChannelAccountDefault, MUser } from '@server/typings/models'
import { VIDEO_CHANNELS } from '@server/initializers/constants'
2017-10-24 19:41:09 +02:00
const videoChannelsAddValidator = [
2018-08-17 15:45:42 +02:00
body('name').custom(isActorPreferredUsernameValid).withMessage('Should have a valid channel name'),
2018-04-26 16:11:38 +02: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 19:41:09 +02:00
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
2017-10-24 19:41:09 +02:00
logger.debug('Checking videoChannelsAdd parameters', { parameters: req.body })
2017-11-27 17:30:46 +01:00
if (areValidationErrors(req, res)) return
const actor = await ActorModel.loadLocalByName(req.body.name)
if (actor) {
res.status(409)
.send({ error: 'Another actor (account/channel) with this name on this instance already exists or has already existed.' })
.end()
return false
}
const count = await VideoChannelModel.countByAccount(res.locals.oauth.token.User.Account.id)
2019-12-05 10:18:33 +01:00
if (count >= VIDEO_CHANNELS.MAX_PER_USER) {
res.status(400)
.send({ error: `You cannot create more than ${VIDEO_CHANNELS.MAX_PER_USER} channels` })
.end()
return false
}
2017-11-27 17:30:46 +01:00
return next()
2017-10-24 19:41:09 +02:00
}
]
const videoChannelsUpdateValidator = [
2018-08-17 15:45:42 +02:00
param('nameWithHost').exists().withMessage('Should have an video channel name with host'),
body('displayName')
.optional()
.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'),
body('bulkVideosSupportUpdate')
.optional()
.custom(isBooleanValid).withMessage('Should have a valid bulkVideosSupportUpdate boolean field'),
2017-10-24 19:41:09 +02:00
2017-11-27 17:30:46 +01:00
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
2017-10-24 19:41:09 +02:00
logger.debug('Checking videoChannelsUpdate parameters', { parameters: req.body })
2017-11-27 17:30:46 +01:00
if (areValidationErrors(req, res)) return
2019-03-19 09:26:50 +01:00
if (!await doesVideoChannelNameWithHostExist(req.params.nameWithHost, res)) return
2017-11-27 17:30:46 +01:00
// We need to make additional checks
2017-12-27 20:03:37 +01:00
if (res.locals.videoChannel.Actor.isOwned() === false) {
2017-11-27 17:30:46 +01: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 19:41:09 +02:00
}
]
const videoChannelsRemoveValidator = [
2018-08-17 15:45:42 +02:00
param('nameWithHost').exists().withMessage('Should have an video channel name with host'),
2017-10-24 19:41:09 +02:00
2017-11-27 17:30:46 +01:00
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
2017-10-24 19:41:09 +02:00
logger.debug('Checking videoChannelsRemove parameters', { parameters: req.params })
2017-11-27 17:30:46 +01:00
if (areValidationErrors(req, res)) return
2019-03-19 09:26:50 +01:00
if (!await doesVideoChannelNameWithHostExist(req.params.nameWithHost, res)) return
2017-11-27 17:30:46 +01:00
2017-12-14 10:07:57 +01:00
if (!checkUserCanDeleteVideoChannel(res.locals.oauth.token.User, res.locals.videoChannel, res)) return
2017-11-27 17:30:46 +01:00
if (!await checkVideoChannelIsNotTheLastOne(res)) return
return next()
2017-10-24 19:41:09 +02:00
}
]
2018-08-17 15:45:42 +02:00
const videoChannelsNameWithHostValidator = [
param('nameWithHost').exists().withMessage('Should have an video channel name with host'),
2017-10-24 19:41:09 +02:00
2017-11-27 17:30:46 +01:00
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
2018-08-17 15:45:42 +02:00
logger.debug('Checking videoChannelsNameWithHostValidator parameters', { parameters: req.params })
2017-10-24 19:41:09 +02:00
2017-11-27 17:30:46 +01:00
if (areValidationErrors(req, res)) return
2018-04-25 10:21:38 +02:00
2019-03-19 09:26:50 +01:00
if (!await doesVideoChannelNameWithHostExist(req.params.nameWithHost, res)) return
2017-11-27 17:30:46 +01:00
return next()
2017-10-24 19:41:09 +02:00
}
]
const localVideoChannelValidator = [
param('name').custom(isVideoChannelNameValid).withMessage('Should have a valid video channel name'),
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
logger.debug('Checking localVideoChannelValidator parameters', { parameters: req.params })
if (areValidationErrors(req, res)) return
2019-03-19 09:26:50 +01:00
if (!await doesLocalVideoChannelNameExist(req.params.name, res)) return
return next()
}
]
2017-10-24 19:41:09 +02:00
// ---------------------------------------------------------------------------
export {
videoChannelsAddValidator,
videoChannelsUpdateValidator,
videoChannelsRemoveValidator,
2018-08-17 15:45:42 +02:00
videoChannelsNameWithHostValidator,
localVideoChannelValidator
2017-10-24 19:41:09 +02:00
}
// ---------------------------------------------------------------------------
2019-08-20 13:52:49 +02:00
function checkUserCanDeleteVideoChannel (user: MUser, videoChannel: MChannelAccountDefault, res: express.Response) {
2017-12-14 17:38:41 +01:00
if (videoChannel.Actor.isOwned() === false) {
2017-11-27 17:30:46 +01:00
res.status(403)
2017-11-15 11:00:25 +01:00
.json({ error: 'Cannot remove video channel of another server.' })
2017-10-24 19:41:09 +02:00
.end()
2017-11-27 17:30:46 +01:00
return false
2017-10-24 19:41:09 +02:00
}
// Check if the user can delete the video channel
// The user can delete it if s/he is an admin
2017-11-10 14:48:08 +01:00
// Or if s/he is the video channel's account
2017-11-27 17:30:46 +01:00
if (user.hasRight(UserRight.REMOVE_ANY_VIDEO_CHANNEL) === false && videoChannel.Account.userId !== user.id) {
res.status(403)
2017-10-24 19:41:09 +02:00
.json({ error: 'Cannot remove video channel of another user' })
.end()
2017-11-27 17:30:46 +01:00
return false
2017-10-24 19:41:09 +02:00
}
2017-11-27 17:30:46 +01:00
return true
2017-10-24 19:41:09 +02:00
}
2017-11-27 17:30:46 +01:00
async function checkVideoChannelIsNotTheLastOne (res: express.Response) {
2017-12-12 17:53:50 +01:00
const count = await VideoChannelModel.countByAccount(res.locals.oauth.token.User.Account.id)
2017-11-27 17:30:46 +01: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 19:41:09 +02:00
}