2016-02-07 05:23:23 -05:00
|
|
|
'use strict'
|
|
|
|
|
2016-03-16 17:29:27 -04:00
|
|
|
const config = require('config')
|
2016-07-01 10:03:53 -04:00
|
|
|
const mongoose = require('mongoose')
|
2016-03-21 16:11:26 -04:00
|
|
|
|
2016-07-01 10:03:53 -04:00
|
|
|
const Client = mongoose.model('OAuthClient')
|
|
|
|
const User = mongoose.model('User')
|
2016-02-07 05:23:23 -05:00
|
|
|
|
2016-03-16 17:29:27 -04:00
|
|
|
const checker = {
|
2016-02-07 05:23:23 -05:00
|
|
|
checkConfig: checkConfig,
|
2016-03-21 16:11:26 -04:00
|
|
|
clientsExist: clientsExist,
|
|
|
|
usersExist: usersExist
|
2016-02-07 05:23:23 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Check the config files
|
|
|
|
function checkConfig () {
|
2016-03-16 17:29:27 -04:00
|
|
|
const required = [ 'listen.port',
|
2016-02-07 05:23:23 -05:00
|
|
|
'webserver.https', 'webserver.host', 'webserver.port',
|
|
|
|
'database.host', 'database.port', 'database.suffix',
|
|
|
|
'storage.certs', 'storage.uploads', 'storage.logs',
|
2016-05-11 14:43:07 -04:00
|
|
|
'network.friends', 'electron.debug' ]
|
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-07-01 10:03:53 -04:00
|
|
|
Client.list(function (err, clients) {
|
2016-03-21 16:11:26 -04:00
|
|
|
if (err) return callback(err)
|
2016-02-07 05:23:23 -05:00
|
|
|
|
2016-03-21 16:11:26 -04:00
|
|
|
return callback(null, clients.length !== 0)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
function usersExist (callback) {
|
2016-08-16 16:31:45 -04:00
|
|
|
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
|