Co-authored-by: Grace Park <gracepark@github.com> Co-authored-by: Joe Oak <41307427+joeoak@users.noreply.github.com>
215 lines
8.3 KiB
JavaScript
215 lines
8.3 KiB
JavaScript
import path from 'path'
|
|
import { visit } from 'unist-util-visit'
|
|
import { distance } from 'fastest-levenshtein'
|
|
import { getPathWithoutLanguage, getVersionStringFromPath } from '../../path-utils.js'
|
|
import { getNewVersionedPath } from '../../old-versions-utils.js'
|
|
import patterns from '../../patterns.js'
|
|
import { deprecated, latest } from '../../enterprise-server-releases.js'
|
|
import nonEnterpriseDefaultVersion from '../../non-enterprise-default-version.js'
|
|
import { allVersions } from '../../all-versions.js'
|
|
import removeFPTFromPath from '../../remove-fpt-from-path.js'
|
|
import readJsonFile from '../../read-json-file.js'
|
|
import findPage from '../../find-page.js'
|
|
|
|
const supportedPlans = new Set(Object.values(allVersions).map((v) => v.plan))
|
|
const externalRedirects = readJsonFile('./lib/redirects/external-sites.json')
|
|
|
|
// Meaning it can be 'AUTOTITLE ' or ' AUTOTITLE' or 'AUTOTITLE'
|
|
const AUTOTITLE = /^\s*AUTOTITLE\s*$/
|
|
|
|
// This is exported because in translations, we need to treat this as
|
|
// one of those Liquid parsing errors which happens on corrupted translations
|
|
// which we use to know that we need to fall back to English.
|
|
export class TitleFromAutotitleError extends Error {}
|
|
|
|
// E.g. `/en/pages/foo` or `/pt/pages/any/thing`
|
|
// But not `/en/pages` because that's not an article page anyway.
|
|
const ENABLED_PATHS_REGEX = /^\/\w{2}\/pages\//
|
|
|
|
// Return true if we should bother setting data attributes.
|
|
// This becomes our feature-flag switch for enabling/disabling the
|
|
// hover preview cards.
|
|
// If you're on a page where we don't want hover preview cards, we
|
|
// can just omit these data attributes then the client-side will
|
|
// simply not be able to display them because the data isn't there.
|
|
function setDataAttributesOnCurrentPath(path) {
|
|
return ENABLED_PATHS_REGEX.test(path)
|
|
}
|
|
|
|
// Matches any <a> tags with an href that starts with `/`
|
|
const matcher = (node) =>
|
|
node.type === 'element' &&
|
|
node.tagName === 'a' &&
|
|
node.properties &&
|
|
node.properties.href &&
|
|
node.properties.href.startsWith('/')
|
|
|
|
// Content authors write links like `/some/article/path`, but they need to be
|
|
// rewritten on the fly to match the current language and page version
|
|
export default function rewriteLocalLinks(context) {
|
|
const { currentLanguage, currentVersion, currentPath } = context
|
|
// There's no languageCode or version passed, so nothing to do
|
|
if (!currentLanguage || !currentVersion) return
|
|
|
|
return async (tree) => {
|
|
const promises = []
|
|
|
|
visit(tree, matcher, (node) => {
|
|
const newHref = getNewHref(node, currentLanguage, currentVersion)
|
|
if (newHref) {
|
|
node.properties.href = newHref
|
|
if (setDataAttributesOnCurrentPath(currentPath)) {
|
|
promises.push(dataAttributesSetter(node, context))
|
|
}
|
|
}
|
|
for (const child of node.children) {
|
|
if (child.value) {
|
|
if (AUTOTITLE.test(child.value)) {
|
|
promises.push(getNewTitleSetter(child, node.properties.href, context))
|
|
} else if (process.env.NODE_ENV !== 'production') {
|
|
// Throw if the link text *almost* is AUTOTITLE
|
|
if (
|
|
child.value.toUpperCase() === 'AUTOTITLE' ||
|
|
distance(child.value.toUpperCase(), 'AUTOTITLE') <= 2
|
|
) {
|
|
throw new Error(
|
|
`Found link text '${child.value}', expected 'AUTOTITLE'. ` +
|
|
`Find the mention of the link text '${child.value}' and change it to 'AUTOTITLE'. Case matters.`
|
|
)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
})
|
|
|
|
if (promises.length) {
|
|
await Promise.all(promises)
|
|
}
|
|
|
|
return tree
|
|
}
|
|
}
|
|
|
|
async function dataAttributesSetter(node, context) {
|
|
const href = node.properties.href
|
|
const page = findPage(href, context.pages, context.redirects)
|
|
if (!page) {
|
|
// If this happens, it's a link that might be broken or links to
|
|
// something that might not actually be an internal link to a
|
|
// existing page such as link to archived enterprise version.
|
|
return
|
|
}
|
|
let productPage = null
|
|
for (const permalink of page.permalinks) {
|
|
const rootHref = permalink.href
|
|
.split('/')
|
|
.slice(0, permalink.pageVersion === 'free-pro-team@latest' ? 3 : 4)
|
|
.join('/')
|
|
const rootPage = context.pages[rootHref]
|
|
if (rootPage) {
|
|
productPage = rootPage
|
|
break
|
|
}
|
|
}
|
|
|
|
if (productPage) {
|
|
let productTitle = await productPage.renderProp('shortTitle', context, {
|
|
textOnly: true,
|
|
})
|
|
if (!productTitle) {
|
|
productTitle = await productPage.renderProp('title', context, {
|
|
textOnly: true,
|
|
})
|
|
}
|
|
node.properties['data-product-title'] = productTitle
|
|
}
|
|
node.properties['data-title'] = await page.renderProp('title', context, { textOnly: true })
|
|
node.properties['data-intro'] = await page.renderProp('intro', context, { textOnly: true })
|
|
}
|
|
|
|
async function getNewTitleSetter(child, href, context) {
|
|
child.value = await getNewTitle(href, context)
|
|
}
|
|
|
|
async function getNewTitle(href, context) {
|
|
const page = findPage(href, context.pages, context.redirects)
|
|
if (!page) {
|
|
throw new TitleFromAutotitleError(`Unable to find Page by href '${href}'`)
|
|
}
|
|
return await page.renderProp('title', context, { textOnly: true })
|
|
}
|
|
|
|
function getNewHref(node, languageCode, version) {
|
|
const { href } = node.properties
|
|
// Exceptions to link rewriting
|
|
if (href.startsWith('/assets')) return
|
|
if (href.startsWith('/public')) return
|
|
if (href in externalRedirects) return
|
|
|
|
let newHref = href
|
|
// If the link has a hardcoded plan or version in it, do not update other than adding a language code
|
|
// Examples:
|
|
// /enterprise-server@2.20/rest/reference/oauth-authorizations
|
|
// /enterprise-server/rest/reference/oauth-authorizations (this redirects to the latest version)
|
|
// /enterprise-server@latest/rest/reference/oauth-authorizations (this redirects to the latest version)
|
|
const firstLinkSegment = href.split('/')[1]
|
|
if (supportedPlans.has(firstLinkSegment.split('@')[0])) {
|
|
newHref = path.posix.join('/', languageCode, href)
|
|
}
|
|
|
|
// If the link includes a deprecated version, do not update other than adding a language code
|
|
// Example: /enterprise/11.10.340/admin/articles/upgrading-to-the-latest-release
|
|
const oldEnterpriseVersionNumber = href.match(patterns.getEnterpriseVersionNumber)
|
|
if (oldEnterpriseVersionNumber && deprecated.includes(oldEnterpriseVersionNumber[1])) {
|
|
newHref = path.posix.join('/', languageCode, href)
|
|
}
|
|
|
|
// Treat the unicorn where we have version numbers.
|
|
// As of Jan 2022, the only plan that uses version numbers is
|
|
// 'enterprise-server'. But some day there might more and when that day
|
|
// comes this line needs to account for all those where "latest" needs
|
|
// to be replaced by its actual latest version number.
|
|
// The reason for doing this rewrite is that we want to suppress the
|
|
// use of '...@latest' because it's just going to redirect when viewed
|
|
// anyway. And if a page is archived, all "latest" is replaced to the
|
|
// current number anyway.
|
|
newHref = newHref.replace('/enterprise-server@latest/', `/enterprise-server@${latest}/`)
|
|
|
|
if (newHref === href) {
|
|
// start clean with no language (TOC pages already include the lang codes via lib/liquid-tags/link.js)
|
|
const hrefWithoutLang = getPathWithoutLanguage(href)
|
|
|
|
// normalize any legacy links so they conform to new link structure
|
|
newHref = path.posix.join('/', languageCode, getNewVersionedPath(hrefWithoutLang))
|
|
|
|
// get the current version from the link
|
|
const versionFromHref = getVersionStringFromPath(newHref)
|
|
|
|
// ------ BEGIN ONE-OFF OVERRIDES ------//
|
|
// dotcom-only links always point to dotcom
|
|
if (node.properties.className && node.properties.className.includes('dotcom-only')) {
|
|
// See internal issue #2672
|
|
console.warn('This is deprecated and will soon be removed')
|
|
version = nonEnterpriseDefaultVersion
|
|
}
|
|
|
|
// desktop links always point to dotcom
|
|
if (patterns.desktop.test(hrefWithoutLang)) {
|
|
version = nonEnterpriseDefaultVersion
|
|
}
|
|
|
|
// admin links on dotcom always point to Enterprise Cloud
|
|
if (patterns.adminProduct.test(hrefWithoutLang) && version === nonEnterpriseDefaultVersion) {
|
|
version = 'enterprise-cloud@latest'
|
|
}
|
|
// ------ END ONE-OFF OVERRIDES ------//
|
|
|
|
// update the version in the link
|
|
newHref = newHref.replace(versionFromHref, version)
|
|
}
|
|
newHref = removeFPTFromPath(newHref)
|
|
|
|
newHref = newHref.replace(patterns.trailingSlash, '$1')
|
|
return newHref
|
|
}
|