2017-10-24 13:41:09 -04:00
|
|
|
import * as express from 'express'
|
2017-11-23 12:04:48 -05:00
|
|
|
import { body, param } from 'express-validator/check'
|
|
|
|
import { UserRight } from '../../../shared'
|
2017-12-12 11:53:50 -05:00
|
|
|
import { isAccountIdExist } from '../../helpers/custom-validators/accounts'
|
2017-12-14 11:38:41 -05:00
|
|
|
import { isIdOrUUIDValid } from '../../helpers/custom-validators/misc'
|
2017-11-27 08:44:51 -05:00
|
|
|
import {
|
2017-12-28 05:16:08 -05:00
|
|
|
isVideoChannelDescriptionValid, isVideoChannelExist,
|
2017-11-27 08:44:51 -05:00
|
|
|
isVideoChannelNameValid
|
|
|
|
} from '../../helpers/custom-validators/video-channels'
|
2017-12-28 05:16:08 -05:00
|
|
|
import { logger } from '../../helpers/logger'
|
2017-12-12 11:53:50 -05:00
|
|
|
import { UserModel } from '../../models/account/user'
|
|
|
|
import { VideoChannelModel } from '../../models/video/video-channel'
|
2017-11-27 11:30:46 -05:00
|
|
|
import { areValidationErrors } from './utils'
|
2017-10-24 13:41:09 -04:00
|
|
|
|
2017-11-10 08:48:08 -05:00
|
|
|
const listVideoAccountChannelsValidator = [
|
|
|
|
param('accountId').custom(isIdOrUUIDValid).withMessage('Should have a valid account id'),
|
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-11-10 08:48:08 -05:00
|
|
|
logger.debug('Checking listVideoAccountChannelsValidator parameters', { parameters: req.body })
|
2017-10-24 13:41:09 -04:00
|
|
|
|
2017-11-27 11:30:46 -05:00
|
|
|
if (areValidationErrors(req, res)) return
|
|
|
|
if (!await isAccountIdExist(req.params.accountId, res)) return
|
|
|
|
|
|
|
|
return next()
|
2017-10-24 13:41:09 -04: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 11:30:46 -05:00
|
|
|
if (areValidationErrors(req, res)) return
|
|
|
|
|
|
|
|
return next()
|
2017-10-24 13:41:09 -04: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 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
|
|
|
|
if (!await isVideoChannelExist(req.params.id, res)) return
|
|
|
|
|
|
|
|
// We need to make additional checks
|
2017-12-27 14:03:37 -05:00
|
|
|
if (res.locals.videoChannel.Actor.isOwned() === false) {
|
2017-11-27 11:30:46 -05: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 13:41:09 -04:00
|
|
|
}
|
|
|
|
]
|
|
|
|
|
|
|
|
const videoChannelsRemoveValidator = [
|
|
|
|
param('id').custom(isIdOrUUIDValid).not().isEmpty().withMessage('Should have a valid id'),
|
|
|
|
|
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
|
|
|
|
if (!await isVideoChannelExist(req.params.id, res)) return
|
|
|
|
|
|
|
|
// Check if the user who did the request is able to delete the video
|
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
|
|
|
}
|
|
|
|
]
|
|
|
|
|
2017-11-16 09:22:39 -05:00
|
|
|
const videoChannelsGetValidator = [
|
2017-10-24 13:41:09 -04:00
|
|
|
param('id').custom(isIdOrUUIDValid).not().isEmpty().withMessage('Should have a valid id'),
|
|
|
|
|
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 videoChannelsGet parameters', { parameters: req.params })
|
|
|
|
|
2017-11-27 11:30:46 -05:00
|
|
|
if (areValidationErrors(req, res)) return
|
|
|
|
if (!await isVideoChannelExist(req.params.id, res)) return
|
|
|
|
|
|
|
|
return next()
|
2017-10-24 13:41:09 -04:00
|
|
|
}
|
|
|
|
]
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
2017-11-10 08:48:08 -05:00
|
|
|
listVideoAccountChannelsValidator,
|
2017-10-24 13:41:09 -04:00
|
|
|
videoChannelsAddValidator,
|
|
|
|
videoChannelsUpdateValidator,
|
|
|
|
videoChannelsRemoveValidator,
|
2017-12-14 11:38:41 -05:00
|
|
|
videoChannelsGetValidator
|
2017-10-24 13:41:09 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2017-12-12 11:53:50 -05:00
|
|
|
function checkUserCanDeleteVideoChannel (user: UserModel, videoChannel: VideoChannelModel, res: express.Response) {
|
2017-12-14 11:38:41 -05:00
|
|
|
if (videoChannel.Actor.isOwned() === false) {
|
2017-11-27 11:30:46 -05:00
|
|
|
res.status(403)
|
2017-11-15 05:00:25 -05:00
|
|
|
.json({ error: 'Cannot remove video channel of another server.' })
|
2017-10-24 13:41:09 -04:00
|
|
|
.end()
|
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.status(403)
|
2017-10-24 13:41:09 -04:00
|
|
|
.json({ error: 'Cannot remove video channel of another user' })
|
|
|
|
.end()
|
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.status(409)
|
|
|
|
.json({ error: 'Cannot remove the last channel of this user' })
|
|
|
|
.end()
|
|
|
|
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
return true
|
2017-10-24 13:41:09 -04:00
|
|
|
}
|