2016-02-07 05:23:23 -05:00
|
|
|
'use strict'
|
|
|
|
|
2016-03-16 17:29:27 -04:00
|
|
|
const config = require('config')
|
2016-03-21 16:11:26 -04:00
|
|
|
|
2016-12-11 15:50:51 -05:00
|
|
|
const db = require('./database')
|
2016-02-07 05:23:23 -05:00
|
|
|
|
2016-03-16 17:29:27 -04:00
|
|
|
const checker = {
|
2016-10-02 06:19:02 -04:00
|
|
|
checkConfig,
|
2016-11-01 14:46:07 -04:00
|
|
|
checkMissedConfig,
|
2016-10-02 06:19:02 -04:00
|
|
|
clientsExist,
|
|
|
|
usersExist
|
2016-02-07 05:23:23 -05:00
|
|
|
}
|
|
|
|
|
2016-11-01 14:46:07 -04:00
|
|
|
// Some checks on configuration files
|
2016-02-07 05:23:23 -05:00
|
|
|
function checkConfig () {
|
2016-11-01 14:46:07 -04: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 17:29:27 -04:00
|
|
|
const required = [ 'listen.port',
|
2016-10-23 13:41:17 -04:00
|
|
|
'webserver.https', 'webserver.hostname', 'webserver.port',
|
2016-12-25 03:44:57 -05:00
|
|
|
'database.hostname', 'database.port', 'database.suffix', 'database.username', 'database.password',
|
2016-11-11 05:52:24 -05:00
|
|
|
'storage.certs', 'storage.videos', 'storage.logs', 'storage.thumbnails', 'storage.previews'
|
2016-10-13 15:48:55 -04:00
|
|
|
]
|
2016-03-16 17:29:27 -04:00
|
|
|
const miss = []
|
2016-02-07 05:23:23 -05:00
|
|
|
|
2016-03-16 17:29:27 -04:00
|
|
|
for (const key of required) {
|
2016-02-07 05:23:23 -05:00
|
|
|
if (!config.has(key)) {
|
|
|
|
miss.push(key)
|
2015-06-09 11:41:40 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-07 05:23:23 -05:00
|
|
|
return miss
|
|
|
|
}
|
|
|
|
|
2016-03-21 16:11:26 -04:00
|
|
|
function clientsExist (callback) {
|
2016-12-29 04:33:36 -05:00
|
|
|
db.OAuthClient.countTotal(function (err, totalClients) {
|
2016-03-21 16:11:26 -04:00
|
|
|
if (err) return callback(err)
|
2016-02-07 05:23:23 -05:00
|
|
|
|
2016-12-29 04:33:36 -05:00
|
|
|
return callback(null, totalClients !== 0)
|
2016-03-21 16:11:26 -04:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
function usersExist (callback) {
|
2016-12-11 15:50:51 -05:00
|
|
|
db.User.countTotal(function (err, totalUsers) {
|
2016-03-21 16:11:26 -04:00
|
|
|
if (err) return callback(err)
|
|
|
|
|
2016-08-16 15:51:35 -04:00
|
|
|
return callback(null, totalUsers !== 0)
|
2016-03-21 16:11:26 -04:00
|
|
|
})
|
2016-02-07 05:23:23 -05:00
|
|
|
}
|
2015-06-09 11:41:40 -04:00
|
|
|
|
2016-02-07 05:23:23 -05:00
|
|
|
// ---------------------------------------------------------------------------
|
2016-01-31 05:23:52 -05:00
|
|
|
|
2016-02-07 05:23:23 -05:00
|
|
|
module.exports = checker
|