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.
226 lines
6.9 KiB
226 lines
6.9 KiB
const _ = require('lodash')
|
|
const autoload = require('auto-load')
|
|
const path = require('path')
|
|
const Knex = require('knex')
|
|
const fs = require('fs')
|
|
const Objection = require('objection')
|
|
const PGPubSub = require('pg-pubsub')
|
|
|
|
const migrationSource = require('../db/migrator-source')
|
|
const migrateFromLegacy = require('../db/legacy')
|
|
const { setTimeout } = require('timers/promises')
|
|
|
|
/**
|
|
* ORM DB module
|
|
*/
|
|
module.exports = {
|
|
Objection,
|
|
knex: null,
|
|
listener: null,
|
|
config: null,
|
|
/**
|
|
* Initialize DB
|
|
*/
|
|
init(workerMode = false) {
|
|
let self = this
|
|
|
|
WIKI.logger.info('Checking DB configuration...')
|
|
|
|
// Fetch DB Config
|
|
|
|
this.config = (!_.isEmpty(process.env.DATABASE_URL)) ? process.env.DATABASE_URL : {
|
|
host: WIKI.config.db.host.toString(),
|
|
user: WIKI.config.db.user.toString(),
|
|
password: WIKI.config.db.pass.toString(),
|
|
database: WIKI.config.db.db.toString(),
|
|
port: WIKI.config.db.port
|
|
}
|
|
|
|
// Handle SSL Options
|
|
|
|
let dbUseSSL = (WIKI.config.db.ssl === true || WIKI.config.db.ssl === 'true' || WIKI.config.db.ssl === 1 || WIKI.config.db.ssl === '1')
|
|
let sslOptions = null
|
|
if (dbUseSSL && _.isPlainObject(this.config) && _.get(WIKI.config.db, 'sslOptions.auto', null) === false) {
|
|
sslOptions = WIKI.config.db.sslOptions
|
|
sslOptions.rejectUnauthorized = sslOptions.rejectUnauthorized !== false
|
|
if (sslOptions.ca && sslOptions.ca.indexOf('-----') !== 0) {
|
|
sslOptions.ca = fs.readFileSync(path.resolve(WIKI.ROOTPATH, sslOptions.ca))
|
|
}
|
|
if (sslOptions.cert) {
|
|
sslOptions.cert = fs.readFileSync(path.resolve(WIKI.ROOTPATH, sslOptions.cert))
|
|
}
|
|
if (sslOptions.key) {
|
|
sslOptions.key = fs.readFileSync(path.resolve(WIKI.ROOTPATH, sslOptions.key))
|
|
}
|
|
if (sslOptions.pfx) {
|
|
sslOptions.pfx = fs.readFileSync(path.resolve(WIKI.ROOTPATH, sslOptions.pfx))
|
|
}
|
|
} else {
|
|
sslOptions = true
|
|
}
|
|
|
|
// Handle inline SSL CA Certificate mode
|
|
if (!_.isEmpty(process.env.DB_SSL_CA)) {
|
|
const chunks = []
|
|
for (let i = 0, charsLength = process.env.DB_SSL_CA.length; i < charsLength; i += 64) {
|
|
chunks.push(process.env.DB_SSL_CA.substring(i, i + 64))
|
|
}
|
|
|
|
dbUseSSL = true
|
|
sslOptions = {
|
|
rejectUnauthorized: true,
|
|
ca: '-----BEGIN CERTIFICATE-----\n' + chunks.join('\n') + '\n-----END CERTIFICATE-----\n'
|
|
}
|
|
}
|
|
|
|
if (dbUseSSL && _.isPlainObject(this.config)) {
|
|
this.config.ssl = (sslOptions === true) ? { rejectUnauthorized: true } : sslOptions
|
|
}
|
|
|
|
// Initialize Knex
|
|
this.knex = Knex({
|
|
client: 'pg',
|
|
useNullAsDefault: true,
|
|
asyncStackTraces: WIKI.IS_DEBUG,
|
|
connection: this.config,
|
|
searchPath: [WIKI.config.db.schemas.wiki],
|
|
pool: {
|
|
...workerMode ? { min: 0, max: 1 } : WIKI.config.pool,
|
|
async afterCreate(conn, done) {
|
|
// -> Set Connection App Name
|
|
if (workerMode) {
|
|
await conn.query(`set application_name = 'Wiki.js - ${WIKI.INSTANCE_ID}'`)
|
|
} else {
|
|
await conn.query(`set application_name = 'Wiki.js - ${WIKI.INSTANCE_ID}:MAIN'`)
|
|
}
|
|
done()
|
|
}
|
|
},
|
|
debug: WIKI.IS_DEBUG
|
|
})
|
|
|
|
Objection.Model.knex(this.knex)
|
|
|
|
// Load DB Models
|
|
|
|
WIKI.logger.info('Loading DB models...')
|
|
const models = autoload(path.join(WIKI.SERVERPATH, 'models'))
|
|
|
|
// Set init tasks
|
|
let conAttempts = 0
|
|
let initTasks = {
|
|
// -> Attempt initial connection
|
|
async connect () {
|
|
try {
|
|
WIKI.logger.info('Connecting to database...')
|
|
await self.knex.raw('SELECT 1 + 1;')
|
|
WIKI.logger.info('Database Connection Successful [ OK ]')
|
|
} catch (err) {
|
|
if (conAttempts < 10) {
|
|
if (err.code) {
|
|
WIKI.logger.error(`Database Connection Error: ${err.code} ${err.address}:${err.port}`)
|
|
} else {
|
|
WIKI.logger.error(`Database Connection Error: ${err.message}`)
|
|
}
|
|
WIKI.logger.warn(`Will retry in 3 seconds... [Attempt ${++conAttempts} of 10]`)
|
|
await setTimeout(3000)
|
|
await initTasks.connect()
|
|
} else {
|
|
throw err
|
|
}
|
|
}
|
|
},
|
|
// -> Migrate DB Schemas
|
|
async syncSchemas () {
|
|
WIKI.logger.info('Ensuring DB schema exists...')
|
|
await self.knex.raw(`CREATE SCHEMA IF NOT EXISTS ${WIKI.config.db.schemas.wiki}`)
|
|
WIKI.logger.info('Ensuring DB migrations have been applied...')
|
|
return self.knex.migrate.latest({
|
|
tableName: 'migrations',
|
|
migrationSource,
|
|
schemaName: WIKI.config.db.schemas.wiki
|
|
})
|
|
},
|
|
// -> Migrate DB Schemas from 2.x
|
|
async migrateFromLegacy () {
|
|
return migrateFromLegacy.migrate(self.knex)
|
|
}
|
|
}
|
|
|
|
// Perform init tasks
|
|
|
|
this.onReady = workerMode ? Promise.resolve() : (async () => {
|
|
await initTasks.connect()
|
|
await initTasks.migrateFromLegacy()
|
|
await initTasks.syncSchemas()
|
|
})()
|
|
|
|
return {
|
|
...this,
|
|
...models
|
|
}
|
|
},
|
|
/**
|
|
* Subscribe to database LISTEN / NOTIFY for multi-instances events
|
|
*/
|
|
async subscribeToNotifications () {
|
|
let connSettings = this.knex.client.connectionSettings
|
|
if (typeof connSettings === 'string') {
|
|
const encodedName = encodeURIComponent(`Wiki.js - ${WIKI.INSTANCE_ID}:PSUB`)
|
|
if (connSettings.indexOf('?') > 0) {
|
|
connSettings = `${connSettings}&ApplicationName=${encodedName}`
|
|
} else {
|
|
connSettings = `${connSettings}?ApplicationName=${encodedName}`
|
|
}
|
|
} else {
|
|
connSettings.application_name = `Wiki.js - ${WIKI.INSTANCE_ID}:PSUB`
|
|
}
|
|
this.listener = new PGPubSub(connSettings, {
|
|
log (ev) {
|
|
WIKI.logger.debug(ev)
|
|
}
|
|
})
|
|
|
|
// -> Outbound events handling
|
|
|
|
this.listener.addChannel('wiki', payload => {
|
|
if (_.has(payload, 'event') && payload.source !== WIKI.INSTANCE_ID) {
|
|
WIKI.logger.info(`Received event ${payload.event} from instance ${payload.source}: [ OK ]`)
|
|
WIKI.events.inbound.emit(payload.event, payload.value)
|
|
}
|
|
})
|
|
WIKI.events.outbound.onAny(this.notifyViaDB)
|
|
|
|
// -> Listen to inbound events
|
|
|
|
WIKI.auth.subscribeToEvents()
|
|
WIKI.configSvc.subscribeToEvents()
|
|
WIKI.db.pages.subscribeToEvents()
|
|
|
|
WIKI.logger.info(`PG PubSub Listener initialized successfully: [ OK ]`)
|
|
},
|
|
/**
|
|
* Unsubscribe from database LISTEN / NOTIFY
|
|
*/
|
|
async unsubscribeToNotifications () {
|
|
if (this.listener) {
|
|
WIKI.events.outbound.offAny(this.notifyViaDB)
|
|
WIKI.events.inbound.removeAllListeners()
|
|
this.listener.close()
|
|
}
|
|
},
|
|
/**
|
|
* Publish event via database NOTIFY
|
|
*
|
|
* @param {string} event Event fired
|
|
* @param {object} value Payload of the event
|
|
*/
|
|
notifyViaDB (event, value) {
|
|
WIKI.db.listener.publish('wiki', {
|
|
source: WIKI.INSTANCE_ID,
|
|
event,
|
|
value
|
|
})
|
|
}
|
|
}
|