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.
95 lines
2.0 KiB
95 lines
2.0 KiB
/* global WIKI */
|
|
|
|
module.exports = {
|
|
activate() {
|
|
// not used
|
|
},
|
|
deactivate() {
|
|
// not used
|
|
},
|
|
/**
|
|
* INIT
|
|
*/
|
|
init() {
|
|
// not used
|
|
},
|
|
/**
|
|
* QUERY
|
|
*
|
|
* @param {String} q Query
|
|
* @param {Object} opts Additional options
|
|
*/
|
|
async query(q, opts) {
|
|
const results = await WIKI.models.pages.query()
|
|
.column('pages.id', 'title', 'description', 'path', 'localeCode as locale')
|
|
.withGraphJoined('tags') // Adding page tags since they can be used to check resource access permissions
|
|
.modifyGraph('tags', builder => {
|
|
builder.select('tag')
|
|
})
|
|
.where(builder => {
|
|
builder.where('isPublished', true)
|
|
if (opts.locale) {
|
|
builder.andWhere('localeCode', opts.locale)
|
|
}
|
|
if (opts.path) {
|
|
builder.andWhere('path', 'like', `${opts.path}%`)
|
|
}
|
|
builder.andWhere(builderSub => {
|
|
if (WIKI.config.db.type === 'postgres') {
|
|
builderSub.where('title', 'ILIKE', `%${q}%`)
|
|
builderSub.orWhere('description', 'ILIKE', `%${q}%`)
|
|
builderSub.orWhere('path', 'ILIKE', `%${q.toLowerCase()}%`)
|
|
} else {
|
|
builderSub.where('title', 'LIKE', `%${q}%`)
|
|
builderSub.orWhere('description', 'LIKE', `%${q}%`)
|
|
builderSub.orWhere('path', 'LIKE', `%${q.toLowerCase()}%`)
|
|
}
|
|
})
|
|
})
|
|
.limit(WIKI.config.search.maxHits)
|
|
return {
|
|
results,
|
|
suggestions: [],
|
|
totalHits: results.length
|
|
}
|
|
},
|
|
/**
|
|
* CREATE
|
|
*
|
|
* @param {Object} page Page to create
|
|
*/
|
|
async created(page) {
|
|
// not used
|
|
},
|
|
/**
|
|
* UPDATE
|
|
*
|
|
* @param {Object} page Page to update
|
|
*/
|
|
async updated(page) {
|
|
// not used
|
|
},
|
|
/**
|
|
* DELETE
|
|
*
|
|
* @param {Object} page Page to delete
|
|
*/
|
|
async deleted(page) {
|
|
// not used
|
|
},
|
|
/**
|
|
* RENAME
|
|
*
|
|
* @param {Object} page Page to rename
|
|
*/
|
|
async renamed(page) {
|
|
// not used
|
|
},
|
|
/**
|
|
* REBUILD INDEX
|
|
*/
|
|
async rebuild() {
|
|
// not used
|
|
}
|
|
}
|