123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 |
- const _ = require('lodash')
- const cheerio = require('cheerio')
- /* global WIKI */
- module.exports = {
- async render() {
- const $ = cheerio.load(this.input)
- if ($.root().children().length < 1) {
- return ''
- }
- for (let child of this.children) {
- const renderer = require(`../${_.kebabCase(child.key)}/renderer.js`)
- renderer.init($, child.config)
- }
- // --------------------------------
- // Detect internal / external links
- // --------------------------------
- let internalRefs = []
- const reservedPrefixes = /^\/[a-z]\//gi
- const isHostSet = WIKI.config.host.length > 7 && WIKI.config.host !== 'http://'
- if (!isHostSet) {
- WIKI.logger.warn('Host is not set. You must set the Site Host under General in the Administration Area!')
- }
- $('a').each((i, elm) => {
- let href = $(elm).attr('href')
- // -> Ignore empty / anchor links
- if (!href || href.length < 1 || href.indexOf('#') === 0) {
- return
- }
- // -> Strip host from local links
- if (isHostSet && href.indexOf(WIKI.config.site.host) === 0) {
- href = href.replace(WIKI.config.site.host, '')
- }
- // -> Assign local / external tag
- if (href.indexOf('://') < 0) {
- // -> Remove trailing slash
- if (_.endsWith('/')) {
- href = href.slice(0, -1)
- }
- // -> Check for system prefix
- if (!reservedPrefixes.test(href)) {
- $(elm).addClass(`is-internal-link`)
- // -> Reformat paths
- if (href.indexOf('/') !== 0) {
- href = `/${this.page.localeCode}/${this.page.path}/${href}`
- } else if (href.charAt(3) !== '/') {
- href = `/${this.page.localeCode}${href}`
- }
- // -> Save internal references
- internalRefs.push({
- localeCode: href.substring(1, 3),
- path: _.head(href.substring(4).split('#'))
- })
- } else {
- $(elm).addClass(`is-system-link`)
- }
- } else {
- $(elm).addClass(`is-external-link`)
- }
- // -> Update element
- $(elm).attr('href', href)
- })
- // --------------------------------
- // Detect internal link states
- // --------------------------------
- const pastLinks = await this.page.$relatedQuery('links')
- if (internalRefs.length > 0) {
- // -> Find matching pages
- const results = await WIKI.models.pages.query().column('id', 'path', 'localeCode').where(builder => {
- internalRefs.forEach((ref, idx) => {
- if (idx < 1) {
- builder.where(ref)
- } else {
- builder.orWhere(ref)
- }
- })
- })
- // -> Apply tag to internal links for found pages
- $('a.is-internal-link').each((i, elm) => {
- const href = $(elm).attr('href')
- const hrefObj = {
- localeCode: href.substring(1, 3),
- path: _.head(href.substring(4).split('#'))
- }
- if (_.some(results, r => {
- return r.localeCode === hrefObj.localeCode && r.path === hrefObj.path
- })) {
- $(elm).addClass(`is-valid-page`)
- } else {
- $(elm).addClass(`is-invalid-page`)
- }
- })
- // -> Add missing links
- const missingLinks = _.differenceWith(internalRefs, pastLinks, (nLink, pLink) => {
- return nLink.localeCode === pLink.localeCode && nLink.path === pLink.path
- })
- if (missingLinks.length > 0) {
- if (WIKI.config.db.type === 'postgres') {
- await WIKI.models.pageLinks.query().insert(missingLinks.map(lnk => ({
- pageId: this.page.id,
- path: lnk.path,
- localeCode: lnk.localeCode
- })))
- } else {
- for (const lnk of missingLinks) {
- await WIKI.models.pageLinks.query().insert({
- pageId: this.page.id,
- path: lnk.path,
- localeCode: lnk.localeCode
- })
- }
- }
- }
- }
- // -> Remove outdated links
- if (pastLinks) {
- const outdatedLinks = _.differenceWith(pastLinks, internalRefs, (nLink, pLink) => {
- return nLink.localeCode === pLink.localeCode && nLink.path === pLink.path
- })
- if (outdatedLinks.length > 0) {
- await WIKI.models.pageLinks.query().delete().whereIn('id', _.map(outdatedLinks, 'id'))
- }
- }
- return $.html('body').replace('<body>', '').replace('</body>', '')
- }
- }
|