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