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.
|
|
|
const Model = require('objection').Model
|
|
|
|
|
|
|
|
/* global WIKI */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Navigation model
|
|
|
|
*/
|
|
|
|
module.exports = class Navigation extends Model {
|
|
|
|
static get tableName() { return 'navigation' }
|
|
|
|
static get idColumn() { return 'key' }
|
|
|
|
|
|
|
|
static get jsonSchema () {
|
|
|
|
return {
|
|
|
|
type: 'object',
|
|
|
|
required: ['key'],
|
|
|
|
|
|
|
|
properties: {
|
|
|
|
key: {type: 'string'},
|
|
|
|
config: {type: 'array', items: {type: 'object'}}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static async getTree({ cache = false } = {}) {
|
|
|
|
if (cache) {
|
|
|
|
const navTreeCached = await WIKI.cache.get('nav:sidebar')
|
|
|
|
if (navTreeCached) {
|
|
|
|
return navTreeCached
|
|
|
|
}
|
|
|
|
}
|
|
|
|
const navTree = await WIKI.models.navigation.query().findOne('key', 'site')
|
|
|
|
if (navTree) {
|
|
|
|
if (cache) {
|
|
|
|
await WIKI.cache.set('nav:sidebar', navTree.config, 300)
|
|
|
|
}
|
|
|
|
return navTree.config
|
|
|
|
} else {
|
|
|
|
WIKI.logger.warn('Site Navigation is missing or corrupted.')
|
|
|
|
return []
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|