2021-08-27 14:32:44 +02:00
|
|
|
import express from 'express'
|
2020-03-24 01:12:30 +01:00
|
|
|
import { body, param, query } from 'express-validator'
|
2021-12-13 15:29:13 +01:00
|
|
|
import { CONFIG } from '@server/initializers/config'
|
|
|
|
import { MChannelAccountDefault } from '@server/types/models'
|
2021-07-16 10:42:24 +02:00
|
|
|
import { HttpStatusCode } from '../../../../shared/models/http/http-error-codes'
|
2020-06-12 16:01:42 +02:00
|
|
|
import { isBooleanValid, toBooleanOrNull } from '../../../helpers/custom-validators/misc'
|
2017-11-27 14:44:51 +01:00
|
|
|
import {
|
2018-05-07 11:31:23 +02:00
|
|
|
isVideoChannelDescriptionValid,
|
2021-08-05 13:54:35 +02:00
|
|
|
isVideoChannelDisplayNameValid,
|
|
|
|
isVideoChannelSupportValid,
|
|
|
|
isVideoChannelUsernameValid
|
2018-10-05 11:15:06 +02:00
|
|
|
} from '../../../helpers/custom-validators/video-channels'
|
|
|
|
import { logger } from '../../../helpers/logger'
|
2021-05-11 11:15:29 +02:00
|
|
|
import { ActorModel } from '../../../models/actor/actor'
|
2018-10-05 11:15:06 +02:00
|
|
|
import { VideoChannelModel } from '../../../models/video/video-channel'
|
2021-12-13 15:29:13 +01:00
|
|
|
import { areValidationErrors, doesVideoChannelNameWithHostExist } from '../shared'
|
2017-10-24 19:41:09 +02:00
|
|
|
|
|
|
|
const videoChannelsAddValidator = [
|
2021-08-05 13:54:35 +02:00
|
|
|
body('name').custom(isVideoChannelUsernameValid).withMessage('Should have a valid channel name'),
|
|
|
|
body('displayName').custom(isVideoChannelDisplayNameValid).withMessage('Should have a valid display name'),
|
2018-02-15 14:46:26 +01: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 19:41:09 +02:00
|
|
|
|
2018-10-01 15:18:07 +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
|
|
|
|
|
2018-10-01 15:18:07 +02:00
|
|
|
const actor = await ActorModel.loadLocalByName(req.body.name)
|
|
|
|
if (actor) {
|
2021-06-01 01:36:53 +02:00
|
|
|
res.fail({
|
|
|
|
status: HttpStatusCode.CONFLICT_409,
|
|
|
|
message: 'Another actor (account/channel) with this name on this instance already exists or has already existed.'
|
|
|
|
})
|
2018-10-01 15:18:07 +02:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2019-11-29 16:35:27 +01:00
|
|
|
const count = await VideoChannelModel.countByAccount(res.locals.oauth.token.User.Account.id)
|
2021-10-26 16:42:10 +02:00
|
|
|
if (count >= CONFIG.VIDEO_CHANNELS.MAX_PER_USER) {
|
|
|
|
res.fail({ message: `You cannot create more than ${CONFIG.VIDEO_CHANNELS.MAX_PER_USER} channels` })
|
2019-11-29 16:35:27 +01:00
|
|
|
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'),
|
2019-05-31 16:30:11 +02:00
|
|
|
body('displayName')
|
|
|
|
.optional()
|
2021-08-05 13:54:35 +02:00
|
|
|
.custom(isVideoChannelDisplayNameValid).withMessage('Should have a valid display name'),
|
2019-05-31 16:30:11 +02:00
|
|
|
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
|
|
|
|
2021-10-19 15:02:43 +02:00
|
|
|
(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
|
|
|
|
|
|
|
|
return next()
|
2017-10-24 19:41:09 +02:00
|
|
|
}
|
|
|
|
]
|
|
|
|
|
|
|
|
const videoChannelsRemoveValidator = [
|
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 })
|
|
|
|
|
2021-12-13 15:29:13 +01:00
|
|
|
if (!await checkVideoChannelIsNotTheLastOne(res.locals.videoChannel, res)) return
|
2017-11-27 17:30:46 +01:00
|
|
|
|
|
|
|
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
|
|
|
}
|
|
|
|
]
|
|
|
|
|
2021-12-13 15:29:13 +01:00
|
|
|
const ensureIsLocalChannel = [
|
|
|
|
(req: express.Request, res: express.Response, next: express.NextFunction) => {
|
|
|
|
if (res.locals.videoChannel.Actor.isOwned() === false) {
|
|
|
|
return res.fail({
|
|
|
|
status: HttpStatusCode.FORBIDDEN_403,
|
|
|
|
message: 'This channel is not owned.'
|
|
|
|
})
|
|
|
|
}
|
2018-08-16 15:25:20 +02:00
|
|
|
|
|
|
|
return next()
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
2020-03-24 01:12:30 +01:00
|
|
|
const videoChannelStatsValidator = [
|
2020-06-12 16:01:42 +02:00
|
|
|
query('withStats')
|
|
|
|
.optional()
|
|
|
|
.customSanitizer(toBooleanOrNull)
|
|
|
|
.custom(isBooleanValid).withMessage('Should have a valid stats flag'),
|
2020-03-24 01:12:30 +01:00
|
|
|
|
|
|
|
(req: express.Request, res: express.Response, next: express.NextFunction) => {
|
|
|
|
if (areValidationErrors(req, res)) return
|
|
|
|
return next()
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
2021-06-17 16:02:38 +02: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 19:41:09 +02:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
|
|
|
videoChannelsAddValidator,
|
|
|
|
videoChannelsUpdateValidator,
|
|
|
|
videoChannelsRemoveValidator,
|
2018-08-17 15:45:42 +02:00
|
|
|
videoChannelsNameWithHostValidator,
|
2021-12-13 15:29:13 +01:00
|
|
|
ensureIsLocalChannel,
|
2021-06-17 16:02:38 +02:00
|
|
|
videoChannelsListValidator,
|
2020-03-24 01:12:30 +01:00
|
|
|
videoChannelStatsValidator
|
2017-10-24 19:41:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2021-12-13 15:29:13 +01:00
|
|
|
async function checkVideoChannelIsNotTheLastOne (videoChannel: MChannelAccountDefault, res: express.Response) {
|
|
|
|
const count = await VideoChannelModel.countByAccount(videoChannel.Account.id)
|
2017-11-27 17:30:46 +01:00
|
|
|
|
|
|
|
if (count <= 1) {
|
2021-06-01 01:36:53 +02:00
|
|
|
res.fail({
|
|
|
|
status: HttpStatusCode.CONFLICT_409,
|
|
|
|
message: 'Cannot remove the last channel of this user'
|
|
|
|
})
|
2017-11-27 17:30:46 +01:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
return true
|
2017-10-24 19:41:09 +02:00
|
|
|
}
|