2017-06-05 21:53:49 +02:00
|
|
|
import * as config from 'config'
|
2017-12-28 11:16:08 +01:00
|
|
|
import { promisify0 } from '../helpers/core-utils'
|
2017-12-12 17:53:50 +01:00
|
|
|
import { UserModel } from '../models/account/user'
|
|
|
|
import { ApplicationModel } from '../models/application/application'
|
|
|
|
import { OAuthClientModel } from '../models/oauth/oauth-client'
|
2018-06-21 18:29:28 +02:00
|
|
|
import { parse } from 'url'
|
|
|
|
import { CONFIG } from './constants'
|
|
|
|
import { logger } from '../helpers/logger'
|
|
|
|
import { getServerActor } from '../helpers/utils'
|
2018-09-11 16:27:07 +02:00
|
|
|
import { VideosRedundancy } from '../../shared/models/redundancy'
|
|
|
|
import { isArray } from '../helpers/custom-validators/misc'
|
|
|
|
import { uniq } from 'lodash'
|
2018-06-21 18:29:28 +02:00
|
|
|
|
|
|
|
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}` : ''
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
2016-02-07 11:23:23 +01:00
|
|
|
|
2016-11-01 19:46:07 +01:00
|
|
|
// Some checks on configuration files
|
2018-04-19 11:01:34 +02:00
|
|
|
// Return an error message, or null if everything is okay
|
2016-02-07 11:23:23 +01:00
|
|
|
function checkConfig () {
|
2018-04-19 11:01:34 +02:00
|
|
|
const defaultNSFWPolicy = config.get<string>('instance.default_nsfw_policy')
|
2016-11-01 19:46:07 +01:00
|
|
|
|
2018-04-19 11:01:34 +02:00
|
|
|
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
|
2016-11-01 19:46:07 +01:00
|
|
|
}
|
|
|
|
|
2018-09-11 16:27:07 +02:00
|
|
|
const redundancyVideos = config.get<VideosRedundancy[]>('redundancy.videos')
|
|
|
|
if (isArray(redundancyVideos)) {
|
|
|
|
for (const r of redundancyVideos) {
|
2018-09-14 09:57:21 +02:00
|
|
|
if ([ 'most-views', 'trending' ].indexOf(r.strategy) === -1) {
|
2018-09-11 16:27:07 +02: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) {
|
|
|
|
return 'Redundancy video entries should have uniq strategies'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-01 19:46:07 +01:00
|
|
|
return null
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check the config files
|
|
|
|
function checkMissedConfig () {
|
2018-04-17 11:14:32 +02:00
|
|
|
const required = [ 'listen.port', 'listen.hostname',
|
2016-10-23 19:41:17 +02:00
|
|
|
'webserver.https', 'webserver.hostname', 'webserver.port',
|
2018-03-29 10:58:24 +02:00
|
|
|
'trust_proxy',
|
2018-07-28 21:02:26 +02:00
|
|
|
'database.hostname', 'database.port', 'database.suffix', 'database.username', 'database.password', 'database.pool.max',
|
2018-03-23 11:39:06 +01:00
|
|
|
'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',
|
2018-08-28 09:01:35 +02:00
|
|
|
'user.video_quota', 'user.video_quota_daily',
|
2018-05-22 19:43:13 +02:00
|
|
|
'cache.previews.size', 'admin.email',
|
2018-08-31 09:18:19 +02:00
|
|
|
'signup.enabled', 'signup.limit', 'signup.requires_email_verification',
|
|
|
|
'signup.filters.cidr.whitelist', 'signup.filters.cidr.blacklist',
|
2018-05-22 19:43:13 +02:00
|
|
|
'transcoding.enabled', 'transcoding.threads',
|
2018-08-31 17:18:13 +02:00
|
|
|
'import.videos.http.enabled', 'import.videos.torrent.enabled',
|
2018-09-04 15:31:13 +02:00
|
|
|
'trending.videos.interval_days',
|
2018-04-19 11:01:34 +02:00
|
|
|
'instance.name', 'instance.short_description', 'instance.description', 'instance.terms', 'instance.default_client_route',
|
2018-09-06 14:23:46 +02:00
|
|
|
'instance.default_nsfw_policy', 'instance.robots', 'instance.securitytxt',
|
2018-05-10 12:26:47 +02:00
|
|
|
'services.twitter.username', 'services.twitter.whitelisted'
|
2016-10-13 21:48:55 +02:00
|
|
|
]
|
2018-05-14 17:51:15 +02:00
|
|
|
const requiredAlternatives = [
|
|
|
|
[ // set
|
|
|
|
['redis.hostname', 'redis.port'], // alternative
|
|
|
|
['redis.socket']
|
|
|
|
]
|
|
|
|
]
|
2017-06-10 22:15:25 +02:00
|
|
|
const miss: string[] = []
|
2016-02-07 11:23:23 +01:00
|
|
|
|
2016-03-16 22:29:27 +01:00
|
|
|
for (const key of required) {
|
2016-02-07 11:23:23 +01:00
|
|
|
if (!config.has(key)) {
|
|
|
|
miss.push(key)
|
2015-06-09 17:41:40 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-14 17:51:15 +02: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)))
|
|
|
|
|
2016-02-07 11:23:23 +01:00
|
|
|
return miss
|
|
|
|
}
|
|
|
|
|
2017-05-05 17:15:21 +02:00
|
|
|
// Check the available codecs
|
2017-08-26 09:17:20 +02:00
|
|
|
// We get CONFIG by param to not import it in this file (import orders)
|
2017-10-25 16:03:33 +02:00
|
|
|
async function checkFFmpeg (CONFIG: { TRANSCODING: { ENABLED: boolean } }) {
|
2017-05-05 17:15:21 +02:00
|
|
|
const Ffmpeg = require('fluent-ffmpeg')
|
2017-07-05 13:26:25 +02:00
|
|
|
const getAvailableCodecsPromise = promisify0(Ffmpeg.getAvailableCodecs)
|
2017-10-25 16:03:33 +02:00
|
|
|
const codecs = await getAvailableCodecsPromise()
|
2018-05-21 13:14:29 +02:00
|
|
|
const canEncode = [ 'libx264' ]
|
|
|
|
|
2017-10-25 16:03:33 +02:00
|
|
|
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')
|
|
|
|
}
|
|
|
|
}
|
2018-05-21 13:14:29 +02:00
|
|
|
|
|
|
|
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 17:15:21 +02:00
|
|
|
}
|
|
|
|
|
2017-08-26 09:17:20 +02:00
|
|
|
// We get db by param to not import it in this file (import orders)
|
2017-12-12 17:53:50 +01:00
|
|
|
async function clientsExist () {
|
|
|
|
const totalClients = await OAuthClientModel.countTotal()
|
2017-10-25 16:03:33 +02:00
|
|
|
|
|
|
|
return totalClients !== 0
|
2016-03-21 21:11:26 +01:00
|
|
|
}
|
|
|
|
|
2017-08-26 09:17:20 +02:00
|
|
|
// We get db by param to not import it in this file (import orders)
|
2017-12-12 17:53:50 +01:00
|
|
|
async function usersExist () {
|
|
|
|
const totalUsers = await UserModel.countTotal()
|
2017-10-25 16:03:33 +02:00
|
|
|
|
|
|
|
return totalUsers !== 0
|
2016-02-07 11:23:23 +01:00
|
|
|
}
|
2015-06-09 17:41:40 +02:00
|
|
|
|
2017-11-14 17:31:26 +01:00
|
|
|
// We get db by param to not import it in this file (import orders)
|
2017-12-12 17:53:50 +01:00
|
|
|
async function applicationExist () {
|
|
|
|
const totalApplication = await ApplicationModel.countTotal()
|
2017-11-14 17:31:26 +01:00
|
|
|
|
|
|
|
return totalApplication !== 0
|
|
|
|
}
|
|
|
|
|
2016-02-07 11:23:23 +01:00
|
|
|
// ---------------------------------------------------------------------------
|
2016-01-31 11:23:52 +01:00
|
|
|
|
2017-05-15 22:22:03 +02:00
|
|
|
export {
|
|
|
|
checkConfig,
|
|
|
|
checkFFmpeg,
|
2018-05-21 13:14:29 +02:00
|
|
|
checkFFmpegEncoders,
|
2017-05-15 22:22:03 +02:00
|
|
|
checkMissedConfig,
|
|
|
|
clientsExist,
|
2017-11-14 17:31:26 +01:00
|
|
|
usersExist,
|
2018-06-21 18:29:28 +02:00
|
|
|
applicationExist,
|
|
|
|
checkActivityPubUrls
|
2017-05-15 22:22:03 +02:00
|
|
|
}
|