wikijs-fork/server/models/navigation.js

43 lines
1008 B
JavaScript
Raw Normal View History

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'},
2018-10-22 02:25:17 +00:00
config: {type: 'array', items: {type: 'object'}}
}
}
}
2018-11-11 18:54:33 +00:00
static async getTree({ cache = false } = {}) {
if (cache) {
const navTreeCached = await WIKI.redis.get('nav:sidebar')
if (navTreeCached) {
return JSON.parse(navTreeCached)
}
}
2018-10-22 02:25:17 +00:00
const navTree = await WIKI.models.navigation.query().findOne('key', 'site')
if (navTree) {
2018-11-11 18:54:33 +00:00
if (cache) {
await WIKI.redis.set('nav:sidebar', JSON.stringify(navTree.config), 'EX', 300)
}
2018-10-22 02:25:17 +00:00
return navTree.config
} else {
WIKI.logger.warn('Site Navigation is missing or corrupted.')
return []
}
}
}