2021-08-27 14:32:44 +02:00
|
|
|
import express from 'express'
|
2019-07-25 16:23:44 +02:00
|
|
|
import { body } from 'express-validator'
|
2023-07-31 14:34:36 +02:00
|
|
|
import { CustomConfig, HttpStatusCode } from '@peertube/peertube-models'
|
|
|
|
import { isIntOrNull } from '@server/helpers/custom-validators/misc.js'
|
|
|
|
import { CONFIG, isEmailEnabled } from '@server/initializers/config.js'
|
|
|
|
import { isThemeNameValid } from '../../helpers/custom-validators/plugins.js'
|
|
|
|
import { isUserNSFWPolicyValid, isUserVideoQuotaDailyValid, isUserVideoQuotaValid } from '../../helpers/custom-validators/users.js'
|
|
|
|
import { isThemeRegistered } from '../../lib/plugins/theme-utils.js'
|
|
|
|
import { areValidationErrors } from './shared/index.js'
|
2018-01-17 10:32:03 +01:00
|
|
|
|
|
|
|
const customConfigUpdateValidator = [
|
2022-08-17 14:27:04 +02:00
|
|
|
body('instance.name').exists(),
|
|
|
|
body('instance.shortDescription').exists(),
|
|
|
|
body('instance.description').exists(),
|
|
|
|
body('instance.terms').exists(),
|
|
|
|
body('instance.defaultNSFWPolicy').custom(isUserNSFWPolicyValid),
|
|
|
|
body('instance.defaultClientRoute').exists(),
|
|
|
|
body('instance.customizations.css').exists(),
|
|
|
|
body('instance.customizations.javascript').exists(),
|
|
|
|
|
|
|
|
body('services.twitter.username').exists(),
|
|
|
|
body('services.twitter.whitelisted').isBoolean(),
|
|
|
|
|
|
|
|
body('cache.previews.size').isInt(),
|
|
|
|
body('cache.captions.size').isInt(),
|
|
|
|
body('cache.torrents.size').isInt(),
|
2023-06-01 14:51:16 +02:00
|
|
|
body('cache.storyboards.size').isInt(),
|
2022-08-17 14:27:04 +02:00
|
|
|
|
|
|
|
body('signup.enabled').isBoolean(),
|
|
|
|
body('signup.limit').isInt(),
|
|
|
|
body('signup.requiresEmailVerification').isBoolean(),
|
2023-01-19 09:27:16 +01:00
|
|
|
body('signup.requiresApproval').isBoolean(),
|
2022-08-17 14:27:04 +02:00
|
|
|
body('signup.minimumAge').isInt(),
|
|
|
|
|
|
|
|
body('admin.email').isEmail(),
|
|
|
|
body('contactForm.enabled').isBoolean(),
|
|
|
|
|
2023-04-07 10:09:54 +02:00
|
|
|
body('user.history.videos.enabled').isBoolean(),
|
2022-08-17 14:27:04 +02:00
|
|
|
body('user.videoQuota').custom(isUserVideoQuotaValid),
|
|
|
|
body('user.videoQuotaDaily').custom(isUserVideoQuotaDailyValid),
|
|
|
|
|
|
|
|
body('videoChannels.maxPerUser').isInt(),
|
|
|
|
|
|
|
|
body('transcoding.enabled').isBoolean(),
|
|
|
|
body('transcoding.allowAdditionalExtensions').isBoolean(),
|
|
|
|
body('transcoding.threads').isInt(),
|
|
|
|
body('transcoding.concurrency').isInt({ min: 1 }),
|
|
|
|
body('transcoding.resolutions.0p').isBoolean(),
|
|
|
|
body('transcoding.resolutions.144p').isBoolean(),
|
|
|
|
body('transcoding.resolutions.240p').isBoolean(),
|
|
|
|
body('transcoding.resolutions.360p').isBoolean(),
|
|
|
|
body('transcoding.resolutions.480p').isBoolean(),
|
|
|
|
body('transcoding.resolutions.720p').isBoolean(),
|
|
|
|
body('transcoding.resolutions.1080p').isBoolean(),
|
|
|
|
body('transcoding.resolutions.1440p').isBoolean(),
|
|
|
|
body('transcoding.resolutions.2160p').isBoolean(),
|
2023-04-21 14:55:10 +02:00
|
|
|
body('transcoding.remoteRunners.enabled').isBoolean(),
|
2022-08-17 14:27:04 +02:00
|
|
|
|
|
|
|
body('transcoding.alwaysTranscodeOriginalResolution').isBoolean(),
|
|
|
|
|
2023-07-11 09:52:14 +02:00
|
|
|
body('transcoding.webVideos.enabled').isBoolean(),
|
2022-08-17 14:27:04 +02:00
|
|
|
body('transcoding.hls.enabled').isBoolean(),
|
|
|
|
|
|
|
|
body('videoStudio.enabled').isBoolean(),
|
2023-05-04 15:29:34 +02:00
|
|
|
body('videoStudio.remoteRunners.enabled').isBoolean(),
|
2022-08-17 14:27:04 +02:00
|
|
|
|
2023-07-19 16:02:49 +02:00
|
|
|
body('videoFile.update.enabled').isBoolean(),
|
|
|
|
|
2022-08-17 14:27:04 +02:00
|
|
|
body('import.videos.concurrency').isInt({ min: 0 }),
|
|
|
|
body('import.videos.http.enabled').isBoolean(),
|
|
|
|
body('import.videos.torrent.enabled').isBoolean(),
|
|
|
|
|
|
|
|
body('import.videoChannelSynchronization.enabled').isBoolean(),
|
2024-02-12 10:47:52 +01:00
|
|
|
body('import.users.enabled').isBoolean(),
|
|
|
|
|
|
|
|
body('export.users.enabled').isBoolean(),
|
|
|
|
body('export.users.maxUserVideoQuota').exists(),
|
|
|
|
body('export.users.exportExpiration').exists(),
|
2022-08-17 14:27:04 +02:00
|
|
|
|
|
|
|
body('trending.videos.algorithms.default').exists(),
|
|
|
|
body('trending.videos.algorithms.enabled').exists(),
|
|
|
|
|
|
|
|
body('followers.instance.enabled').isBoolean(),
|
|
|
|
body('followers.instance.manualApproval').isBoolean(),
|
|
|
|
|
|
|
|
body('theme.default').custom(v => isThemeNameValid(v) && isThemeRegistered(v)),
|
|
|
|
|
|
|
|
body('broadcastMessage.enabled').isBoolean(),
|
|
|
|
body('broadcastMessage.message').exists(),
|
|
|
|
body('broadcastMessage.level').exists(),
|
|
|
|
body('broadcastMessage.dismissable').isBoolean(),
|
|
|
|
|
|
|
|
body('live.enabled').isBoolean(),
|
|
|
|
body('live.allowReplay').isBoolean(),
|
|
|
|
body('live.maxDuration').isInt(),
|
|
|
|
body('live.maxInstanceLives').custom(isIntOrNull),
|
|
|
|
body('live.maxUserLives').custom(isIntOrNull),
|
|
|
|
body('live.transcoding.enabled').isBoolean(),
|
|
|
|
body('live.transcoding.threads').isInt(),
|
|
|
|
body('live.transcoding.resolutions.144p').isBoolean(),
|
|
|
|
body('live.transcoding.resolutions.240p').isBoolean(),
|
|
|
|
body('live.transcoding.resolutions.360p').isBoolean(),
|
|
|
|
body('live.transcoding.resolutions.480p').isBoolean(),
|
|
|
|
body('live.transcoding.resolutions.720p').isBoolean(),
|
|
|
|
body('live.transcoding.resolutions.1080p').isBoolean(),
|
|
|
|
body('live.transcoding.resolutions.1440p').isBoolean(),
|
|
|
|
body('live.transcoding.resolutions.2160p').isBoolean(),
|
|
|
|
body('live.transcoding.alwaysTranscodeOriginalResolution').isBoolean(),
|
2023-04-21 14:55:10 +02:00
|
|
|
body('live.transcoding.remoteRunners.enabled').isBoolean(),
|
2022-08-17 14:27:04 +02:00
|
|
|
|
|
|
|
body('search.remoteUri.users').isBoolean(),
|
|
|
|
body('search.remoteUri.anonymous').isBoolean(),
|
|
|
|
body('search.searchIndex.enabled').isBoolean(),
|
|
|
|
body('search.searchIndex.url').exists(),
|
|
|
|
body('search.searchIndex.disableLocalSearch').isBoolean(),
|
|
|
|
body('search.searchIndex.isDefaultSearch').isBoolean(),
|
2020-05-28 11:15:38 +02:00
|
|
|
|
2020-01-31 16:56:52 +01:00
|
|
|
(req: express.Request, res: express.Response, next: express.NextFunction) => {
|
2018-01-17 10:32:03 +01:00
|
|
|
if (areValidationErrors(req, res)) return
|
2020-09-25 16:19:35 +02:00
|
|
|
if (!checkInvalidConfigIfEmailDisabled(req.body, res)) return
|
|
|
|
if (!checkInvalidTranscodingConfig(req.body, res)) return
|
2022-08-10 09:53:39 +02:00
|
|
|
if (!checkInvalidSynchronizationConfig(req.body, res)) return
|
2020-09-25 16:19:35 +02:00
|
|
|
if (!checkInvalidLiveConfig(req.body, res)) return
|
2022-03-22 16:58:49 +01:00
|
|
|
if (!checkInvalidVideoStudioConfig(req.body, res)) return
|
2018-01-17 10:32:03 +01:00
|
|
|
|
|
|
|
return next()
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
2021-10-12 13:33:44 +02:00
|
|
|
function ensureConfigIsEditable (req: express.Request, res: express.Response, next: express.NextFunction) {
|
2021-10-14 11:35:43 +02:00
|
|
|
if (!CONFIG.WEBADMIN.CONFIGURATION.EDITION.ALLOWED) {
|
2021-10-12 13:33:44 +02:00
|
|
|
return res.fail({
|
|
|
|
status: HttpStatusCode.METHOD_NOT_ALLOWED_405,
|
|
|
|
message: 'Server configuration is static and cannot be edited'
|
|
|
|
})
|
|
|
|
}
|
2021-10-14 11:35:43 +02:00
|
|
|
|
2021-10-12 13:33:44 +02:00
|
|
|
return next()
|
|
|
|
}
|
|
|
|
|
2019-02-17 19:14:00 +01:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2018-01-17 10:32:03 +01:00
|
|
|
export {
|
2021-10-12 13:33:44 +02:00
|
|
|
customConfigUpdateValidator,
|
|
|
|
ensureConfigIsEditable
|
2018-01-17 10:32:03 +01:00
|
|
|
}
|
2019-02-17 19:14:00 +01:00
|
|
|
|
|
|
|
function checkInvalidConfigIfEmailDisabled (customConfig: CustomConfig, res: express.Response) {
|
2020-02-17 10:27:00 +01:00
|
|
|
if (isEmailEnabled()) return true
|
2019-02-17 19:14:00 +01:00
|
|
|
|
|
|
|
if (customConfig.signup.requiresEmailVerification === true) {
|
2023-07-27 16:41:35 +02:00
|
|
|
res.fail({ message: 'SMTP is not configured but you require signup email verification.' })
|
2019-02-17 19:14:00 +01:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
return true
|
|
|
|
}
|
2019-11-15 15:06:03 +01:00
|
|
|
|
|
|
|
function checkInvalidTranscodingConfig (customConfig: CustomConfig, res: express.Response) {
|
|
|
|
if (customConfig.transcoding.enabled === false) return true
|
|
|
|
|
2023-07-11 09:52:14 +02:00
|
|
|
if (customConfig.transcoding.webVideos.enabled === false && customConfig.transcoding.hls.enabled === false) {
|
|
|
|
res.fail({ message: 'You need to enable at least web_videos transcoding or hls transcoding' })
|
2019-11-15 15:06:03 +01:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
return true
|
|
|
|
}
|
2020-09-25 16:19:35 +02:00
|
|
|
|
2022-08-10 09:53:39 +02:00
|
|
|
function checkInvalidSynchronizationConfig (customConfig: CustomConfig, res: express.Response) {
|
|
|
|
if (customConfig.import.videoChannelSynchronization.enabled && !customConfig.import.videos.http.enabled) {
|
|
|
|
res.fail({ message: 'You need to enable HTTP video import in order to enable channel synchronization' })
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2020-09-25 16:19:35 +02:00
|
|
|
function checkInvalidLiveConfig (customConfig: CustomConfig, res: express.Response) {
|
|
|
|
if (customConfig.live.enabled === false) return true
|
|
|
|
|
|
|
|
if (customConfig.live.allowReplay === true && customConfig.transcoding.enabled === false) {
|
2021-06-01 01:36:53 +02:00
|
|
|
res.fail({ message: 'You cannot allow live replay if transcoding is not enabled' })
|
2020-09-25 16:19:35 +02:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
return true
|
|
|
|
}
|
2022-02-11 10:51:33 +01:00
|
|
|
|
2022-03-22 16:58:49 +01:00
|
|
|
function checkInvalidVideoStudioConfig (customConfig: CustomConfig, res: express.Response) {
|
|
|
|
if (customConfig.videoStudio.enabled === false) return true
|
2022-02-11 10:51:33 +01:00
|
|
|
|
2022-03-22 16:58:49 +01:00
|
|
|
if (customConfig.videoStudio.enabled === true && customConfig.transcoding.enabled === false) {
|
|
|
|
res.fail({ message: 'You cannot enable video studio if transcoding is not enabled' })
|
2022-02-11 10:51:33 +01:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
return true
|
|
|
|
}
|