mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
77c8677e58
* Fix SSR error handling. * Remove unwanted console.logs * Fix a typo. * Fix current tests. * Add a new test case for this case. * Error should only be logged if it is not a 404
72 lines
1.8 KiB
JavaScript
72 lines
1.8 KiB
JavaScript
import {join, parse, normalize, sep} from 'path'
|
|
|
|
export function pageNotFoundError (page) {
|
|
const err = new Error(`Cannot find module for page: ${page}`)
|
|
err.code = 'ENOENT'
|
|
return err
|
|
}
|
|
|
|
export function normalizePagePath (page) {
|
|
// If the page is `/` we need to append `/index`, otherwise the returned directory root will be bundles instead of pages
|
|
if (page === '/') {
|
|
page = '/index'
|
|
}
|
|
|
|
// Resolve on anything that doesn't start with `/`
|
|
if (page[0] !== '/') {
|
|
page = `/${page}`
|
|
}
|
|
|
|
// Windows compatibility
|
|
if (sep !== '/') {
|
|
page = page.replace(/\//g, sep)
|
|
}
|
|
|
|
// Throw when using ../ etc in the pathname
|
|
const resolvedPage = normalize(page)
|
|
if (page !== resolvedPage) {
|
|
throw new Error('Requested and resolved page mismatch')
|
|
}
|
|
|
|
return page
|
|
}
|
|
|
|
export function getPagePath (page, {dir, dist}) {
|
|
const pageBundlesPath = join(dir, dist, 'dist', 'bundles', 'pages')
|
|
|
|
try {
|
|
page = normalizePagePath(page)
|
|
} catch (err) {
|
|
console.error(err)
|
|
throw pageNotFoundError(page)
|
|
}
|
|
|
|
const pagePath = join(pageBundlesPath, page) // Path to the page that is to be loaded
|
|
|
|
// Don't allow wandering outside of the bundles directory
|
|
const pathDir = parse(pagePath).dir
|
|
if (pathDir.indexOf(pageBundlesPath) !== 0) {
|
|
console.error('Resolved page path goes outside of bundles path')
|
|
throw pageNotFoundError(page)
|
|
}
|
|
|
|
return pagePath
|
|
}
|
|
|
|
export default function requirePage (page, {dir, dist}) {
|
|
const pagePath = getPagePath(page, {dir, dist})
|
|
|
|
try {
|
|
return require(pagePath)
|
|
} catch (err) {
|
|
if (err.code === 'MODULE_NOT_FOUND') {
|
|
throw pageNotFoundError(page)
|
|
}
|
|
console.error(err)
|
|
// If this is not a MODULE_NOT_FOUND error,
|
|
// it should be something with the content of the page.
|
|
// So, Next.js rendering system will catch it and process.
|
|
throw err
|
|
}
|
|
}
|