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'
|
2022-08-10 09:53:39 +02:00
|
|
|
import { isUrlValid } from '@server/helpers/custom-validators/activitypub/misc'
|
2021-12-13 15:29:13 +01:00
|
|
|
import { CONFIG } from '@server/initializers/config'
|
|
|
|
import { MChannelAccountDefault } from '@server/types/models'
|
2022-08-10 11:51:13 +02:00
|
|
|
import { VideosImportInChannelCreate } from '@shared/models'
|
2021-07-16 10:42:24 +02:00
|
|
|
import { HttpStatusCode } from '../../../../shared/models/http/http-error-codes'
|
2022-08-10 11:51:13 +02:00
|
|
|
import { isBooleanValid, isIdValid, 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'
|
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'
|
2022-08-10 09:53:39 +02:00
|
|
|
import { areValidationErrors, checkUserQuota, doesVideoChannelNameWithHostExist } from '../shared'
|
2022-08-10 11:51:13 +02:00
|
|
|
import { doesVideoChannelSyncIdExist } from '../shared/video-channel-syncs'
|
2017-10-24 19:41:09 +02:00
|
|
|
|
2022-08-10 09:53:39 +02:00
|
|
|
export const videoChannelsAddValidator = [
|
2022-08-17 14:27:04 +02:00
|
|
|
body('name')
|
|
|
|
.custom(isVideoChannelUsernameValid),
|
|
|
|
body('displayName')
|
|
|
|
.custom(isVideoChannelDisplayNameValid),
|
|
|
|
body('description')
|
|
|
|
.optional()
|
|
|
|
.custom(isVideoChannelDescriptionValid),
|
|
|
|
body('support')
|
|
|
|
.optional()
|
|
|
|
.custom(isVideoChannelSupportValid),
|
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-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
|
|
|
}
|
|
|
|
]
|
|
|
|
|
2022-08-10 09:53:39 +02:00
|
|
|
export const videoChannelsUpdateValidator = [
|
2022-08-17 14:27:04 +02:00
|
|
|
param('nameWithHost')
|
|
|
|
.exists(),
|
|
|
|
|
2019-05-31 16:30:11 +02:00
|
|
|
body('displayName')
|
|
|
|
.optional()
|
2022-08-17 14:27:04 +02:00
|
|
|
.custom(isVideoChannelDisplayNameValid),
|
2019-05-31 16:30:11 +02:00
|
|
|
body('description')
|
|
|
|
.optional()
|
2022-08-17 14:27:04 +02:00
|
|
|
.custom(isVideoChannelDescriptionValid),
|
2019-05-31 16:30:11 +02:00
|
|
|
body('support')
|
|
|
|
.optional()
|
2022-08-17 14:27:04 +02:00
|
|
|
.custom(isVideoChannelSupportValid),
|
2019-05-31 16:30:11 +02:00
|
|
|
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-11-27 17:30:46 +01:00
|
|
|
if (areValidationErrors(req, res)) return
|
|
|
|
|
|
|
|
return next()
|
2017-10-24 19:41:09 +02:00
|
|
|
}
|
|
|
|
]
|
|
|
|
|
2022-08-10 09:53:39 +02:00
|
|
|
export const videoChannelsRemoveValidator = [
|
2017-11-27 17:30:46 +01:00
|
|
|
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
|
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
|
|
|
}
|
|
|
|
]
|
|
|
|
|
2022-08-10 09:53:39 +02:00
|
|
|
export const videoChannelsNameWithHostValidator = [
|
2022-08-17 14:27:04 +02:00
|
|
|
param('nameWithHost')
|
|
|
|
.exists(),
|
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) => {
|
|
|
|
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
|
|
|
}
|
|
|
|
]
|
|
|
|
|
2022-08-10 09:53:39 +02:00
|
|
|
export const ensureIsLocalChannel = [
|
2021-12-13 15:29:13 +01:00
|
|
|
(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()
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
2022-08-10 09:53:39 +02:00
|
|
|
export const ensureChannelOwnerCanUpload = [
|
|
|
|
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
|
|
|
|
const channel = res.locals.videoChannel
|
|
|
|
const user = { id: channel.Account.userId }
|
|
|
|
|
|
|
|
if (!await checkUserQuota(user, 1, res)) return
|
|
|
|
|
|
|
|
next()
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
|
|
|
export const videoChannelStatsValidator = [
|
2020-06-12 16:01:42 +02:00
|
|
|
query('withStats')
|
|
|
|
.optional()
|
|
|
|
.customSanitizer(toBooleanOrNull)
|
2022-08-17 14:27:04 +02:00
|
|
|
.custom(isBooleanValid).withMessage('Should have a valid stats flag boolean'),
|
2020-03-24 01:12:30 +01:00
|
|
|
|
|
|
|
(req: express.Request, res: express.Response, next: express.NextFunction) => {
|
|
|
|
if (areValidationErrors(req, res)) return
|
|
|
|
return next()
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
2022-08-10 09:53:39 +02:00
|
|
|
export const videoChannelsListValidator = [
|
2022-08-17 14:27:04 +02:00
|
|
|
query('search')
|
|
|
|
.optional()
|
|
|
|
.not().isEmpty(),
|
2021-06-17 16:02:38 +02:00
|
|
|
|
|
|
|
(req: express.Request, res: express.Response, next: express.NextFunction) => {
|
|
|
|
if (areValidationErrors(req, res)) return
|
|
|
|
|
|
|
|
return next()
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
2022-08-10 09:53:39 +02:00
|
|
|
export const videoChannelImportVideosValidator = [
|
2022-08-17 14:27:04 +02:00
|
|
|
body('externalChannelUrl')
|
|
|
|
.custom(isUrlValid),
|
2017-10-24 19:41:09 +02:00
|
|
|
|
2022-08-10 11:51:13 +02:00
|
|
|
body('videoChannelSyncId')
|
|
|
|
.optional()
|
2022-08-17 14:27:04 +02:00
|
|
|
.custom(isIdValid),
|
2022-08-10 11:51:13 +02:00
|
|
|
|
|
|
|
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
|
2022-08-10 09:53:39 +02:00
|
|
|
if (areValidationErrors(req, res)) return
|
|
|
|
|
2022-08-10 11:51:13 +02:00
|
|
|
const body: VideosImportInChannelCreate = req.body
|
|
|
|
|
2022-08-10 09:53:39 +02:00
|
|
|
if (!CONFIG.IMPORT.VIDEOS.HTTP.ENABLED) {
|
|
|
|
return res.fail({
|
|
|
|
status: HttpStatusCode.FORBIDDEN_403,
|
|
|
|
message: 'Channel import is impossible as video upload via HTTP is not enabled on the server'
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2022-08-10 11:51:13 +02:00
|
|
|
if (body.videoChannelSyncId && !await doesVideoChannelSyncIdExist(body.videoChannelSyncId, res)) return
|
|
|
|
|
2022-09-16 10:58:13 +02:00
|
|
|
if (res.locals.videoChannelSync && res.locals.videoChannelSync.videoChannelId !== res.locals.videoChannel.id) {
|
|
|
|
return res.fail({
|
|
|
|
status: HttpStatusCode.FORBIDDEN_403,
|
|
|
|
message: 'This channel sync is not owned by this channel'
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2022-08-10 09:53:39 +02:00
|
|
|
return next()
|
|
|
|
}
|
|
|
|
]
|
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
|
|
|
}
|