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.
131 lines
4.0 KiB
131 lines
4.0 KiB
const Model = require('objection').Model
|
|
const path = require('path')
|
|
const fs = require('fs-extra')
|
|
const _ = require('lodash')
|
|
const yaml = require('js-yaml')
|
|
const DepGraph = require('dependency-graph').DepGraph
|
|
const commonHelper = require('../helpers/common')
|
|
|
|
/* global WIKI */
|
|
|
|
/**
|
|
* Renderer model
|
|
*/
|
|
module.exports = class Renderer extends Model {
|
|
static get tableName() { return 'renderers' }
|
|
|
|
static get jsonSchema () {
|
|
return {
|
|
type: 'object',
|
|
required: ['module', 'isEnabled'],
|
|
|
|
properties: {
|
|
id: {type: 'string'},
|
|
module: {type: 'string'},
|
|
isEnabled: {type: 'boolean'}
|
|
}
|
|
}
|
|
}
|
|
|
|
static get jsonAttributes() {
|
|
return ['config']
|
|
}
|
|
|
|
static async getRenderers() {
|
|
return WIKI.models.renderers.query()
|
|
}
|
|
|
|
static async fetchDefinitions() {
|
|
try {
|
|
// -> Fetch definitions from disk
|
|
const renderersDirs = await fs.readdir(path.join(WIKI.SERVERPATH, 'modules/rendering'))
|
|
WIKI.data.renderers = []
|
|
for (const dir of renderersDirs) {
|
|
const def = await fs.readFile(path.join(WIKI.SERVERPATH, 'modules/rendering', dir, 'definition.yml'), 'utf8')
|
|
const defParsed = yaml.load(def)
|
|
defParsed.key = dir
|
|
defParsed.props = commonHelper.parseModuleProps(defParsed.props)
|
|
WIKI.data.renderers.push(defParsed)
|
|
WIKI.logger.debug(`Loaded renderers module definition ${dir}: [ OK ]`)
|
|
}
|
|
|
|
WIKI.logger.info(`Loaded ${WIKI.data.renderers.length} renderers module definitions: [ OK ]`)
|
|
} catch (err) {
|
|
WIKI.logger.error(`Failed to scan or load renderers providers: [ FAILED ]`)
|
|
WIKI.logger.error(err)
|
|
}
|
|
}
|
|
|
|
static async refreshRenderersFromDisk() {
|
|
// const dbRenderers = await WIKI.models.renderers.query()
|
|
|
|
// -> Fetch definitions from disk
|
|
await WIKI.models.renderers.fetchDefinitions()
|
|
|
|
// TODO: Merge existing configs with updated modules
|
|
}
|
|
|
|
static async getRenderingPipeline(contentType) {
|
|
const renderersDb = await WIKI.models.renderers.query().where('isEnabled', true)
|
|
if (renderersDb && renderersDb.length > 0) {
|
|
const renderers = renderersDb.map(rdr => {
|
|
const renderer = _.find(WIKI.data.renderers, ['key', rdr.key])
|
|
return {
|
|
...renderer,
|
|
config: rdr.config
|
|
}
|
|
})
|
|
|
|
// Build tree
|
|
const rawCores = _.filter(renderers, renderer => !_.has(renderer, 'dependsOn')).map(core => {
|
|
core.children = _.filter(renderers, ['dependsOn', core.key])
|
|
return core
|
|
})
|
|
|
|
// Build dependency graph
|
|
const graph = new DepGraph({ circular: true })
|
|
rawCores.map(core => { graph.addNode(core.key) })
|
|
rawCores.map(core => {
|
|
rawCores.map(coreTarget => {
|
|
if (core.key !== coreTarget.key) {
|
|
if (core.output === coreTarget.input) {
|
|
graph.addDependency(core.key, coreTarget.key)
|
|
}
|
|
}
|
|
})
|
|
})
|
|
|
|
// Filter unused cores
|
|
let activeCoreKeys = _.filter(rawCores, ['input', contentType]).map(core => core.key)
|
|
_.clone(activeCoreKeys).map(coreKey => {
|
|
activeCoreKeys = _.union(activeCoreKeys, graph.dependenciesOf(coreKey))
|
|
})
|
|
const activeCores = _.filter(rawCores, core => _.includes(activeCoreKeys, core.key))
|
|
|
|
// Rebuild dependency graph with active cores
|
|
const graphActive = new DepGraph({ circular: true })
|
|
activeCores.map(core => { graphActive.addNode(core.key) })
|
|
activeCores.map(core => {
|
|
activeCores.map(coreTarget => {
|
|
if (core.key !== coreTarget.key) {
|
|
if (core.output === coreTarget.input) {
|
|
graphActive.addDependency(core.key, coreTarget.key)
|
|
}
|
|
}
|
|
})
|
|
})
|
|
|
|
// Reorder cores in reverse dependency order
|
|
let orderedCores = []
|
|
_.reverse(graphActive.overallOrder()).map(coreKey => {
|
|
orderedCores.push(_.find(rawCores, ['key', coreKey]))
|
|
})
|
|
|
|
return orderedCores
|
|
} else {
|
|
WIKI.logger.error(`Rendering pipeline is empty!`)
|
|
return false
|
|
}
|
|
}
|
|
}
|