X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Finitializers%2Fchecker-after-init.ts;h=f65798c420467abe55a2defb9d23dd59acfcbb6d;hb=92083e42289e19033425672dfbe2234aef03c6df;hp=9fefba7691a276a39fe48e7fece9ba4d73764a45;hpb=d7a25329f9e607894d29ab342b9cb66638b56dc0;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/initializers/checker-after-init.ts b/server/initializers/checker-after-init.ts index 9fefba769..f65798c42 100644 --- a/server/initializers/checker-after-init.ts +++ b/server/initializers/checker-after-init.ts @@ -1,22 +1,22 @@ -import * as config from 'config' -import { isProdInstance, isTestInstance } from '../helpers/core-utils' -import { UserModel } from '../models/account/user' -import { ApplicationModel } from '../models/application/application' -import { OAuthClientModel } from '../models/oauth/oauth-client' -import { parse } from 'url' -import { CONFIG } from './config' -import { logger } from '../helpers/logger' -import { getServerActor } from '../helpers/utils' +import config from 'config' +import { uniq } from 'lodash' +import { URL } from 'url' +import { getFFmpegVersion } from '@server/helpers/ffmpeg' +import { VideoRedundancyConfigFilter } from '@shared/models/redundancy/video-redundancy-config-filter.type' import { RecentlyAddedStrategy } from '../../shared/models/redundancy' +import { isProdInstance, isTestInstance, parseSemVersion } from '../helpers/core-utils' import { isArray } from '../helpers/custom-validators/misc' -import { uniq } from 'lodash' -import { Emailer } from '../lib/emailer' +import { logger } from '../helpers/logger' +import { ApplicationModel, getServerActor } from '../models/application/application' +import { OAuthClientModel } from '../models/oauth/oauth-client' +import { UserModel } from '../models/user/user' +import { CONFIG, isEmailEnabled } from './config' import { WEBSERVER } from './constants' async function checkActivityPubUrls () { const actor = await getServerActor() - const parsed = parse(actor.url) + const parsed = new URL(actor.url) if (WEBSERVER.HOST !== parsed.host) { const NODE_ENV = config.util.getEnv('NODE_ENV') const NODE_CONFIG_DIR = config.util.getEnv('NODE_CONFIG_DIR') @@ -31,8 +31,7 @@ async function checkActivityPubUrls () { } } -// Some checks on configuration files -// Return an error message, or null if everything is okay +// Some checks on configuration files or throw if there is an error function checkConfig () { // Moved configuration keys @@ -40,54 +39,124 @@ function checkConfig () { logger.warn('services.csp-logger configuration has been renamed to csp.report_uri. Please update your configuration file.') } - // Email verification - if (!Emailer.isEnabled()) { + checkEmailConfig() + checkNSFWPolicyConfig() + checkLocalRedundancyConfig() + checkRemoteRedundancyConfig() + checkStorageConfig() + checkTranscodingConfig() + checkBroadcastMessageConfig() + checkSearchConfig() + checkLiveConfig() + checkObjectStorageConfig() + checkVideoStudioConfig() +} + +// 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 +} + +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) + } +} + +// --------------------------------------------------------------------------- + +export { + checkConfig, + clientsExist, + checkFFmpegVersion, + usersExist, + applicationExist, + checkActivityPubUrls +} + +// --------------------------------------------------------------------------- + +function checkEmailConfig () { + if (!isEmailEnabled()) { if (CONFIG.SIGNUP.ENABLED && CONFIG.SIGNUP.REQUIRES_EMAIL_VERIFICATION) { - return 'Emailer is disabled but you require signup email verification.' + throw new Error('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.') } } +} - // NSFW policy +function checkNSFWPolicyConfig () { const defaultNSFWPolicy = CONFIG.INSTANCE.DEFAULT_NSFW_POLICY - { - const available = [ 'do_not_list', 'blur', 'display' ] - if (available.indexOf(defaultNSFWPolicy) === -1) { - return 'NSFW policy setting should be ' + available.join(' or ') + ' instead of ' + defaultNSFWPolicy - } + + const available = [ 'do_not_list', 'blur', 'display' ] + if (available.includes(defaultNSFWPolicy) === false) { + throw new Error('NSFW policy setting should be ' + available.join(' or ') + ' instead of ' + defaultNSFWPolicy) } +} - // Redundancies +function checkLocalRedundancyConfig () { const redundancyVideos = CONFIG.REDUNDANCY.VIDEOS.STRATEGIES + if (isArray(redundancyVideos)) { const available = [ 'most-views', 'trending', 'recently-added' ] + for (const r of redundancyVideos) { - if (available.indexOf(r.strategy) === -1) { - return 'Videos redundancy should have ' + available.join(' or ') + ' strategy instead of ' + r.strategy + if (available.includes(r.strategy) === false) { + throw new Error('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 + throw new Error('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' + throw new Error('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' + throw new Error('Min views in recently added strategy is not a number') } } else { - return 'Videos redundancy should be an array (you must uncomment lines containing - too)' + throw new Error('Videos redundancy should be an array (you must uncomment lines containing - too)') + } +} + +function checkRemoteRedundancyConfig () { + const acceptFrom = CONFIG.REMOTE_REDUNDANCY.VIDEOS.ACCEPT_FROM + const acceptFromValues = new Set([ 'nobody', 'anybody', 'followings' ]) + + if (acceptFromValues.has(acceptFrom) === false) { + throw new Error('remote_redundancy.videos.accept_from has an incorrect value') } +} +function checkStorageConfig () { // Check storage directory locations if (isProdInstance()) { const configStorage = config.get('storage') @@ -101,43 +170,98 @@ function checkConfig () { } } - // Transcoding + if (CONFIG.STORAGE.VIDEOS_DIR === CONFIG.STORAGE.REDUNDANCY_DIR) { + logger.warn('Redundancy directory should be different than the videos folder.') + } +} + +function checkTranscodingConfig () { 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.' + throw new Error('You need to enable at least WebTorrent transcoding or HLS transcoding.') + } + + if (CONFIG.TRANSCODING.CONCURRENCY <= 0) { + throw new Error('Transcoding concurrency should be > 0') } } - return null + if (CONFIG.IMPORT.VIDEOS.HTTP.ENABLED || CONFIG.IMPORT.VIDEOS.TORRENT.ENABLED) { + if (CONFIG.IMPORT.VIDEOS.CONCURRENCY <= 0) { + throw new Error('Video import concurrency should be > 0') + } + } } -// We get db by param to not import it in this file (import orders) -async function clientsExist () { - const totalClients = await OAuthClientModel.countTotal() +function checkBroadcastMessageConfig () { + if (CONFIG.BROADCAST_MESSAGE.ENABLED) { + const currentLevel = CONFIG.BROADCAST_MESSAGE.LEVEL + const available = [ 'info', 'warning', 'error' ] - return totalClients !== 0 + if (available.includes(currentLevel) === false) { + throw new Error('Broadcast message level should be ' + available.join(' or ') + ' instead of ' + currentLevel) + } + } } -// 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 +function checkSearchConfig () { + if (CONFIG.SEARCH.SEARCH_INDEX.ENABLED === true) { + if (CONFIG.SEARCH.REMOTE_URI.USERS === false) { + throw new Error('You cannot enable search index without enabling remote URI search for users.') + } + } } -// We get db by param to not import it in this file (import orders) -async function applicationExist () { - const totalApplication = await ApplicationModel.countTotal() +function checkLiveConfig () { + if (CONFIG.LIVE.ENABLED === true) { + if (CONFIG.LIVE.ALLOW_REPLAY === true && CONFIG.TRANSCODING.ENABLED === false) { + throw new Error('Live allow replay cannot be enabled if transcoding is not enabled.') + } - return totalApplication !== 0 + if (CONFIG.LIVE.RTMP.ENABLED === false && CONFIG.LIVE.RTMPS.ENABLED === false) { + throw new Error('You must enable at least RTMP or RTMPS') + } + + if (CONFIG.LIVE.RTMPS.ENABLED) { + if (!CONFIG.LIVE.RTMPS.KEY_FILE) { + throw new Error('You must specify a key file to enabled RTMPS') + } + + if (!CONFIG.LIVE.RTMPS.CERT_FILE) { + throw new Error('You must specify a cert file to enable RTMPS') + } + } + } } -// --------------------------------------------------------------------------- +function checkObjectStorageConfig () { + if (CONFIG.OBJECT_STORAGE.ENABLED === true) { -export { - checkConfig, - clientsExist, - usersExist, - applicationExist, - checkActivityPubUrls + if (!CONFIG.OBJECT_STORAGE.VIDEOS.BUCKET_NAME) { + throw new Error('videos_bucket should be set when object storage support is enabled.') + } + + if (!CONFIG.OBJECT_STORAGE.STREAMING_PLAYLISTS.BUCKET_NAME) { + throw new Error('streaming_playlists_bucket should be set when object storage support is enabled.') + } + + if ( + CONFIG.OBJECT_STORAGE.VIDEOS.BUCKET_NAME === CONFIG.OBJECT_STORAGE.STREAMING_PLAYLISTS.BUCKET_NAME && + CONFIG.OBJECT_STORAGE.VIDEOS.PREFIX === CONFIG.OBJECT_STORAGE.STREAMING_PLAYLISTS.PREFIX + ) { + if (CONFIG.OBJECT_STORAGE.VIDEOS.PREFIX === '') { + throw new Error('Object storage bucket prefixes should be set when the same bucket is used for both types of video.') + } + + throw new Error( + 'Object storage bucket prefixes should be set to different values when the same bucket is used for both types of video.' + ) + } + } +} + +function checkVideoStudioConfig () { + if (CONFIG.VIDEO_STUDIO.ENABLED === true && CONFIG.TRANSCODING.ENABLED === false) { + throw new Error('Video studio cannot be enabled if transcoding is disabled') + } }