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

174 lines
5.9 KiB
TypeScript
Raw Normal View History

2017-10-24 19:41:09 +02:00
import * as express from 'express'
2017-11-23 18:04:48 +01:00
import { body, param } from 'express-validator/check'
import { UserRight } from '../../../shared'
import { isIdValid } from '../../helpers/custom-validators/misc'
import {
isVideoChannelDescriptionValid,
2017-11-27 17:30:46 +01:00
isVideoChannelExist,
isVideoChannelNameValid
} from '../../helpers/custom-validators/video-channels'
import { isIdOrUUIDValid } from '../../helpers/index'
2017-11-23 18:04:48 +01:00
import { logger } from '../../helpers/logger'
2017-10-24 19:41:09 +02:00
import { database as db } from '../../initializers'
import { UserInstance } from '../../models'
2017-11-27 17:30:46 +01:00
import { areValidationErrors } from './utils'
import { isAccountIdExist } from '../../helpers/custom-validators/accounts'
import { VideoChannelInstance } from '../../models/video/video-channel-interface'
2017-10-24 19:41:09 +02:00
2017-11-10 14:48:08 +01:00
const listVideoAccountChannelsValidator = [
param('accountId').custom(isIdOrUUIDValid).withMessage('Should have a valid account id'),
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-11-10 14:48:08 +01:00
logger.debug('Checking listVideoAccountChannelsValidator parameters', { parameters: req.body })
2017-10-24 19:41:09 +02:00
2017-11-27 17:30:46 +01:00
if (areValidationErrors(req, res)) return
if (!await isAccountIdExist(req.params.accountId, res)) return
return next()
2017-10-24 19:41:09 +02:00
}
]
const videoChannelsAddValidator = [
body('name').custom(isVideoChannelNameValid).withMessage('Should have a valid name'),
body('description').custom(isVideoChannelDescriptionValid).withMessage('Should have a valid description'),
(req: express.Request, res: express.Response, next: express.NextFunction) => {
logger.debug('Checking videoChannelsAdd parameters', { parameters: req.body })
2017-11-27 17:30:46 +01:00
if (areValidationErrors(req, res)) return
return next()
2017-10-24 19:41:09 +02:00
}
]
const videoChannelsUpdateValidator = [
param('id').custom(isIdOrUUIDValid).not().isEmpty().withMessage('Should have a valid id'),
body('name').optional().custom(isVideoChannelNameValid).withMessage('Should have a valid name'),
body('description').optional().custom(isVideoChannelDescriptionValid).withMessage('Should have a valid description'),
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
if (!await isVideoChannelExist(req.params.id, res)) return
// We need to make additional checks
if (res.locals.videoChannel.isOwned() === false) {
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 = [
param('id').custom(isIdOrUUIDValid).not().isEmpty().withMessage('Should have a valid id'),
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
if (!await isVideoChannelExist(req.params.id, res)) return
// Check if the user who did the request is able to delete the video
if (!checkUserCanDeleteVideoChannel(res.locals.user, res.locals.videoChannel, res)) return
if (!await checkVideoChannelIsNotTheLastOne(res)) return
return next()
2017-10-24 19:41:09 +02:00
}
]
2017-11-16 15:22:39 +01:00
const videoChannelsGetValidator = [
2017-10-24 19:41:09 +02:00
param('id').custom(isIdOrUUIDValid).not().isEmpty().withMessage('Should have a valid id'),
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 videoChannelsGet parameters', { parameters: req.params })
2017-11-27 17:30:46 +01:00
if (areValidationErrors(req, res)) return
if (!await isVideoChannelExist(req.params.id, res)) return
return next()
2017-10-24 19:41:09 +02:00
}
]
const videoChannelsShareValidator = [
param('id').custom(isIdOrUUIDValid).not().isEmpty().withMessage('Should have a valid id'),
param('accountId').custom(isIdValid).not().isEmpty().withMessage('Should have a valid account id'),
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
logger.debug('Checking videoChannelShare parameters', { parameters: req.params })
if (areValidationErrors(req, res)) return
2017-11-27 17:30:46 +01:00
if (!await isVideoChannelExist(req.params.id, res)) return
const share = await db.VideoChannelShare.load(res.locals.video.id, req.params.accountId)
if (!share) {
return res.status(404)
.end()
}
res.locals.videoChannelShare = share
return next()
}
]
2017-10-24 19:41:09 +02:00
// ---------------------------------------------------------------------------
export {
2017-11-10 14:48:08 +01:00
listVideoAccountChannelsValidator,
2017-10-24 19:41:09 +02:00
videoChannelsAddValidator,
videoChannelsUpdateValidator,
videoChannelsRemoveValidator,
videoChannelsGetValidator,
videoChannelsShareValidator
2017-10-24 19:41:09 +02:00
}
// ---------------------------------------------------------------------------
2017-11-27 17:30:46 +01:00
function checkUserCanDeleteVideoChannel (user: UserInstance, videoChannel: VideoChannelInstance, res: express.Response) {
2017-10-24 19:41:09 +02:00
// Retrieve the user who did the request
2017-11-27 17:30:46 +01:00
if (videoChannel.isOwned() === false) {
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) {
const count = await db.VideoChannel.countByAccount(res.locals.oauth.token.User.Account.id)
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
}