wikijs-fork/server/core/kernel.js

56 lines
1.3 KiB
JavaScript
Raw Normal View History

/* global WIKI */
2017-10-08 02:44:35 +00:00
module.exports = {
2018-05-28 18:46:55 +00:00
async init() {
WIKI.logger.info('=======================================')
WIKI.logger.info('= Wiki.js =============================')
WIKI.logger.info('=======================================')
2017-10-08 02:44:35 +00:00
WIKI.models = require('./db').init()
2018-05-28 18:46:55 +00:00
WIKI.redis = require('./redis').init()
WIKI.queue = require('./queue').init()
2017-10-08 02:44:35 +00:00
2018-05-28 18:46:55 +00:00
await this.preBootMaster()
this.bootMaster()
2017-10-08 02:44:35 +00:00
},
/**
* Pre-Master Boot Sequence
*/
2018-05-28 18:46:55 +00:00
async preBootMaster() {
try {
await WIKI.models.onReady
2018-05-28 18:46:55 +00:00
await WIKI.configSvc.loadFromDb()
await WIKI.queue.clean()
} catch (err) {
WIKI.logger.error(err)
process.exit(1)
}
2017-10-08 02:44:35 +00:00
},
/**
* Boot Master Process
*/
2018-05-28 18:46:55 +00:00
async bootMaster() {
try {
if (WIKI.config.setup) {
WIKI.logger.info('Starting setup wizard...')
2017-12-24 05:34:47 +00:00
require('../setup')()
2018-05-28 18:46:55 +00:00
} else {
await require('../master')()
this.postBootMaster()
2017-10-08 02:44:35 +00:00
}
2018-05-28 18:46:55 +00:00
} catch (err) {
WIKI.logger.error(err)
2017-10-08 02:44:35 +00:00
process.exit(1)
2018-05-28 18:46:55 +00:00
}
2017-10-08 02:44:35 +00:00
},
/**
* Post-Master Boot Sequence
*/
2017-12-24 05:34:47 +00:00
async postBootMaster() {
2018-08-04 21:27:55 +00:00
await WIKI.models.authentication.refreshStrategiesFromDisk()
2018-05-28 18:46:55 +00:00
await WIKI.auth.activateStrategies()
await WIKI.models.storage.refreshTargetsFromDisk()
2018-05-28 18:46:55 +00:00
await WIKI.queue.start()
2017-10-08 02:44:35 +00:00
}
}