2017-06-05 21:53:49 +02:00
|
|
|
import * as config from 'config'
|
2016-02-07 11:23:23 +01:00
|
|
|
|
2017-05-22 20:58:25 +02:00
|
|
|
import { database as db } from './database'
|
2017-05-15 22:22:03 +02:00
|
|
|
import { CONFIG } from './constants'
|
2016-02-07 11:23:23 +01:00
|
|
|
|
2016-11-01 19:46:07 +01:00
|
|
|
// Some checks on configuration files
|
2016-02-07 11:23:23 +01:00
|
|
|
function checkConfig () {
|
2016-11-01 19:46:07 +01:00
|
|
|
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 22:29:27 +01:00
|
|
|
const required = [ 'listen.port',
|
2016-10-23 19:41:17 +02:00
|
|
|
'webserver.https', 'webserver.hostname', 'webserver.port',
|
2016-12-25 09:44:57 +01:00
|
|
|
'database.hostname', 'database.port', 'database.suffix', 'database.username', 'database.password',
|
2017-02-16 19:19:56 +01:00
|
|
|
'storage.certs', 'storage.videos', 'storage.logs', 'storage.thumbnails', 'storage.previews',
|
2017-05-02 22:02:27 +02:00
|
|
|
'admin.email', 'signup.enabled', 'transcoding.enabled', 'transcoding.threads'
|
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-06-10 22:15:25 +02:00
|
|
|
function checkFFmpeg (callback: (err: Error) => void) {
|
2017-05-05 17:15:21 +02:00
|
|
|
const Ffmpeg = require('fluent-ffmpeg')
|
|
|
|
|
|
|
|
Ffmpeg.getAvailableCodecs(function (err, codecs) {
|
|
|
|
if (err) return callback(err)
|
2017-05-15 22:22:03 +02:00
|
|
|
if (CONFIG.TRANSCODING.ENABLED === false) return callback(null)
|
2017-05-05 17:15:21 +02: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)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2017-06-10 22:15:25 +02:00
|
|
|
function clientsExist (callback: (err: Error, clientsExist?: boolean) => void) {
|
2016-12-29 10:33:36 +01:00
|
|
|
db.OAuthClient.countTotal(function (err, totalClients) {
|
2016-03-21 21:11:26 +01:00
|
|
|
if (err) return callback(err)
|
2016-02-07 11:23:23 +01:00
|
|
|
|
2016-12-29 10:33:36 +01:00
|
|
|
return callback(null, totalClients !== 0)
|
2016-03-21 21:11:26 +01:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2017-06-10 22:15:25 +02:00
|
|
|
function usersExist (callback: (err: Error, usersExist?: boolean) => void) {
|
2016-12-11 21:50:51 +01:00
|
|
|
db.User.countTotal(function (err, totalUsers) {
|
2016-03-21 21:11:26 +01:00
|
|
|
if (err) return callback(err)
|
|
|
|
|
2016-08-16 21:51:35 +02:00
|
|
|
return callback(null, totalUsers !== 0)
|
2016-03-21 21:11:26 +01:00
|
|
|
})
|
2016-02-07 11:23:23 +01:00
|
|
|
}
|
2015-06-09 17:41:40 +02:00
|
|
|
|
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,
|
|
|
|
usersExist
|
|
|
|
}
|