X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Finitializers%2Fchecker-after-init.ts;h=c0a6c41ab3508e0fed97599221de1052bcd49297;hb=221d876fa7a9e92a5a6721b68c31d015b325393f;hp=2b00e2047e9770c57f8c896b59df94f0d6fe035b;hpb=9129b7694d577322327ee79e9b9aa64deee92765;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/initializers/checker-after-init.ts b/server/initializers/checker-after-init.ts index 2b00e2047..c0a6c41ab 100644 --- a/server/initializers/checker-after-init.ts +++ b/server/initializers/checker-after-init.ts @@ -1,24 +1,25 @@ -import * as config from 'config' -import { isProdInstance, isTestInstance } from '../helpers/core-utils' -import { UserModel } from '../models/account/user' -import { getServerActor, ApplicationModel } from '../models/application/application' -import { OAuthClientModel } from '../models/oauth/oauth-client' +import { util, has, get } from 'config' +import { uniq } from 'lodash' import { URL } from 'url' -import { CONFIG, isEmailEnabled } from './config' -import { logger } from '../helpers/logger' +import { getFFmpegVersion } from '@server/helpers/ffmpeg-utils' +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 { logger } from '../helpers/logger' +import { UserModel } from '../models/user/user' +import { ApplicationModel, getServerActor } from '../models/application/application' +import { OAuthClientModel } from '../models/oauth/oauth-client' +import { CONFIG, isEmailEnabled } from './config' import { WEBSERVER } from './constants' -import { VideoRedundancyConfigFilter } from '@shared/models/redundancy/video-redundancy-config-filter.type' async function checkActivityPubUrls () { const actor = await getServerActor() 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') + const NODE_ENV = util.getEnv('NODE_ENV') + const NODE_CONFIG_DIR = util.getEnv('NODE_CONFIG_DIR') logger.warn( 'It seems PeerTube was started (and created some data) with another domain name. ' + @@ -35,7 +36,7 @@ async function checkActivityPubUrls () { function checkConfig () { // Moved configuration keys - if (config.has('services.csp-logger')) { + if (has('services.csp-logger')) { logger.warn('services.csp-logger configuration has been renamed to csp.report_uri. Please update your configuration file.') } @@ -96,7 +97,7 @@ function checkConfig () { // Check storage directory locations if (isProdInstance()) { - const configStorage = config.get('storage') + const configStorage = get('storage') for (const key of Object.keys(configStorage)) { if (configStorage[key].startsWith('storage/')) { logger.warn( @@ -152,6 +153,29 @@ function checkConfig () { } } + // Object storage + if (CONFIG.OBJECT_STORAGE.ENABLED === true) { + + if (!CONFIG.OBJECT_STORAGE.VIDEOS.BUCKET_NAME) { + return 'videos_bucket should be set when object storage support is enabled.' + } + + if (!CONFIG.OBJECT_STORAGE.STREAMING_PLAYLISTS.BUCKET_NAME) { + return '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 === '') { + return 'Object storage bucket prefixes should be set when the same bucket is used for both types of video.' + } else { + return 'Object storage bucket prefixes should be set to different values when the same bucket is used for both types of video.' + } + } + } + return null } @@ -176,11 +200,21 @@ async function applicationExist () { 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