aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/initializers/checker.js
blob: 2a33009b4ed7b65f26529364b24b0c0d0d5bf415 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
'use strict'

const config = require('config')
const mongoose = require('mongoose')

const Client = mongoose.model('OAuthClient')
const User = mongoose.model('User')

const checker = {
  checkConfig: checkConfig,
  clientsExist: clientsExist,
  usersExist: usersExist
}

// Check the config files
function checkConfig () {
  const required = [ 'listen.port',
    'webserver.https', 'webserver.host', 'webserver.port',
    'database.host', 'database.port', 'database.suffix',
    'storage.certs', 'storage.uploads', 'storage.logs', 'storage.thumbnails',
    'electron.debug' ]
  const miss = []

  for (const key of required) {
    if (!config.has(key)) {
      miss.push(key)
    }
  }

  return miss
}

function clientsExist (callback) {
  Client.list(function (err, clients) {
    if (err) return callback(err)

    return callback(null, clients.length !== 0)
  })
}

function usersExist (callback) {
  User.countTotal(function (err, totalUsers) {
    if (err) return callback(err)

    return callback(null, totalUsers !== 0)
  })
}

// ---------------------------------------------------------------------------

module.exports = checker