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

52 lines
1.1 KiB
JavaScript
Raw Normal View History

'use strict'
2016-03-16 21:29:27 +00:00
const config = require('config')
const mongoose = require('mongoose')
const Client = mongoose.model('OAuthClient')
const User = mongoose.model('User')
2016-03-16 21:29:27 +00:00
const checker = {
checkConfig,
clientsExist,
usersExist
}
// Check the config files
function checkConfig () {
2016-03-16 21:29:27 +00:00
const required = [ 'listen.port',
'webserver.https', 'webserver.hostname', 'webserver.port',
'database.hostname', 'database.port', 'database.suffix',
2016-10-21 09:33:31 +00:00
'storage.certs', 'storage.videos', 'storage.logs', 'storage.thumbnails'
2016-10-13 19:48:55 +00:00
]
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) {
Client.list(function (err, clients) {
if (err) return callback(err)
return callback(null, clients.length !== 0)
})
}
function usersExist (callback) {
2016-08-16 20:31:45 +00:00
User.countTotal(function (err, totalUsers) {
if (err) return callback(err)
return callback(null, totalUsers !== 0)
})
}
2015-06-09 15:41:40 +00:00
// ---------------------------------------------------------------------------
2016-01-31 10:23:52 +00:00
module.exports = checker