2021-08-27 07:32:44 -05:00
|
|
|
import express from 'express'
|
2020-03-23 19:12:30 -05:00
|
|
|
import { body, param, query } from 'express-validator'
|
2022-08-10 02:53:39 -05:00
|
|
|
import { isUrlValid } from '@server/helpers/custom-validators/activitypub/misc'
|
2021-12-13 08:29:13 -06:00
|
|
|
import { CONFIG } from '@server/initializers/config'
|
|
|
|
import { MChannelAccountDefault } from '@server/types/models'
|
2022-08-10 04:51:13 -05:00
|
|
|
import { VideosImportInChannelCreate } from '@shared/models'
|
2021-07-16 03:42:24 -05:00
|
|
|
import { HttpStatusCode } from '../../../../shared/models/http/http-error-codes'
|
2022-08-10 04:51:13 -05:00
|
|
|
import { isBooleanValid, isIdValid, toBooleanOrNull } from '../../../helpers/custom-validators/misc'
|
2017-11-27 07:44:51 -06:00
|
|
|
import {
|
2018-05-07 04:31:23 -05:00
|
|
|
isVideoChannelDescriptionValid,
|
2021-08-05 06:54:35 -05:00
|
|
|
isVideoChannelDisplayNameValid,
|
|
|
|
isVideoChannelSupportValid,
|
|
|
|
isVideoChannelUsernameValid
|
2018-10-05 04:15:06 -05:00
|
|
|
} from '../../../helpers/custom-validators/video-channels'
|
2021-05-11 04:15:29 -05:00
|
|
|
import { ActorModel } from '../../../models/actor/actor'
|
2018-10-05 04:15:06 -05:00
|
|
|
import { VideoChannelModel } from '../../../models/video/video-channel'
|
2022-08-10 02:53:39 -05:00
|
|
|
import { areValidationErrors, checkUserQuota, doesVideoChannelNameWithHostExist } from '../shared'
|
2022-08-10 04:51:13 -05:00
|
|
|
import { doesVideoChannelSyncIdExist } from '../shared/video-channel-syncs'
|
2017-10-24 12:41:09 -05:00
|
|
|
|
2022-08-10 02:53:39 -05:00
|
|
|
export const videoChannelsAddValidator = [
|
2022-08-17 07:27:04 -05:00
|
|
|
body('name')
|
|
|
|
.custom(isVideoChannelUsernameValid),
|
|
|
|
body('displayName')
|
|
|
|
.custom(isVideoChannelDisplayNameValid),
|
|
|
|
body('description')
|
|
|
|
.optional()
|
|
|
|
.custom(isVideoChannelDescriptionValid),
|
|
|
|
body('support')
|
|
|
|
.optional()
|
|
|
|
.custom(isVideoChannelSupportValid),
|
2017-10-24 12:41:09 -05:00
|
|
|
|
2018-10-01 08:18:07 -05:00
|
|
|
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
|
2017-11-27 10:30:46 -06:00
|
|
|
if (areValidationErrors(req, res)) return
|
|
|
|
|
2018-10-01 08:18:07 -05:00
|
|
|
const actor = await ActorModel.loadLocalByName(req.body.name)
|
|
|
|
if (actor) {
|
2021-05-31 18:36:53 -05: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 08:18:07 -05:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2019-11-29 09:35:27 -06:00
|
|
|
const count = await VideoChannelModel.countByAccount(res.locals.oauth.token.User.Account.id)
|
2021-10-26 09:42:10 -05: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 09:35:27 -06:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2017-11-27 10:30:46 -06:00
|
|
|
return next()
|
2017-10-24 12:41:09 -05:00
|
|
|
}
|
|
|
|
]
|
|
|
|
|
2022-08-10 02:53:39 -05:00
|
|
|
export const videoChannelsUpdateValidator = [
|
2022-08-17 07:27:04 -05:00
|
|
|
param('nameWithHost')
|
|
|
|
.exists(),
|
|
|
|
|
2019-05-31 09:30:11 -05:00
|
|
|
body('displayName')
|
|
|
|
.optional()
|
2022-08-17 07:27:04 -05:00
|
|
|
.custom(isVideoChannelDisplayNameValid),
|
2019-05-31 09:30:11 -05:00
|
|
|
body('description')
|
|
|
|
.optional()
|
2022-08-17 07:27:04 -05:00
|
|
|
.custom(isVideoChannelDescriptionValid),
|
2019-05-31 09:30:11 -05:00
|
|
|
body('support')
|
|
|
|
.optional()
|
2022-08-17 07:27:04 -05:00
|
|
|
.custom(isVideoChannelSupportValid),
|
2019-05-31 09:30:11 -05:00
|
|
|
body('bulkVideosSupportUpdate')
|
|
|
|
.optional()
|
|
|
|
.custom(isBooleanValid).withMessage('Should have a valid bulkVideosSupportUpdate boolean field'),
|
2017-10-24 12:41:09 -05:00
|
|
|
|
2021-10-19 08:02:43 -05:00
|
|
|
(req: express.Request, res: express.Response, next: express.NextFunction) => {
|
2017-11-27 10:30:46 -06:00
|
|
|
if (areValidationErrors(req, res)) return
|
|
|
|
|
|
|
|
return next()
|
2017-10-24 12:41:09 -05:00
|
|
|
}
|
|
|
|
]
|
|
|
|
|
2022-08-10 02:53:39 -05:00
|
|
|
export const videoChannelsRemoveValidator = [
|
2017-11-27 10:30:46 -06:00
|
|
|
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
|
2021-12-13 08:29:13 -06:00
|
|
|
if (!await checkVideoChannelIsNotTheLastOne(res.locals.videoChannel, res)) return
|
2017-11-27 10:30:46 -06:00
|
|
|
|
|
|
|
return next()
|
2017-10-24 12:41:09 -05:00
|
|
|
}
|
|
|
|
]
|
|
|
|
|
2022-08-10 02:53:39 -05:00
|
|
|
export const videoChannelsNameWithHostValidator = [
|
2022-08-17 07:27:04 -05:00
|
|
|
param('nameWithHost')
|
|
|
|
.exists(),
|
2017-10-24 12:41:09 -05:00
|
|
|
|
2017-11-27 10:30:46 -06:00
|
|
|
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
|
|
|
|
if (areValidationErrors(req, res)) return
|
2018-04-25 03:21:38 -05:00
|
|
|
|
2019-03-19 03:26:50 -05:00
|
|
|
if (!await doesVideoChannelNameWithHostExist(req.params.nameWithHost, res)) return
|
2017-11-27 10:30:46 -06:00
|
|
|
|
|
|
|
return next()
|
2017-10-24 12:41:09 -05:00
|
|
|
}
|
|
|
|
]
|
|
|
|
|
2022-08-10 02:53:39 -05:00
|
|
|
export const ensureIsLocalChannel = [
|
2021-12-13 08:29:13 -06: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 08:25:20 -05:00
|
|
|
|
|
|
|
return next()
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
2022-08-10 02:53:39 -05: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 09:01:42 -05:00
|
|
|
query('withStats')
|
|
|
|
.optional()
|
|
|
|
.customSanitizer(toBooleanOrNull)
|
2022-08-17 07:27:04 -05:00
|
|
|
.custom(isBooleanValid).withMessage('Should have a valid stats flag boolean'),
|
2020-03-23 19:12:30 -05:00
|
|
|
|
|
|
|
(req: express.Request, res: express.Response, next: express.NextFunction) => {
|
|
|
|
if (areValidationErrors(req, res)) return
|
|
|
|
return next()
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
2022-08-10 02:53:39 -05:00
|
|
|
export const videoChannelsListValidator = [
|
2022-08-17 07:27:04 -05:00
|
|
|
query('search')
|
|
|
|
.optional()
|
|
|
|
.not().isEmpty(),
|
2021-06-17 09:02:38 -05:00
|
|
|
|
|
|
|
(req: express.Request, res: express.Response, next: express.NextFunction) => {
|
|
|
|
if (areValidationErrors(req, res)) return
|
|
|
|
|
|
|
|
return next()
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
2022-08-10 02:53:39 -05:00
|
|
|
export const videoChannelImportVideosValidator = [
|
2022-08-17 07:27:04 -05:00
|
|
|
body('externalChannelUrl')
|
|
|
|
.custom(isUrlValid),
|
2017-10-24 12:41:09 -05:00
|
|
|
|
2022-08-10 04:51:13 -05:00
|
|
|
body('videoChannelSyncId')
|
|
|
|
.optional()
|
2022-08-17 07:27:04 -05:00
|
|
|
.custom(isIdValid),
|
2022-08-10 04:51:13 -05:00
|
|
|
|
|
|
|
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
|
2022-08-10 02:53:39 -05:00
|
|
|
if (areValidationErrors(req, res)) return
|
|
|
|
|
2022-08-10 04:51:13 -05:00
|
|
|
const body: VideosImportInChannelCreate = req.body
|
|
|
|
|
2022-08-10 02:53:39 -05: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 04:51:13 -05:00
|
|
|
if (body.videoChannelSyncId && !await doesVideoChannelSyncIdExist(body.videoChannelSyncId, res)) return
|
|
|
|
|
2022-09-16 03:58:13 -05: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 02:53:39 -05:00
|
|
|
return next()
|
|
|
|
}
|
|
|
|
]
|
2017-10-24 12:41:09 -05:00
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2021-12-13 08:29:13 -06:00
|
|
|
async function checkVideoChannelIsNotTheLastOne (videoChannel: MChannelAccountDefault, res: express.Response) {
|
|
|
|
const count = await VideoChannelModel.countByAccount(videoChannel.Account.id)
|
2017-11-27 10:30:46 -06:00
|
|
|
|
|
|
|
if (count <= 1) {
|
2021-05-31 18:36:53 -05:00
|
|
|
res.fail({
|
|
|
|
status: HttpStatusCode.CONFLICT_409,
|
|
|
|
message: 'Cannot remove the last channel of this user'
|
|
|
|
})
|
2017-11-27 10:30:46 -06:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
return true
|
2017-10-24 12:41:09 -05:00
|
|
|
}
|