wikijs-fork/server/core/kernel.js

92 lines
2.3 KiB
JavaScript
Raw Normal View History

const _ = require('lodash')
const EventEmitter = require('events')
/* 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 ${_.padEnd(WIKI.version + ' ', 29, '=')}`)
2018-05-28 18:46:55 +00:00
WIKI.logger.info('=======================================')
2017-10-08 02:44:35 +00:00
WIKI.models = require('./db').init()
2017-10-08 02:44:35 +00:00
2019-02-22 22:05:18 +00:00
try {
await WIKI.models.onReady
await WIKI.configSvc.loadFromDb()
2019-02-23 23:22:25 +00:00
await WIKI.configSvc.applyFlags()
2019-02-22 22:05:18 +00:00
} catch (err) {
WIKI.logger.error('Database Initialization Error: ' + err.message)
if (WIKI.IS_DEBUG) {
console.error(err)
}
process.exit(1)
}
2018-05-28 18:46:55 +00:00
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 this.initTelemetry()
WIKI.cache = require('./cache').init()
WIKI.scheduler = require('./scheduler').init()
WIKI.events = new EventEmitter()
2018-05-28 18:46:55 +00:00
} 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 this.preBootMaster()
2018-05-28 18:46:55 +00:00
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-08-20 05:02:57 +00:00
await WIKI.models.editors.refreshEditorsFromDisk()
2018-09-01 19:15:44 +00:00
await WIKI.models.loggers.refreshLoggersFromDisk()
await WIKI.models.renderers.refreshRenderersFromDisk()
2018-09-01 19:15:44 +00:00
await WIKI.models.searchEngines.refreshSearchEnginesFromDisk()
await WIKI.models.storage.refreshTargetsFromDisk()
await WIKI.auth.activateStrategies()
2019-03-09 05:51:02 +00:00
await WIKI.models.searchEngines.initEngine()
2019-02-03 22:08:06 +00:00
await WIKI.models.storage.initTargets()
WIKI.scheduler.start()
2019-02-02 06:17:09 +00:00
},
/**
* Init Telemetry
*/
async initTelemetry() {
require('./telemetry').init()
process.on('unhandledRejection', (err) => {
WIKI.logger.warn(err)
WIKI.telemetry.sendError(err)
})
process.on('uncaughtException', (err) => {
WIKI.logger.warn(err)
WIKI.telemetry.sendError(err)
})
2017-10-08 02:44:35 +00:00
}
}