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

92 lines
2.9 KiB
TypeScript
Raw Normal View History

2017-06-05 19:53:49 +00:00
import * as config from 'config'
2017-12-28 10:16:08 +00:00
import { promisify0 } 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'
// Some checks on configuration files
function checkConfig () {
if (config.has('webserver.host')) {
let errorMessage = '`host` config key was renamed to `hostname` but it seems you still have a `host` key in your configuration files!'
errorMessage += ' Please ensure to rename your `host` configuration to `hostname`.'
return errorMessage
}
return null
}
// Check the config files
function checkMissedConfig () {
2016-03-16 21:29:27 +00:00
const required = [ 'listen.port',
'webserver.https', 'webserver.hostname', 'webserver.port',
2016-12-25 08:44:57 +00:00
'database.hostname', 'database.port', 'database.suffix', 'database.username', 'database.password',
2018-01-19 12:58:13 +00:00
'storage.videos', 'storage.logs', 'storage.thumbnails', 'storage.previews', 'storage.torrents', 'storage.cache', 'log.level',
2018-01-30 12:27:07 +00:00
'cache.previews.size', 'admin.email', 'signup.enabled', 'signup.limit', 'transcoding.enabled', 'transcoding.threads',
'user.video_quota', 'smtp.hostname', 'smtp.port', 'smtp.username', 'smtp.password', 'smtp.tls', 'smtp.from_address',
'instance.name', 'instance.description', 'instance.terms'
2016-10-13 19:48:55 +00:00
]
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
}
}
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()
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 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,
checkMissedConfig,
clientsExist,
2017-11-14 16:31:26 +00:00
usersExist,
applicationExist
2017-05-15 20:22:03 +00:00
}