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

85 lines
2.2 KiB
TypeScript
Raw Normal View History

2017-06-05 19:53:49 +00:00
import * as config from 'config'
2017-05-22 18:58:25 +00:00
import { database as db } from './database'
2017-05-15 20:22:03 +00:00
import { CONFIG } from './constants'
// 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',
2017-02-16 18:19:56 +00:00
'storage.certs', 'storage.videos', 'storage.logs', 'storage.thumbnails', 'storage.previews',
'admin.email', 'signup.enabled', 'transcoding.enabled', 'transcoding.threads'
2016-10-13 19:48:55 +00:00
]
2016-03-16 21:29:27 +00:00
const miss = []
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
function checkFFmpeg (callback) {
const Ffmpeg = require('fluent-ffmpeg')
Ffmpeg.getAvailableCodecs(function (err, codecs) {
if (err) return callback(err)
2017-05-15 20:22:03 +00:00
if (CONFIG.TRANSCODING.ENABLED === false) return callback(null)
2017-05-05 15:15:21 +00:00
const canEncode = [ 'libx264' ]
canEncode.forEach(function (codec) {
if (codecs[codec] === undefined) {
return callback(new Error('Unknown codec ' + codec + ' in FFmpeg.'))
}
if (codecs[codec].canEncode !== true) {
return callback(new Error('Unavailable encode codec ' + codec + ' in FFmpeg'))
}
})
return callback(null)
})
}
function clientsExist (callback) {
db.OAuthClient.countTotal(function (err, totalClients) {
if (err) return callback(err)
return callback(null, totalClients !== 0)
})
}
function usersExist (callback) {
2016-12-11 20:50:51 +00:00
db.User.countTotal(function (err, totalUsers) {
if (err) return callback(err)
return callback(null, totalUsers !== 0)
})
}
2015-06-09 15:41:40 +00:00
// ---------------------------------------------------------------------------
2016-01-31 10:23:52 +00:00
2017-05-15 20:22:03 +00:00
export {
checkConfig,
checkFFmpeg,
checkMissedConfig,
clientsExist,
usersExist
}