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

206 lines
7.4 KiB
TypeScript
Raw Normal View History

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