1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363 |
- import { Model } from 'objection'
- import { find, get, has, initial, isEmpty, isString, last, pick } from 'lodash-es'
- import { Type as JSBinType } from 'js-binary'
- import { getDictNameFromLocale } from '../helpers/common.mjs'
- import { generateHash, getFileExtension, injectPageMetadata } from '../helpers/page.mjs'
- import path from 'node:path'
- import fse from 'fs-extra'
- import yaml from 'js-yaml'
- import striptags from 'striptags'
- import emojiRegex from 'emoji-regex'
- import he from 'he'
- import CleanCSS from 'clean-css'
- import TurndownService from 'turndown'
- import { gfm as turndownPluginGfm } from '@joplin/turndown-plugin-gfm'
- import cheerio from 'cheerio'
- import { Locale } from './locales.mjs'
- import { PageLink } from './pageLinks.mjs'
- import { Tag } from './tags.mjs'
- import { User } from './users.mjs'
- const pageRegex = /^[a-zA-Z0-9-_/]*$/
- const aliasRegex = /^[a-zA-Z0-9-_]*$/
- const frontmatterRegex = {
- html: /^(<!-{2}(?:\n|\r)([\w\W]+?)(?:\n|\r)-{2}>)?(?:\n|\r)*([\w\W]*)*/,
- legacy: /^(<!-- TITLE: ?([\w\W]+?) ?-{2}>)?(?:\n|\r)?(<!-- SUBTITLE: ?([\w\W]+?) ?-{2}>)?(?:\n|\r)*([\w\W]*)*/i,
- markdown: /^(-{3}(?:\n|\r)([\w\W]+?)(?:\n|\r)-{3})?(?:\n|\r)*([\w\W]*)*/
- }
- /**
- * Pages model
- */
- export class Page extends Model {
- static get tableName() { return 'pages' }
- static get jsonSchema () {
- return {
- type: 'object',
- required: ['path', 'title'],
- properties: {
- id: {type: 'string'},
- path: {type: 'string'},
- hash: {type: 'string'},
- title: {type: 'string'},
- description: {type: 'string'},
- publishState: {type: 'string'},
- publishStartDate: {type: 'string'},
- publishEndDate: {type: 'string'},
- content: {type: 'string'},
- contentType: {type: 'string'},
- render: {type: 'string'},
- siteId: {type: 'string'},
- createdAt: {type: 'string'},
- updatedAt: {type: 'string'}
- }
- }
- }
- static get jsonAttributes() {
- return ['config', 'historyData', 'relations', 'scripts', 'toc']
- }
- static get relationMappings() {
- return {
- // tags: {
- // relation: Model.ManyToManyRelation,
- // modelClass: Tag,
- // join: {
- // from: 'pages.id',
- // through: {
- // from: 'pageTags.pageId',
- // to: 'pageTags.tagId'
- // },
- // to: 'tags.id'
- // }
- // },
- links: {
- relation: Model.HasManyRelation,
- modelClass: PageLink,
- join: {
- from: 'pages.id',
- to: 'pageLinks.pageId'
- }
- },
- author: {
- relation: Model.BelongsToOneRelation,
- modelClass: User,
- join: {
- from: 'pages.authorId',
- to: 'users.id'
- }
- },
- creator: {
- relation: Model.BelongsToOneRelation,
- modelClass: User,
- join: {
- from: 'pages.creatorId',
- to: 'users.id'
- }
- }
- }
- }
- $beforeUpdate() {
- this.updatedAt = new Date().toISOString()
- }
- $beforeInsert() {
- this.createdAt = new Date().toISOString()
- this.updatedAt = new Date().toISOString()
- }
- /**
- * Solving the violates foreign key constraint using cascade strategy
- * using static hooks
- * @see https://vincit.github.io/objection.js/api/types/#type-statichookarguments
- */
- static async beforeDelete({ asFindQuery }) {
- const page = await asFindQuery().select('id')
- await WIKI.db.comments.query().delete().where('pageId', page[0].id)
- }
- /**
- * Cache Schema
- */
- static get cacheSchema() {
- return new JSBinType({
- id: 'string',
- authorId: 'string',
- authorName: 'string',
- createdAt: 'string',
- creatorId: 'string',
- creatorName: 'string',
- description: 'string',
- editor: 'string',
- publishState: 'string',
- publishEndDate: 'string',
- publishStartDate: 'string',
- render: 'string',
- siteId: 'string',
- tags: [
- {
- tag: 'string'
- }
- ],
- extra: {
- js: 'string',
- css: 'string'
- },
- title: 'string',
- toc: 'string',
- updatedAt: 'string'
- })
- }
- /**
- * Inject page metadata into contents
- *
- * @returns {string} Page Contents with Injected Metadata
- */
- injectMetadata () {
- return injectPageMetadata(this)
- }
- /**
- * Get the page's file extension based on content type
- *
- * @returns {string} File Extension
- */
- getFileExtension() {
- return getFileExtension(this.contentType)
- }
- /**
- * Parse injected page metadata from raw content
- *
- * @param {String} raw Raw file contents
- * @param {String} contentType Content Type
- * @returns {Object} Parsed Page Metadata with Raw Content
- */
- static parseMetadata (raw, contentType) {
- let result
- try {
- switch (contentType) {
- case 'markdown':
- result = frontmatterRegex.markdown.exec(raw)
- if (result[2]) {
- return {
- ...yaml.safeLoad(result[2]),
- content: result[3]
- }
- } else {
- // Attempt legacy v1 format
- result = frontmatterRegex.legacy.exec(raw)
- if (result[2]) {
- return {
- title: result[2],
- description: result[4],
- content: result[5]
- }
- }
- }
- break
- case 'html':
- result = frontmatterRegex.html.exec(raw)
- if (result[2]) {
- return {
- ...yaml.safeLoad(result[2]),
- content: result[3]
- }
- }
- break
- }
- } catch (err) {
- WIKI.logger.warn('Failed to parse page metadata. Invalid syntax.')
- }
- return {
- content: raw
- }
- }
- /**
- * Create a New Page
- *
- * @param {Object} opts Page Properties
- * @returns {Promise} Promise of the Page Model Instance
- */
- static async createPage(opts) {
- // -> Validate site
- if (!WIKI.sites[opts.siteId]) {
- throw new Error('ERR_INVALID_SITE')
- }
- // -> Remove trailing slash
- if (opts.path.endsWith('/')) {
- opts.path = opts.path.slice(0, -1)
- }
- // -> Remove starting slash
- if (opts.path.startsWith('/')) {
- opts.path = opts.path.slice(1)
- }
- // -> Validate path
- if (!pageRegex.test(opts.path)) {
- throw new Error('ERR_INVALID_PATH')
- }
- opts.path = opts.path.toLowerCase()
- // const dotPath = opts.path.replaceAll('/', '.').replaceAll('-', '_')
- // -> Check for page access
- if (!WIKI.auth.checkAccess(opts.user, ['write:pages'], {
- locale: opts.locale,
- path: opts.path
- })) {
- throw new Error('ERR_FORBIDDEN')
- }
- // -> Check for duplicate
- const dupCheck = await WIKI.db.pages.query().findOne({
- siteId: opts.siteId,
- locale: opts.locale,
- path: opts.path
- }).select('id')
- if (dupCheck) {
- throw new Error('ERR_PAGE_DUPLICATE_PATH')
- }
- // -> Check for alias
- if (opts.alias) {
- if (!aliasRegex.test(opts.alias)) {
- throw new Error('ERR_PAGE_INVALID_ALIAS')
- }
- const dupAliasCheck = await WIKI.db.pages.query().findOne({
- siteId: opts.siteId,
- alias: opts.alias
- }).select('id')
- if (dupAliasCheck) {
- throw new Error('ERR_PAGE_DUPLICATE_ALIAS')
- }
- }
- // -> Check for empty content
- if (!opts.content || opts.content.trim().length < 1) {
- throw new WIKI.Error.PageEmptyContent()
- }
- // -> Format CSS Scripts
- let scriptCss = ''
- if (WIKI.auth.checkAccess(opts.user, ['write:styles'], {
- locale: opts.locale,
- path: opts.path
- })) {
- if (!isEmpty(opts.scriptCss)) {
- scriptCss = new CleanCSS({ inline: false }).minify(opts.scriptCss).styles
- } else {
- scriptCss = ''
- }
- }
- // -> Format JS Scripts
- let scriptJsLoad = ''
- let scriptJsUnload = ''
- if (WIKI.auth.checkAccess(opts.user, ['write:scripts'], {
- locale: opts.locale,
- path: opts.path
- })) {
- scriptJsLoad = opts.scriptJsLoad || ''
- scriptJsUnload = opts.scriptJsUnload || ''
- }
- // -> Get Tags
- let tags = []
- if (opts.tags && opts.tags.length > 0) {
- tags = await WIKI.db.tags.processNewTags(opts.tags, opts.siteId)
- }
- // -> Create page
- const page = await WIKI.db.pages.query().insert({
- alias: opts.alias,
- authorId: opts.user.id,
- content: opts.content,
- creatorId: opts.user.id,
- config: {
- allowComments: opts.allowComments ?? true,
- allowContributions: opts.allowContributions ?? true,
- allowRatings: opts.allowRatings ?? true,
- showSidebar: opts.showSidebar ?? true,
- showTags: opts.showTags ?? true,
- showToc: opts.showToc ?? true,
- tocDepth: opts.tocDepth ?? WIKI.sites[opts.siteId].config?.defaults.tocDepth
- },
- contentType: WIKI.data.editors[opts.editor]?.contentType ?? 'text',
- description: opts.description,
- editor: opts.editor,
- hash: generateHash({ path: opts.path, locale: opts.locale }),
- icon: opts.icon,
- isBrowsable: opts.isBrowsable ?? true,
- isSearchable: opts.isSearchable ?? true,
- locale: opts.locale,
- ownerId: opts.user.id,
- path: opts.path,
- publishState: opts.publishState,
- publishEndDate: opts.publishEndDate?.toISO(),
- publishStartDate: opts.publishStartDate?.toISO(),
- relations: opts.relations ?? [],
- siteId: opts.siteId,
- tags,
- title: opts.title,
- toc: '[]',
- scripts: JSON.stringify({
- jsLoad: scriptJsLoad,
- jsUnload: scriptJsUnload,
- css: scriptCss
- })
- }).returning('*')
- // -> Render page to HTML
- await WIKI.db.pages.renderPage(page)
- // -> Add to tree
- const pathParts = page.path.split('/')
- await WIKI.db.tree.addPage({
- id: page.id,
- parentPath: initial(pathParts).join('/'),
- fileName: last(pathParts),
- locale: page.locale,
- title: page.title,
- tags,
- meta: {
- authorId: page.authorId,
- contentType: page.contentType,
- creatorId: page.creatorId,
- description: page.description,
- isBrowsable: page.isBrowsable,
- ownerId: page.ownerId,
- publishState: page.publishState,
- publishEndDate: page.publishEndDate,
- publishStartDate: page.publishStartDate
- },
- siteId: page.siteId
- })
- // -> Update search vector
- WIKI.db.pages.updatePageSearchVector({ id: page.id })
- // // -> Add to Storage
- // if (!opts.skipStorage) {
- // await WIKI.db.storage.pageEvent({
- // event: 'created',
- // page
- // })
- // }
- // // -> Reconnect Links
- // await WIKI.db.pages.reconnectLinks({
- // locale: page.locale,
- // path: page.path,
- // mode: 'create'
- // })
- // -> Get latest updatedAt
- page.updatedAt = await WIKI.db.pages.query().findById(page.id).select('updatedAt').then(r => r.updatedAt)
- return page
- }
- /**
- * Update an Existing Page
- *
- * @param {Object} opts Page Properties
- * @returns {Promise} Promise of the Page Model Instance
- */
- static async updatePage(opts) {
- // -> Fetch original page
- const ogPage = await WIKI.db.pages.query().findById(opts.id)
- if (!ogPage) {
- throw new Error('ERR_PAGE_NOT_FOUND')
- }
- // -> Check for page access
- if (!WIKI.auth.checkAccess(opts.user, ['write:pages'], {
- locale: ogPage.locale,
- path: ogPage.path
- })) {
- throw new Error('ERR_PAGE_UPDATE_FORBIDDEN')
- }
- const patch = {}
- const historyData = {
- action: 'updated',
- reason: opts.reasonForChange,
- affectedFields: []
- }
- let shouldUpdateSearch = false
- // -> Create version snapshot
- await WIKI.db.pageHistory.addVersion(ogPage)
- // -> Basic fields
- if ('title' in opts.patch) {
- patch.title = opts.patch.title.trim()
- historyData.affectedFields.push('title')
- shouldUpdateSearch = true
- if (patch.title.length < 1) {
- throw new Error('ERR_PAGE_TITLE_MISSING')
- }
- }
- if ('description' in opts.patch) {
- patch.description = opts.patch.description.trim()
- historyData.affectedFields.push('description')
- shouldUpdateSearch = true
- }
- if ('icon' in opts.patch) {
- patch.icon = opts.patch.icon.trim()
- historyData.affectedFields.push('icon')
- }
- if ('alias' in opts.patch) {
- patch.alias = opts.patch.alias.trim()
- historyData.affectedFields.push('alias')
- if (patch.alias.length > 255) {
- throw new Error('ERR_PAGE_ALIAS_TOO_LONG')
- } else if (!aliasRegex.test(patch.alias)) {
- throw new Error('ERR_PAGE_INVALID_ALIAS')
- } else if (patch.alias.length > 0) {
- const dupAliasCheck = await WIKI.db.pages.query().where({
- siteId: ogPage.siteId,
- alias: patch.alias
- }).andWhereNot('id', ogPage.id).select('id').first()
- if (dupAliasCheck) {
- throw new Error('ERR_PAGE_DUPLICATE_ALIAS')
- }
- }
- }
- if ('content' in opts.patch && opts.patch.content) {
- patch.content = opts.patch.content
- historyData.affectedFields.push('content')
- shouldUpdateSearch = true
- }
- // -> Publish State
- if (opts.patch.publishState) {
- patch.publishState = opts.patch.publishState
- historyData.affectedFields.push('publishState')
- if (patch.publishState === 'scheduled' && (!opts.patch.publishStartDate || !opts.patch.publishEndDate)) {
- throw new Error('ERR_PAGE_MISSING_SCHEDULED_DATES')
- }
- }
- if (opts.patch.publishStartDate) {
- patch.publishStartDate = opts.patch.publishStartDate
- historyData.affectedFields.push('publishStartDate')
- }
- if (opts.patch.publishEndDate) {
- patch.publishEndDate = opts.patch.publishEndDate
- historyData.affectedFields.push('publishEndDate')
- }
- // -> Browsable / Searchable Flags
- if ('isBrowsable' in opts.patch) {
- patch.isBrowsable = opts.patch.isBrowsable
- historyData.affectedFields.push('isBrowsable')
- }
- if ('isSearchable' in opts.patch) {
- patch.isSearchable = opts.patch.isSearchable
- historyData.affectedFields.push('isSearchable')
- }
- // -> Page Config
- if ('allowComments' in opts.patch) {
- patch.config = {
- ...patch.config ?? ogPage.config ?? {},
- allowComments: opts.patch.allowComments
- }
- historyData.affectedFields.push('allowComments')
- }
- if ('allowContributions' in opts.patch) {
- patch.config = {
- ...patch.config ?? ogPage.config ?? {},
- allowContributions: opts.patch.allowContributions
- }
- historyData.affectedFields.push('allowContributions')
- }
- if ('allowRatings' in opts.patch) {
- patch.config = {
- ...patch.config ?? ogPage.config ?? {},
- allowRatings: opts.patch.allowRatings
- }
- historyData.affectedFields.push('allowRatings')
- }
- if ('showSidebar' in opts.patch) {
- patch.config = {
- ...patch.config ?? ogPage.config ?? {},
- showSidebar: opts.patch.showSidebar
- }
- historyData.affectedFields.push('showSidebar')
- }
- if ('showTags' in opts.patch) {
- patch.config = {
- ...patch.config ?? ogPage.config ?? {},
- showTags: opts.patch.showTags
- }
- historyData.affectedFields.push('showTags')
- }
- if ('showToc' in opts.patch) {
- patch.config = {
- ...patch.config ?? ogPage.config ?? {},
- showToc: opts.patch.showToc
- }
- historyData.affectedFields.push('showToc')
- }
- if ('tocDepth' in opts.patch) {
- patch.config = {
- ...patch.config ?? ogPage.config ?? {},
- tocDepth: opts.patch.tocDepth
- }
- historyData.affectedFields.push('tocDepth')
- if (patch.config.tocDepth?.min < 1 || patch.config.tocDepth?.min > 6) {
- throw new Error('ERR_PAGE_INVALID_TOC_DEPTH')
- }
- if (patch.config.tocDepth?.max < 1 || patch.config.tocDepth?.max > 6) {
- throw new Error('ERR_PAGE_INVALID_TOC_DEPTH')
- }
- }
- // -> Relations
- if ('relations' in opts.patch) {
- patch.relations = opts.patch.relations.map(r => {
- if (r.label.length < 1) {
- throw new Error('ERR_PAGE_RELATION_LABEL_MISSING')
- } else if (r.label.length > 255) {
- throw new Error('ERR_PAGE_RELATION_LABEL_TOOLONG')
- } else if (r.icon.length > 255) {
- throw new Error('ERR_PAGE_RELATION_ICON_INVALID')
- } else if (r.target.length > 1024) {
- throw new Error('ERR_PAGE_RELATION_TARGET_INVALID')
- }
- return r
- })
- historyData.affectedFields.push('relations')
- }
- // -> Format CSS Scripts
- if (opts.patch.scriptCss) {
- if (WIKI.auth.checkAccess(opts.user, ['write:styles'], {
- locale: ogPage.locale,
- path: ogPage.path
- })) {
- patch.scripts = {
- ...patch.scripts ?? ogPage.scripts ?? {},
- css: !isEmpty(opts.patch.scriptCss) ? new CleanCSS({ inline: false }).minify(opts.patch.scriptCss).styles : ''
- }
- historyData.affectedFields.push('scripts.css')
- }
- }
- // -> Format JS Scripts
- if (opts.patch.scriptJsLoad) {
- if (WIKI.auth.checkAccess(opts.user, ['write:scripts'], {
- locale: ogPage.locale,
- path: ogPage.path
- })) {
- patch.scripts = {
- ...patch.scripts ?? ogPage.scripts ?? {},
- jsLoad: opts.patch.scriptJsLoad ?? ''
- }
- historyData.affectedFields.push('scripts.jsLoad')
- }
- }
- if (opts.patch.scriptJsUnload) {
- if (WIKI.auth.checkAccess(opts.user, ['write:scripts'], {
- locale: ogPage.locale,
- path: ogPage.path
- })) {
- patch.scripts = {
- ...patch.scripts ?? ogPage.scripts ?? {},
- jsUnload: opts.patch.scriptJsUnload ?? ''
- }
- historyData.affectedFields.push('scripts.jsUnload')
- }
- }
- // -> Tags
- if ('tags' in opts.patch) {
- patch.tags = await WIKI.db.tags.processNewTags(opts.patch.tags, ogPage.siteId)
- historyData.affectedFields.push('tags')
- }
- // -> Update page
- await WIKI.db.pages.query().patch({
- ...patch,
- authorId: opts.user.id,
- historyData
- }).where('id', ogPage.id)
- let page = await WIKI.db.pages.getPageFromDb(ogPage.id)
- // -> Render page to HTML
- if (opts.patch.content) {
- await WIKI.db.pages.renderPage(page)
- }
- WIKI.events.outbound.emit('deletePageFromCache', page.hash)
- // -> Update tree
- await WIKI.db.knex('tree').where('id', page.id).update({
- title: page.title,
- tags: page.tags,
- meta: {
- authorId: page.authorId,
- contentType: page.contentType,
- creatorId: page.creatorId,
- description: page.description,
- isBrowsable: page.isBrowsable,
- ownerId: page.ownerId,
- publishState: page.publishState,
- publishEndDate: page.publishEndDate,
- publishStartDate: page.publishStartDate
- },
- updatedAt: page.updatedAt
- })
- // -> Update search vector
- if (shouldUpdateSearch) {
- WIKI.db.pages.updatePageSearchVector({ id: page.id })
- }
- // -> Update on Storage
- // if (!opts.skipStorage) {
- // await WIKI.db.storage.pageEvent({
- // event: 'updated',
- // page
- // })
- // }
- // -> Get latest updatedAt
- page.updatedAt = await WIKI.db.pages.query().findById(page.id).select('updatedAt').then(r => r.updatedAt)
- return page
- }
- /**
- * Update a page text search vector value
- *
- * @param {Object} opts - Options
- * @param {string} [opts.id] - Page ID to update (fetch from DB)
- * @param {Object} [opts.page] - Page object to update (use directly)
- */
- static async updatePageSearchVector ({ id, page }) {
- if (!page) {
- if (!id) {
- throw new Error('Must provide either the page ID or the page object.')
- }
- page = await WIKI.db.pages.query().findById(id).select('id', 'locale', 'render', 'password')
- }
- // -> Exclude password-protected content from being indexed
- const safeContent = page.password ? '' : WIKI.db.pages.cleanHTML(page.render)
- const dictName = getDictNameFromLocale(page.locale)
- return WIKI.db.knex('pages').where('id', page.id).update({
- searchContent: safeContent,
- ts: WIKI.db.knex.raw(`
- setweight(to_tsvector('${dictName}', coalesce(title,'')), 'A') ||
- setweight(to_tsvector('${dictName}', coalesce(description,'')), 'B') ||
- setweight(to_tsvector('${dictName}', coalesce(?,'')), 'C')`, [safeContent])
- })
- }
- /**
- * Refresh Autocomplete Index
- */
- static async refreshAutocompleteIndex () {
- await WIKI.db.knex('autocomplete').truncate()
- await WIKI.db.knex.raw(`
- INSERT INTO "autocomplete" (word)
- SELECT word FROM ts_stat(
- 'SELECT to_tsvector(''simple'', "title") || to_tsvector(''simple'', "description") || to_tsvector(''simple'', "searchContent") FROM "pages" WHERE "isSearchableComputed" IS TRUE'
- )
- `)
- }
- /**
- * Convert an Existing Page
- *
- * @param {Object} opts Page Properties
- * @returns {Promise} Promise of the Page Model Instance
- */
- static async convertPage(opts) {
- // -> Fetch original page
- const ogPage = await WIKI.db.pages.query().findById(opts.id)
- if (!ogPage) {
- throw new Error('Invalid Page Id')
- }
- if (ogPage.editor === opts.editor) {
- throw new Error('Page is already using this editor. Nothing to convert.')
- }
- // -> Check for page access
- if (!WIKI.auth.checkAccess(opts.user, ['write:pages'], {
- locale: ogPage.locale,
- path: ogPage.path
- })) {
- throw new WIKI.Error.PageUpdateForbidden()
- }
- // -> Check content type
- const sourceContentType = ogPage.contentType
- const targetContentType = get(find(WIKI.data.editors, ['key', opts.editor]), `contentType`, 'text')
- const shouldConvert = sourceContentType !== targetContentType
- let convertedContent = null
- // -> Convert content
- if (shouldConvert) {
- // -> Markdown => HTML
- if (sourceContentType === 'markdown' && targetContentType === 'html') {
- if (!ogPage.render) {
- throw new Error('Aborted conversion because rendered page content is empty!')
- }
- convertedContent = ogPage.render
- const $ = cheerio.load(convertedContent, {
- decodeEntities: true
- })
- if ($.root().children().length > 0) {
- // Remove header anchors
- $('.toc-anchor').remove()
- // Attempt to convert tabsets
- $('tabset').each((tabI, tabElm) => {
- const tabHeaders = []
- // -> Extract templates
- $(tabElm).children('template').each((tmplI, tmplElm) => {
- if ($(tmplElm).attr('v-slot:tabs') === '') {
- $(tabElm).before('<ul class="tabset-headers">' + $(tmplElm).html() + '</ul>')
- } else {
- $(tabElm).after('<div class="markdown-tabset">' + $(tmplElm).html() + '</div>')
- }
- })
- // -> Parse tab headers
- $(tabElm).prev('.tabset-headers').children((i, elm) => {
- tabHeaders.push($(elm).html())
- })
- $(tabElm).prev('.tabset-headers').remove()
- // -> Inject tab headers
- $(tabElm).next('.markdown-tabset').children((i, elm) => {
- if (tabHeaders.length > i) {
- $(elm).prepend(`<h2>${tabHeaders[i]}</h2>`)
- }
- })
- $(tabElm).next('.markdown-tabset').prepend('<h1>Tabset</h1>')
- $(tabElm).remove()
- })
- convertedContent = $.html('body').replace('<body>', '').replace('</body>', '').replace(/&#x([0-9a-f]{1,6});/ig, (entity, code) => {
- code = parseInt(code, 16)
- // Don't unescape ASCII characters, assuming they're encoded for a good reason
- if (code < 0x80) return entity
- return String.fromCodePoint(code)
- })
- }
- // -> HTML => Markdown
- } else if (sourceContentType === 'html' && targetContentType === 'markdown') {
- const td = new TurndownService({
- bulletListMarker: '-',
- codeBlockStyle: 'fenced',
- emDelimiter: '*',
- fence: '```',
- headingStyle: 'atx',
- hr: '---',
- linkStyle: 'inlined',
- preformattedCode: true,
- strongDelimiter: '**'
- })
- td.use(turndownPluginGfm)
- td.keep(['kbd'])
- td.addRule('subscript', {
- filter: ['sub'],
- replacement: c => `~${c}~`
- })
- td.addRule('superscript', {
- filter: ['sup'],
- replacement: c => `^${c}^`
- })
- td.addRule('underline', {
- filter: ['u'],
- replacement: c => `_${c}_`
- })
- td.addRule('taskList', {
- filter: (n, o) => {
- return n.nodeName === 'INPUT' && n.getAttribute('type') === 'checkbox'
- },
- replacement: (c, n) => {
- return n.getAttribute('checked') ? '[x] ' : '[ ] '
- }
- })
- td.addRule('removeTocAnchors', {
- filter: (n, o) => {
- return n.nodeName === 'A' && n.classList.contains('toc-anchor')
- },
- replacement: c => ''
- })
- convertedContent = td.turndown(ogPage.content)
- // -> Unsupported
- } else {
- throw new Error('Unsupported source / destination content types combination.')
- }
- }
- // -> Create version snapshot
- if (shouldConvert) {
- await WIKI.db.pageHistory.addVersion({
- ...ogPage,
- action: 'updated',
- versionDate: ogPage.updatedAt
- })
- }
- // -> Update page
- await WIKI.db.pages.query().patch({
- contentType: targetContentType,
- editor: opts.editor,
- ...(convertedContent ? { content: convertedContent } : {})
- }).where('id', ogPage.id)
- const page = await WIKI.db.pages.getPageFromDb(ogPage.id)
- await WIKI.db.pages.deletePageFromCache(page.hash)
- WIKI.events.outbound.emit('deletePageFromCache', page.hash)
- // -> Update on Storage
- await WIKI.db.storage.pageEvent({
- event: 'updated',
- page
- })
- }
- /**
- * Move a Page
- *
- * @param {Object} opts Page Properties
- * @returns {Promise} Promise with no value
- */
- static async movePage(opts) {
- let page
- if (has(opts, 'id')) {
- page = await WIKI.db.pages.query().findById(opts.id)
- } else {
- page = await WIKI.db.pages.query().findOne({
- path: opts.path,
- locale: opts.locale
- })
- }
- if (!page) {
- throw new WIKI.Error.PageNotFound()
- }
- // -> Validate path
- if (opts.destinationPath.includes('.') || opts.destinationPath.includes(' ') || opts.destinationPath.includes('\\') || opts.destinationPath.includes('//')) {
- throw new WIKI.Error.PageIllegalPath()
- }
- // -> Remove trailing slash
- if (opts.destinationPath.endsWith('/')) {
- opts.destinationPath = opts.destinationPath.slice(0, -1)
- }
- // -> Remove starting slash
- if (opts.destinationPath.startsWith('/')) {
- opts.destinationPath = opts.destinationPath.slice(1)
- }
- // -> Check for source page access
- if (!WIKI.auth.checkAccess(opts.user, ['manage:pages'], {
- locale: page.locale,
- path: page.path
- })) {
- throw new WIKI.Error.PageMoveForbidden()
- }
- // -> Check for destination page access
- if (!WIKI.auth.checkAccess(opts.user, ['write:pages'], {
- locale: opts.destinationLocale,
- path: opts.destinationPath
- })) {
- throw new WIKI.Error.PageMoveForbidden()
- }
- // -> Check for existing page at destination path
- const destPage = await WIKI.db.pages.query().findOne({
- path: opts.destinationPath,
- locale: opts.destinationLocale
- })
- if (destPage) {
- throw new WIKI.Error.PagePathCollision()
- }
- // -> Create version snapshot
- await WIKI.db.pageHistory.addVersion({
- ...page,
- action: 'moved',
- versionDate: page.updatedAt
- })
- const destinationHash = generateHash({ path: opts.destinationPath, locale: opts.destinationLocale })
- // -> Move page
- const destinationTitle = (page.title === page.path ? opts.destinationPath : page.title)
- await WIKI.db.pages.query().patch({
- path: opts.destinationPath,
- locale: opts.destinationLocale,
- title: destinationTitle,
- hash: destinationHash
- }).findById(page.id)
- await WIKI.db.pages.deletePageFromCache(page.hash)
- WIKI.events.outbound.emit('deletePageFromCache', page.hash)
- // -> Rebuild page tree
- await WIKI.db.pages.rebuildTree()
- // -> Rename in Search Index
- const pageContents = await WIKI.db.pages.query().findById(page.id).select('render')
- page.safeContent = WIKI.db.pages.cleanHTML(pageContents.render)
- await WIKI.data.searchEngine.renamed({
- ...page,
- destinationPath: opts.destinationPath,
- destinationLocale: opts.destinationLocale,
- destinationHash
- })
- // -> Rename in Storage
- if (!opts.skipStorage) {
- await WIKI.db.storage.pageEvent({
- event: 'renamed',
- page: {
- ...page,
- destinationPath: opts.destinationPath,
- destinationLocale: opts.destinationLocale,
- destinationHash,
- moveAuthorId: opts.user.id,
- moveAuthorName: opts.user.name,
- moveAuthorEmail: opts.user.email
- }
- })
- }
- // -> Reconnect Links : Changing old links to the new path
- await WIKI.db.pages.reconnectLinks({
- sourceLocale: page.locale,
- sourcePath: page.path,
- locale: opts.destinationLocale,
- path: opts.destinationPath,
- mode: 'move'
- })
- // -> Reconnect Links : Validate invalid links to the new path
- await WIKI.db.pages.reconnectLinks({
- locale: opts.destinationLocale,
- path: opts.destinationPath,
- mode: 'create'
- })
- }
- /**
- * Delete an Existing Page
- *
- * @param {Object} opts Page Properties
- * @returns {Promise} Promise with no value
- */
- static async deletePage(opts) {
- const page = await WIKI.db.pages.getPageFromDb(has(opts, 'id') ? opts.id : opts)
- if (!page) {
- throw new WIKI.Error.PageNotFound()
- }
- // -> Check for page access
- if (!WIKI.auth.checkAccess(opts.user, ['delete:pages'], {
- locale: page.locale,
- path: page.path
- })) {
- throw new WIKI.Error.PageDeleteForbidden()
- }
- // -> Create version snapshot
- await WIKI.db.pageHistory.addVersion({
- ...page,
- action: 'deleted',
- versionDate: page.updatedAt
- })
- // -> Delete page
- await WIKI.db.pages.query().delete().where('id', page.id)
- await WIKI.db.knex('tree').where('id', page.id).del()
- await WIKI.db.pages.deletePageFromCache(page.hash)
- WIKI.events.outbound.emit('deletePageFromCache', page.hash)
- // -> Delete from Storage
- if (!opts.skipStorage) {
- // await WIKI.db.storage.pageEvent({
- // event: 'deleted',
- // page
- // })
- }
- // -> Reconnect Links
- await WIKI.db.pages.reconnectLinks({
- locale: page.locale,
- path: page.path,
- mode: 'delete'
- })
- }
- /**
- * Reconnect links to new/move/deleted page
- *
- * @param {Object} opts - Page parameters
- * @param {string} opts.path - Page Path
- * @param {string} opts.locale - Page Locale Code
- * @param {string} [opts.sourcePath] - Previous Page Path (move only)
- * @param {string} [opts.sourceLocale] - Previous Page Locale Code (move only)
- * @param {string} opts.mode - Page Update mode (create, move, delete)
- * @returns {Promise} Promise with no value
- */
- static async reconnectLinks (opts) {
- return
- // TODO: fix this
- const pageHref = `/${opts.locale}/${opts.path}`
- let replaceArgs = {
- from: '',
- to: ''
- }
- switch (opts.mode) {
- case 'create':
- replaceArgs.from = `<a href="${pageHref}" class="is-internal-link is-invalid-page">`
- replaceArgs.to = `<a href="${pageHref}" class="is-internal-link is-valid-page">`
- break
- case 'move':
- const prevPageHref = `/${opts.sourceLocale}/${opts.sourcePath}`
- replaceArgs.from = `<a href="${prevPageHref}" class="is-internal-link is-valid-page">`
- replaceArgs.to = `<a href="${pageHref}" class="is-internal-link is-valid-page">`
- break
- case 'delete':
- replaceArgs.from = `<a href="${pageHref}" class="is-internal-link is-valid-page">`
- replaceArgs.to = `<a href="${pageHref}" class="is-internal-link is-invalid-page">`
- break
- default:
- return false
- }
- let affectedHashes = []
- // -> Perform replace and return affected page hashes (POSTGRES only)
- if (WIKI.config.db.type === 'postgres') {
- const qryHashes = await WIKI.db.pages.query()
- .returning('hash')
- .patch({
- render: WIKI.db.knex.raw('REPLACE(??, ?, ?)', ['render', replaceArgs.from, replaceArgs.to])
- })
- .whereIn('pages.id', function () {
- this.select('pageLinks.pageId').from('pageLinks').where({
- 'pageLinks.path': opts.path,
- 'pageLinks.locale': opts.locale
- })
- })
- affectedHashes = qryHashes.map(h => h.hash)
- } else {
- // -> Perform replace, then query affected page hashes (MYSQL, MARIADB, MSSQL, SQLITE only)
- await WIKI.db.pages.query()
- .patch({
- render: WIKI.db.knex.raw('REPLACE(??, ?, ?)', ['render', replaceArgs.from, replaceArgs.to])
- })
- .whereIn('pages.id', function () {
- this.select('pageLinks.pageId').from('pageLinks').where({
- 'pageLinks.path': opts.path,
- 'pageLinks.locale': opts.locale
- })
- })
- const qryHashes = await WIKI.db.pages.query()
- .column('hash')
- .whereIn('pages.id', function () {
- this.select('pageLinks.pageId').from('pageLinks').where({
- 'pageLinks.path': opts.path,
- 'pageLinks.locale': opts.locale
- })
- })
- affectedHashes = qryHashes.map(h => h.hash)
- }
- for (const hash of affectedHashes) {
- await WIKI.db.pages.deletePageFromCache(hash)
- WIKI.events.outbound.emit('deletePageFromCache', hash)
- }
- }
- /**
- * Trigger the rendering of a page
- *
- * @param {Object} page Page Model Instance
- * @returns {Promise} Promise with no value
- */
- static async renderPage(page) {
- const renderJob = await WIKI.scheduler.addJob({
- task: 'render-page',
- payload: {
- id: page.id
- },
- maxRetries: 0,
- promise: true
- })
- return renderJob.promise
- }
- /**
- * Fetch an Existing Page from Cache if possible, from DB otherwise and save render to Cache
- *
- * @param {Object} opts Page Properties
- * @returns {Promise} Promise of the Page Model Instance
- */
- static async getPage(opts) {
- return WIKI.db.pages.getPageFromDb(opts)
- // -> Get from cache first
- let page = await WIKI.db.pages.getPageFromCache(opts)
- if (!page) {
- // -> Get from DB
- page = await WIKI.db.pages.getPageFromDb(opts)
- if (page) {
- if (page.render) {
- // -> Save render to cache
- await WIKI.db.pages.savePageToCache(page)
- } else {
- // -> No render? Possible duplicate issue
- /* TODO: Detect duplicate and delete */
- throw new Error('Error while fetching page. No rendered version of this page exists. Try to edit the page and save it again.')
- }
- }
- }
- return page
- }
- /**
- * Fetch an Existing Page from the Database
- *
- * @param {Object} opts Page Properties
- * @returns {Promise} Promise of the Page Model Instance
- */
- static async getPageFromDb(opts) {
- const queryModeID = typeof opts === 'string'
- try {
- return WIKI.db.pages.query()
- .column([
- 'pages.*',
- {
- authorName: 'author.name',
- authorEmail: 'author.email',
- creatorName: 'creator.name',
- creatorEmail: 'creator.email'
- },
- 'tree.navigationId',
- 'tree.navigationMode'
- ])
- .joinRelated('author')
- .joinRelated('creator')
- .leftJoin('tree', 'pages.id', 'tree.id')
- .where(queryModeID ? {
- 'pages.id': opts
- } : {
- 'pages.siteId': opts.siteId,
- 'pages.path': opts.path,
- 'pages.locale': opts.locale
- })
- // .andWhere(builder => {
- // if (queryModeID) return
- // builder.where({
- // 'pages.isPublished': true
- // }).orWhere({
- // 'pages.isPublished': false,
- // 'pages.authorId': opts.userId
- // })
- // })
- .first()
- } catch (err) {
- WIKI.logger.warn(err)
- throw err
- }
- }
- /**
- * Save a Page Model Instance to Cache
- *
- * @param {Object} page Page Model Instance
- * @returns {Promise} Promise with no value
- */
- static async savePageToCache(page) {
- const cachePath = path.resolve(WIKI.ROOTPATH, WIKI.config.dataPath, `cache/${page.hash}.bin`)
- await fse.outputFile(cachePath, WIKI.db.pages.cacheSchema.encode({
- id: page.id,
- authorId: page.authorId,
- authorName: page.authorName,
- createdAt: page.createdAt.toISOString(),
- creatorId: page.creatorId,
- creatorName: page.creatorName,
- description: page.description,
- editor: page.editor,
- extra: {
- css: get(page, 'extra.css', ''),
- js: get(page, 'extra.js', '')
- },
- publishState: page.publishState ?? '',
- publishEndDate: page.publishEndDate ?? '',
- publishStartDate: page.publishStartDate ?? '',
- render: page.render,
- siteId: page.siteId,
- tags: page.tags.map(t => pick(t, ['tag'])),
- title: page.title,
- toc: isString(page.toc) ? page.toc : JSON.stringify(page.toc),
- updatedAt: page.updatedAt.toISOString()
- }))
- }
- /**
- * Fetch an Existing Page from Cache
- *
- * @param {Object} opts Page Properties
- * @returns {Promise} Promise of the Page Model Instance
- */
- static async getPageFromCache(opts) {
- const pageHash = generateHash({ path: opts.path, locale: opts.locale })
- const cachePath = path.resolve(WIKI.ROOTPATH, WIKI.config.dataPath, `cache/${pageHash}.bin`)
- try {
- const pageBuffer = await fse.readFile(cachePath)
- let page = WIKI.db.pages.cacheSchema.decode(pageBuffer)
- return {
- ...page,
- path: opts.path,
- locale: opts.locale
- }
- } catch (err) {
- if (err.code === 'ENOENT') {
- return false
- }
- WIKI.logger.error(err)
- throw err
- }
- }
- /**
- * Delete an Existing Page from Cache
- *
- * @param {String} page Page Unique Hash
- * @returns {Promise} Promise with no value
- */
- static async deletePageFromCache(hash) {
- return fse.remove(path.resolve(WIKI.ROOTPATH, WIKI.config.dataPath, `cache/${hash}.bin`))
- }
- /**
- * Flush the contents of the Cache
- */
- static async flushCache() {
- return fse.emptyDir(path.resolve(WIKI.ROOTPATH, WIKI.config.dataPath, `cache`))
- }
- /**
- * Migrate all pages from a source locale to the target locale
- *
- * @param {Object} opts Migration properties
- * @param {string} opts.sourceLocale Source Locale Code
- * @param {string} opts.targetLocale Target Locale Code
- * @returns {Promise} Promise with no value
- */
- static async migrateToLocale({ sourceLocale, targetLocale }) {
- return WIKI.db.pages.query()
- .patch({
- locale: targetLocale
- })
- .where({
- locale: sourceLocale
- })
- .whereNotExists(function() {
- this.select('id').from('pages AS pagesm').where('pagesm.locale', targetLocale).andWhereRaw('pagesm.path = pages.path')
- })
- }
- /**
- * Clean raw HTML from content for use in search engines
- *
- * @param {string} rawHTML Raw HTML
- * @returns {string} Cleaned Content Text
- */
- static cleanHTML(rawHTML = '') {
- const data = striptags(rawHTML || '', [], ' ')
- .replace(emojiRegex(), '')
- return he.decode(data)
- .replace(/(\r\n|\n|\r)/gm, ' ')
- .replace(/\s\s+/g, ' ')
- }
- /**
- * Subscribe to HA propagation events
- */
- static subscribeToEvents() {
- WIKI.events.inbound.on('deletePageFromCache', hash => {
- WIKI.db.pages.deletePageFromCache(hash)
- })
- WIKI.events.inbound.on('flushCache', () => {
- WIKI.db.pages.flushCache()
- })
- }
- }
|