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

50 lines
1.0 KiB
JavaScript
Raw Normal View History

'use strict'
2016-03-16 21:29:27 +00:00
const config = require('config')
const Users = require('../models/users')
2016-03-16 21:29:27 +00:00
const checker = {
checkConfig: checkConfig,
clientsExist: clientsExist,
usersExist: usersExist
}
// Check the config files
function checkConfig () {
2016-03-16 21:29:27 +00:00
const required = [ 'listen.port',
'webserver.https', 'webserver.host', 'webserver.port',
'database.host', 'database.port', 'database.suffix',
'storage.certs', 'storage.uploads', 'storage.logs',
2016-05-11 18:43:07 +00:00
'network.friends', 'electron.debug' ]
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
}
function clientsExist (callback) {
Users.getClients(function (err, clients) {
if (err) return callback(err)
return callback(null, clients.length !== 0)
})
}
function usersExist (callback) {
Users.getUsers(function (err, users) {
if (err) return callback(err)
return callback(null, users.length !== 0)
})
}
2015-06-09 15:41:40 +00:00
// ---------------------------------------------------------------------------
2016-01-31 10:23:52 +00:00
module.exports = checker