1
0
Fork 0
peertube/server/initializers/checker.ts

199 lines
6.9 KiB
TypeScript
Raw Normal View History

2017-06-05 19:53:49 +00:00
import * as config from 'config'
import { promisify0, isProdInstance } from '../helpers/core-utils'
2017-12-12 16:53:50 +00:00
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 './constants'
import { logger } from '../helpers/logger'
import { getServerActor } from '../helpers/utils'
2018-09-14 09:05:38 +00:00
import { RecentlyAddedStrategy, VideosRedundancy } from '../../shared/models/redundancy'
2018-09-11 14:27:07 +00:00
import { isArray } from '../helpers/custom-validators/misc'
import { uniq } from 'lodash'
async function checkActivityPubUrls () {
const actor = await getServerActor()
const parsed = parse(actor.url)
if (CONFIG.WEBSERVER.HOST !== parsed.host) {
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 () {
const defaultNSFWPolicy = config.get<string>('instance.default_nsfw_policy')
2018-09-14 09:05:38 +00:00
// NSFW policy
if ([ 'do_not_list', 'blur', 'display' ].indexOf(defaultNSFWPolicy) === -1) {
return 'NSFW policy setting should be "do_not_list" or "blur" or "display" instead of ' + defaultNSFWPolicy
}
2018-09-14 09:05:38 +00:00
// Redundancies
const redundancyVideos = config.get<VideosRedundancy[]>('redundancy.videos.strategies')
2018-09-11 14:27:07 +00:00
if (isArray(redundancyVideos)) {
for (const r of redundancyVideos) {
2018-09-14 09:05:38 +00:00
if ([ 'most-views', 'trending', 'recently-added' ].indexOf(r.strategy) === -1) {
2018-09-11 14:27:07 +00:00
return 'Redundancy video entries should have "most-views" strategy instead of ' + r.strategy
}
}
const filtered = uniq(redundancyVideos.map(r => r.strategy))
if (filtered.length !== redundancyVideos.length) {
2018-09-14 09:05:38 +00:00
return 'Redundancy video entries should have unique strategies'
2018-09-11 14:27:07 +00:00
}
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'
}
2018-09-14 09:05:38 +00: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
)
}
}
}
return null
}
// Check the config files
function checkMissedConfig () {
const required = [ 'listen.port', 'listen.hostname',
'webserver.https', 'webserver.hostname', 'webserver.port',
2018-03-29 08:58:24 +00:00
'trust_proxy',
2018-07-28 19:02:26 +00:00
'database.hostname', 'database.port', 'database.suffix', 'database.username', 'database.password', 'database.pool.max',
'smtp.hostname', 'smtp.port', 'smtp.username', 'smtp.password', 'smtp.tls', 'smtp.from_address',
'storage.avatars', 'storage.videos', 'storage.logs', 'storage.previews', 'storage.thumbnails', 'storage.torrents', 'storage.cache',
'log.level',
'user.video_quota', 'user.video_quota_daily',
'cache.previews.size', 'admin.email',
'signup.enabled', 'signup.limit', 'signup.requires_email_verification',
'signup.filters.cidr.whitelist', 'signup.filters.cidr.blacklist',
'redundancy.videos.strategies', 'redundancy.videos.check_interval',
'transcoding.enabled', 'transcoding.threads',
2018-08-31 15:18:13 +00:00
'import.videos.http.enabled', 'import.videos.torrent.enabled',
'trending.videos.interval_days',
'instance.name', 'instance.short_description', 'instance.description', 'instance.terms', 'instance.default_client_route',
'instance.default_nsfw_policy', 'instance.robots', 'instance.securitytxt',
'services.twitter.username', 'services.twitter.whitelisted'
2016-10-13 19:48:55 +00:00
]
2018-05-14 15:51:15 +00:00
const requiredAlternatives = [
[ // set
['redis.hostname', 'redis.port'], // alternative
['redis.socket']
]
]
2017-06-10 20:15:25 +00:00
const miss: string[] = []
2016-03-16 21:29:27 +00:00
for (const key of required) {
if (!config.has(key)) {
miss.push(key)
2015-06-09 15:41:40 +00:00
}
}
2018-05-14 15:51:15 +00:00
const missingAlternatives = requiredAlternatives.filter(
set => !set.find(alternative => !alternative.find(key => !config.has(key)))
)
missingAlternatives
.forEach(set => set[0].forEach(key => miss.push(key)))
return miss
}
2017-05-05 15:15:21 +00:00
// Check the available codecs
2017-08-26 07:17:20 +00:00
// We get CONFIG by param to not import it in this file (import orders)
async function checkFFmpeg (CONFIG: { TRANSCODING: { ENABLED: boolean } }) {
2017-05-05 15:15:21 +00:00
const Ffmpeg = require('fluent-ffmpeg')
const getAvailableCodecsPromise = promisify0(Ffmpeg.getAvailableCodecs)
const codecs = await getAvailableCodecsPromise()
const canEncode = [ 'libx264' ]
if (CONFIG.TRANSCODING.ENABLED === false) return undefined
for (const codec of canEncode) {
if (codecs[codec] === undefined) {
throw new Error('Unknown codec ' + codec + ' in FFmpeg.')
}
if (codecs[codec].canEncode !== true) {
throw new Error('Unavailable encode codec ' + codec + ' in FFmpeg')
}
}
checkFFmpegEncoders()
}
// Optional encoders, if present, can be used to improve transcoding
// Here we ask ffmpeg if it detects their presence on the system, so that we can later use them
let supportedOptionalEncoders: Map<string, boolean>
async function checkFFmpegEncoders (): Promise<Map<string, boolean>> {
if (supportedOptionalEncoders !== undefined) {
return supportedOptionalEncoders
}
const Ffmpeg = require('fluent-ffmpeg')
const getAvailableEncodersPromise = promisify0(Ffmpeg.getAvailableEncoders)
const encoders = await getAvailableEncodersPromise()
const optionalEncoders = [ 'libfdk_aac' ]
supportedOptionalEncoders = new Map<string, boolean>()
for (const encoder of optionalEncoders) {
supportedOptionalEncoders.set(encoder,
encoders[encoder] !== undefined
)
}
2017-05-05 15:15:21 +00:00
}
2017-08-26 07:17:20 +00:00
// We get db by param to not import it in this file (import orders)
2017-12-12 16:53:50 +00:00
async function clientsExist () {
const totalClients = await OAuthClientModel.countTotal()
return totalClients !== 0
}
2017-08-26 07:17:20 +00:00
// We get db by param to not import it in this file (import orders)
2017-12-12 16:53:50 +00:00
async function usersExist () {
const totalUsers = await UserModel.countTotal()
return totalUsers !== 0
}
2015-06-09 15:41:40 +00:00
2017-11-14 16:31:26 +00:00
// We get db by param to not import it in this file (import orders)
2017-12-12 16:53:50 +00:00
async function applicationExist () {
const totalApplication = await ApplicationModel.countTotal()
2017-11-14 16:31:26 +00:00
return totalApplication !== 0
}
// ---------------------------------------------------------------------------
2016-01-31 10:23:52 +00:00
2017-05-15 20:22:03 +00:00
export {
checkConfig,
checkFFmpeg,
checkFFmpegEncoders,
2017-05-15 20:22:03 +00:00
checkMissedConfig,
clientsExist,
2017-11-14 16:31:26 +00:00
usersExist,
applicationExist,
checkActivityPubUrls
2017-05-15 20:22:03 +00:00
}