redirect to language url for ghes 3.0 and 3.1 (#29136)

Co-authored-by: Hector Alfaro <hectorsector@github.com>
This commit is contained in:
Peter Bengtsson 2022-07-19 17:22:48 +02:00 коммит произвёл GitHub
Родитель 44a91fdec5
Коммит 9dce4cd96d
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 14 добавлений и 9 удалений

Просмотреть файл

@ -66,7 +66,7 @@ export default function handleRedirects(req, res, next) {
// But for example, a `/authentication/connecting-to-github-with-ssh`
// needs to become `/en/authentication/connecting-to-github-with-ssh`
const possibleRedirectTo = `/en${req.path}`
if (possibleRedirectTo in req.context.pages || isDeprecatedAdminReleaseNotes(req.path)) {
if (possibleRedirectTo in req.context.pages || isDeprecatedVersion(req.path)) {
const language = getLanguage(req)
// Note, it's important to use `req.url` here and not `req.path`
@ -84,7 +84,7 @@ export default function handleRedirects(req, res, next) {
// do not redirect if the redirected page can't be found
if (
!(req.context.pages[removeQueryParams(redirect)] || isDeprecatedAdminReleaseNotes(req.path)) &&
!(req.context.pages[removeQueryParams(redirect)] || isDeprecatedVersion(req.path)) &&
!redirect.includes('://')
) {
// display error on the page in development, but not in production
@ -139,18 +139,17 @@ function removeQueryParams(redirect) {
return new URL(redirect, 'https://docs.github.com').pathname
}
function isDeprecatedAdminReleaseNotes(path) {
function isDeprecatedVersion(path) {
// When we rewrote how redirects work, from a lookup model to a
// functional model, the enterprise-server releases that got
// deprecated since then fall between the cracks. Especially
// for custom NextJS page-like pages like /admin/release-notes
// These URLs don't come from any remaining .json lookup file
// and they're not active pages either (e.g. req.context.pages)
if (path.includes('admin/release-notes')) {
for (const version of deprecatedWithFunctionalRedirects) {
if (path.includes(`enterprise-server@${version}`)) {
return true
}
const split = path.split('/')
for (const version of deprecatedWithFunctionalRedirects) {
if (split.includes(`enterprise-server@${version}`)) {
return true
}
}
return false

Просмотреть файл

@ -566,7 +566,7 @@ describe('redirects', () => {
})
})
describe('admin/release-notes redirects that lack language', () => {
describe('recently deprecated ghes version redirects that lack language', () => {
test('test redirect to an active enterprise-server version', async () => {
const url = `/enterprise-server@${enterpriseServerReleases.latest}/admin/release-notes`
const res = await get(url)
@ -585,6 +585,12 @@ describe('redirects', () => {
expect(res.statusCode).toBe(302)
expect(res.headers.location).toBe(`/en${url}`)
})
test('any enterprise-server deprecated with functional redirects', async () => {
const url = `/enterprise-server@${deprecatedWithFunctionalRedirects[0]}`
const res = await get(url)
expect(res.statusCode).toBe(302)
expect(res.headers.location).toBe(`/en${url}`)
})
})
// These tests exists because of issue #1960