2018-09-24 07:07:33 -04:00
|
|
|
import * as config from 'config'
|
2021-03-11 03:51:08 -05:00
|
|
|
import { uniq } from 'lodash'
|
2020-01-31 10:56:52 -05:00
|
|
|
import { URL } from 'url'
|
2021-03-11 03:51:08 -05:00
|
|
|
import { getFFmpegVersion } from '@server/helpers/ffmpeg-utils'
|
|
|
|
import { VideoRedundancyConfigFilter } from '@shared/models/redundancy/video-redundancy-config-filter.type'
|
2018-10-01 07:29:38 -04:00
|
|
|
import { RecentlyAddedStrategy } from '../../shared/models/redundancy'
|
2021-03-11 03:51:08 -05:00
|
|
|
import { isProdInstance, isTestInstance, parseSemVersion } from '../helpers/core-utils'
|
2018-09-24 07:07:33 -04:00
|
|
|
import { isArray } from '../helpers/custom-validators/misc'
|
2021-03-11 03:51:08 -05:00
|
|
|
import { logger } from '../helpers/logger'
|
2021-05-11 05:15:29 -04:00
|
|
|
import { UserModel } from '../models/user/user'
|
2021-03-11 03:51:08 -05:00
|
|
|
import { ApplicationModel, getServerActor } from '../models/application/application'
|
|
|
|
import { OAuthClientModel } from '../models/oauth/oauth-client'
|
|
|
|
import { CONFIG, isEmailEnabled } from './config'
|
2019-04-11 05:33:44 -04:00
|
|
|
import { WEBSERVER } from './constants'
|
2018-09-24 07:07:33 -04:00
|
|
|
|
|
|
|
async function checkActivityPubUrls () {
|
|
|
|
const actor = await getServerActor()
|
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
const parsed = new URL(actor.url)
|
2019-04-11 05:33:44 -04:00
|
|
|
if (WEBSERVER.HOST !== parsed.host) {
|
2018-09-24 07:07:33 -04:00
|
|
|
const NODE_ENV = config.util.getEnv('NODE_ENV')
|
|
|
|
const NODE_CONFIG_DIR = config.util.getEnv('NODE_CONFIG_DIR')
|
|
|
|
|
|
|
|
logger.warn(
|
|
|
|
'It seems PeerTube was started (and created some data) with another domain name. ' +
|
|
|
|
'This means you will not be able to federate! ' +
|
|
|
|
'Please use %s %s npm run update-host to fix this.',
|
|
|
|
NODE_CONFIG_DIR ? `NODE_CONFIG_DIR=${NODE_CONFIG_DIR}` : '',
|
|
|
|
NODE_ENV ? `NODE_ENV=${NODE_ENV}` : ''
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Some checks on configuration files
|
|
|
|
// Return an error message, or null if everything is okay
|
|
|
|
function checkConfig () {
|
2019-01-10 05:12:41 -05:00
|
|
|
|
2019-02-21 10:27:32 -05:00
|
|
|
// Moved configuration keys
|
|
|
|
if (config.has('services.csp-logger')) {
|
|
|
|
logger.warn('services.csp-logger configuration has been renamed to csp.report_uri. Please update your configuration file.')
|
|
|
|
}
|
|
|
|
|
|
|
|
// Email verification
|
2020-02-17 04:27:00 -05:00
|
|
|
if (!isEmailEnabled()) {
|
2019-01-10 05:12:41 -05:00
|
|
|
if (CONFIG.SIGNUP.ENABLED && CONFIG.SIGNUP.REQUIRES_EMAIL_VERIFICATION) {
|
|
|
|
return 'Emailer is disabled but you require signup email verification.'
|
|
|
|
}
|
|
|
|
|
|
|
|
if (CONFIG.CONTACT_FORM.ENABLED) {
|
|
|
|
logger.warn('Emailer is disabled so the contact form will not work.')
|
|
|
|
}
|
|
|
|
}
|
2018-09-24 07:07:33 -04:00
|
|
|
|
|
|
|
// NSFW policy
|
2019-01-10 05:12:41 -05:00
|
|
|
const defaultNSFWPolicy = CONFIG.INSTANCE.DEFAULT_NSFW_POLICY
|
2018-09-24 07:07:33 -04:00
|
|
|
{
|
|
|
|
const available = [ 'do_not_list', 'blur', 'display' ]
|
2020-02-28 10:03:39 -05:00
|
|
|
if (available.includes(defaultNSFWPolicy) === false) {
|
2018-09-24 07:07:33 -04:00
|
|
|
return 'NSFW policy setting should be ' + available.join(' or ') + ' instead of ' + defaultNSFWPolicy
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Redundancies
|
|
|
|
const redundancyVideos = CONFIG.REDUNDANCY.VIDEOS.STRATEGIES
|
|
|
|
if (isArray(redundancyVideos)) {
|
|
|
|
const available = [ 'most-views', 'trending', 'recently-added' ]
|
|
|
|
for (const r of redundancyVideos) {
|
2020-02-28 10:03:39 -05:00
|
|
|
if (available.includes(r.strategy) === false) {
|
2018-09-24 07:07:33 -04:00
|
|
|
return 'Videos redundancy should have ' + available.join(' or ') + ' strategy instead of ' + r.strategy
|
|
|
|
}
|
|
|
|
|
|
|
|
// Lifetime should not be < 10 hours
|
|
|
|
if (!isTestInstance() && r.minLifetime < 1000 * 3600 * 10) {
|
|
|
|
return 'Video redundancy minimum lifetime should be >= 10 hours for strategy ' + r.strategy
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const filtered = uniq(redundancyVideos.map(r => r.strategy))
|
|
|
|
if (filtered.length !== redundancyVideos.length) {
|
|
|
|
return 'Redundancy video entries should have unique strategies'
|
|
|
|
}
|
|
|
|
|
|
|
|
const recentlyAddedStrategy = redundancyVideos.find(r => r.strategy === 'recently-added') as RecentlyAddedStrategy
|
|
|
|
if (recentlyAddedStrategy && isNaN(recentlyAddedStrategy.minViews)) {
|
|
|
|
return 'Min views in recently added strategy is not a number'
|
|
|
|
}
|
2019-03-19 11:33:40 -04:00
|
|
|
} else {
|
|
|
|
return 'Videos redundancy should be an array (you must uncomment lines containing - too)'
|
2018-09-24 07:07:33 -04:00
|
|
|
}
|
|
|
|
|
2020-04-07 09:27:41 -04:00
|
|
|
// Remote redundancies
|
|
|
|
const acceptFrom = CONFIG.REMOTE_REDUNDANCY.VIDEOS.ACCEPT_FROM
|
|
|
|
const acceptFromValues = new Set<VideoRedundancyConfigFilter>([ 'nobody', 'anybody', 'followings' ])
|
|
|
|
if (acceptFromValues.has(acceptFrom) === false) {
|
|
|
|
return 'remote_redundancy.videos.accept_from has an incorrect value'
|
|
|
|
}
|
|
|
|
|
2019-01-10 05:12:41 -05:00
|
|
|
// Check storage directory locations
|
2018-09-24 07:07:33 -04:00
|
|
|
if (isProdInstance()) {
|
|
|
|
const configStorage = config.get('storage')
|
|
|
|
for (const key of Object.keys(configStorage)) {
|
|
|
|
if (configStorage[key].startsWith('storage/')) {
|
|
|
|
logger.warn(
|
|
|
|
'Directory of %s should not be in the production directory of PeerTube. Please check your production configuration file.',
|
|
|
|
key
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-28 05:15:38 -04:00
|
|
|
if (CONFIG.STORAGE.VIDEOS_DIR === CONFIG.STORAGE.REDUNDANCY_DIR) {
|
|
|
|
logger.warn('Redundancy directory should be different than the videos folder.')
|
|
|
|
}
|
|
|
|
|
2019-11-15 09:06:03 -05:00
|
|
|
// Transcoding
|
|
|
|
if (CONFIG.TRANSCODING.ENABLED) {
|
|
|
|
if (CONFIG.TRANSCODING.WEBTORRENT.ENABLED === false && CONFIG.TRANSCODING.HLS.ENABLED === false) {
|
|
|
|
return 'You need to enable at least WebTorrent transcoding or HLS transcoding.'
|
|
|
|
}
|
2021-02-08 04:51:10 -05:00
|
|
|
|
|
|
|
if (CONFIG.TRANSCODING.CONCURRENCY <= 0) {
|
|
|
|
return 'Transcoding concurrency should be > 0'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (CONFIG.IMPORT.VIDEOS.HTTP.ENABLED || CONFIG.IMPORT.VIDEOS.TORRENT.ENABLED) {
|
|
|
|
if (CONFIG.IMPORT.VIDEOS.CONCURRENCY <= 0) {
|
|
|
|
return 'Video import concurrency should be > 0'
|
|
|
|
}
|
2019-11-15 09:06:03 -05:00
|
|
|
}
|
|
|
|
|
2020-05-28 05:15:38 -04:00
|
|
|
// Broadcast message
|
|
|
|
if (CONFIG.BROADCAST_MESSAGE.ENABLED) {
|
|
|
|
const currentLevel = CONFIG.BROADCAST_MESSAGE.LEVEL
|
2021-05-25 04:08:29 -04:00
|
|
|
const available = [ 'info', 'warning', 'error' ]
|
2020-05-28 05:15:38 -04:00
|
|
|
|
|
|
|
if (available.includes(currentLevel) === false) {
|
|
|
|
return 'Broadcast message level should be ' + available.join(' or ') + ' instead of ' + currentLevel
|
|
|
|
}
|
2019-12-10 08:31:08 -05:00
|
|
|
}
|
|
|
|
|
2020-05-29 10:16:24 -04:00
|
|
|
// Search index
|
|
|
|
if (CONFIG.SEARCH.SEARCH_INDEX.ENABLED === true) {
|
|
|
|
if (CONFIG.SEARCH.REMOTE_URI.USERS === false) {
|
|
|
|
return 'You cannot enable search index without enabling remote URI search for users.'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-25 10:19:35 -04:00
|
|
|
// Live
|
|
|
|
if (CONFIG.LIVE.ENABLED === true) {
|
|
|
|
if (CONFIG.LIVE.ALLOW_REPLAY === true && CONFIG.TRANSCODING.ENABLED === false) {
|
|
|
|
return 'Live allow replay cannot be enabled if transcoding is not enabled.'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-24 07:07:33 -04:00
|
|
|
return null
|
|
|
|
}
|
|
|
|
|
|
|
|
// We get db by param to not import it in this file (import orders)
|
|
|
|
async function clientsExist () {
|
|
|
|
const totalClients = await OAuthClientModel.countTotal()
|
|
|
|
|
|
|
|
return totalClients !== 0
|
|
|
|
}
|
|
|
|
|
|
|
|
// We get db by param to not import it in this file (import orders)
|
|
|
|
async function usersExist () {
|
|
|
|
const totalUsers = await UserModel.countTotal()
|
|
|
|
|
|
|
|
return totalUsers !== 0
|
|
|
|
}
|
|
|
|
|
|
|
|
// We get db by param to not import it in this file (import orders)
|
|
|
|
async function applicationExist () {
|
|
|
|
const totalApplication = await ApplicationModel.countTotal()
|
|
|
|
|
|
|
|
return totalApplication !== 0
|
|
|
|
}
|
|
|
|
|
2021-03-11 03:51:08 -05:00
|
|
|
async function checkFFmpegVersion () {
|
|
|
|
const version = await getFFmpegVersion()
|
|
|
|
const { major, minor } = parseSemVersion(version)
|
|
|
|
|
|
|
|
if (major < 4 || (major === 4 && minor < 1)) {
|
|
|
|
logger.warn('Your ffmpeg version (%s) is outdated. PeerTube supports ffmpeg >= 4.1. Please upgrade.', version)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-24 07:07:33 -04:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
|
|
|
checkConfig,
|
|
|
|
clientsExist,
|
2021-03-11 03:51:08 -05:00
|
|
|
checkFFmpegVersion,
|
2018-09-24 07:07:33 -04:00
|
|
|
usersExist,
|
|
|
|
applicationExist,
|
|
|
|
checkActivityPubUrls
|
|
|
|
}
|