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'
|
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
|
|
|
}
|
|
|
|
|
|
|
|
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',
|
2016-12-25 09:44:57 +01:00
|
|
|
'database.hostname', 'database.port', 'database.suffix', 'database.username', 'database.password',
|
2018-05-21 13:26:04 +02:00
|
|
|
'redis.hostname', 'redis.port', 'redis.auth', 'redis.db',
|
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',
|
|
|
|
'user.video_quota',
|
2018-01-30 13:27:07 +01:00
|
|
|
'cache.previews.size', 'admin.email', 'signup.enabled', 'signup.limit', 'transcoding.enabled', 'transcoding.threads',
|
2018-04-19 11:01:34 +02:00
|
|
|
'instance.name', 'instance.short_description', 'instance.description', 'instance.terms', 'instance.default_client_route',
|
2018-05-15 00:29:40 +02:00
|
|
|
'instance.default_nsfw_policy', 'instance.robots',
|
2018-05-10 12:26:47 +02:00
|
|
|
'services.twitter.username', 'services.twitter.whitelisted'
|
2016-10-13 21:48:55 +02:00
|
|
|
]
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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()
|
|
|
|
if (CONFIG.TRANSCODING.ENABLED === false) return undefined
|
|
|
|
|
|
|
|
const canEncode = [ 'libx264' ]
|
|
|
|
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')
|
|
|
|
}
|
|
|
|
}
|
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,
|
|
|
|
checkMissedConfig,
|
|
|
|
clientsExist,
|
2017-11-14 17:31:26 +01:00
|
|
|
usersExist,
|
|
|
|
applicationExist
|
2017-05-15 22:22:03 +02:00
|
|
|
}
|