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.
80 lines
2.5 KiB
80 lines
2.5 KiB
import { Model } from 'objection'
|
|
import { has, intersection } from 'lodash-es'
|
|
|
|
/**
|
|
* Navigation model
|
|
*/
|
|
export class Navigation extends Model {
|
|
static get tableName() { return 'navigation' }
|
|
|
|
static get jsonSchema () {
|
|
return {
|
|
type: 'object',
|
|
|
|
properties: {
|
|
name: {type: 'string'},
|
|
items: {type: 'array', items: {type: 'object'}}
|
|
}
|
|
}
|
|
}
|
|
|
|
static async getNav ({ id, cache = false, userGroups = [] }) {
|
|
const result = await WIKI.db.navigation.query().findById(id).select('items')
|
|
if (!result) { return [] }
|
|
return result.items.filter(item => {
|
|
return !item.visibilityGroups?.length || intersection(item.visibilityGroups, userGroups).length > 0
|
|
}).map(item => {
|
|
if (!item.children || item.children?.length < 1) { return item }
|
|
return {
|
|
...item,
|
|
children: item.children.filter(child => {
|
|
return !child.visibilityGroups?.length || intersection(child.visibilityGroups, userGroups).length > 0
|
|
})
|
|
}
|
|
})
|
|
}
|
|
|
|
static async getTree({ cache = false, locale = 'en', groups = [], bypassAuth = false } = {}) {
|
|
if (cache) {
|
|
const navTreeCached = await WIKI.cache.get(`nav:sidebar:${locale}`)
|
|
if (navTreeCached) {
|
|
return bypassAuth ? navTreeCached : WIKI.db.navigation.getAuthorizedItems(navTreeCached, groups)
|
|
}
|
|
}
|
|
const navTree = await WIKI.db.navigation.query().findOne('key', `site`)
|
|
if (navTree) {
|
|
// Check for pre-2.3 format
|
|
if (has(navTree.config[0], 'kind')) {
|
|
navTree.config = [{
|
|
locale: 'en',
|
|
items: navTree.config.map(item => ({
|
|
...item,
|
|
visibilityMode: 'all',
|
|
visibilityGroups: []
|
|
}))
|
|
}]
|
|
}
|
|
|
|
for (const tree of navTree.config) {
|
|
if (cache) {
|
|
await WIKI.cache.set(`nav:sidebar:${tree.locale}`, tree.items, 300)
|
|
}
|
|
}
|
|
if (bypassAuth) {
|
|
return locale === 'all' ? navTree.config : WIKI.cache.get(`nav:sidebar:${locale}`)
|
|
} else {
|
|
return locale === 'all' ? WIKI.db.navigation.getAuthorizedItems(navTree.config, groups) : WIKI.db.navigation.getAuthorizedItems(WIKI.cache.get(`nav:sidebar:${locale}`), groups)
|
|
}
|
|
} else {
|
|
WIKI.logger.warn('Site Navigation is missing or corrupted.')
|
|
return []
|
|
}
|
|
}
|
|
|
|
static getAuthorizedItems(tree = [], groups = []) {
|
|
return tree.filter(leaf => {
|
|
return leaf.visibilityMode === 'all' || intersection(leaf.visibilityGroups, groups).length > 0
|
|
})
|
|
}
|
|
}
|