mirror of https://github.com/requarks/wiki
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1.3 KiB
59 lines
1.3 KiB
const _ = require('lodash')
|
|
|
|
/* global WIKI */
|
|
|
|
module.exports = {
|
|
async init() {
|
|
WIKI.logger.info('=======================================')
|
|
WIKI.logger.info(`= Wiki.js ${_.padEnd(WIKI.version + ' ', 29, '=')}`)
|
|
WIKI.logger.info('=======================================')
|
|
|
|
WIKI.models = require('./db').init()
|
|
WIKI.redis = require('./redis').init()
|
|
WIKI.queue = require('./queue').init()
|
|
|
|
await this.preBootMaster()
|
|
this.bootMaster()
|
|
},
|
|
/**
|
|
* Pre-Master Boot Sequence
|
|
*/
|
|
async preBootMaster() {
|
|
try {
|
|
await WIKI.models.onReady
|
|
await WIKI.configSvc.loadFromDb()
|
|
await WIKI.queue.clean()
|
|
} catch (err) {
|
|
WIKI.logger.error(err)
|
|
process.exit(1)
|
|
}
|
|
},
|
|
/**
|
|
* Boot Master Process
|
|
*/
|
|
async bootMaster() {
|
|
try {
|
|
if (WIKI.config.setup) {
|
|
WIKI.logger.info('Starting setup wizard...')
|
|
require('../setup')()
|
|
} else {
|
|
await require('../master')()
|
|
this.postBootMaster()
|
|
}
|
|
} catch (err) {
|
|
WIKI.logger.error(err)
|
|
process.exit(1)
|
|
}
|
|
},
|
|
/**
|
|
* Post-Master Boot Sequence
|
|
*/
|
|
async postBootMaster() {
|
|
await WIKI.models.authentication.refreshStrategiesFromDisk()
|
|
await WIKI.models.storage.refreshTargetsFromDisk()
|
|
|
|
await WIKI.auth.activateStrategies()
|
|
await WIKI.queue.start()
|
|
}
|
|
}
|