mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
132 lines
4.1 KiB
JavaScript
132 lines
4.1 KiB
JavaScript
import generateETag from 'etag'
|
|
import fresh from 'fresh'
|
|
import consola from 'consola'
|
|
|
|
import { getContext } from '../../common/utils'
|
|
|
|
export default async function nuxtMiddleware(req, res, next) {
|
|
// Get context
|
|
const context = getContext(req, res)
|
|
|
|
res.statusCode = 200
|
|
try {
|
|
const result = await this.renderRoute(req.url, context)
|
|
await this.nuxt.callHook('render:route', req.url, result, context)
|
|
const {
|
|
html,
|
|
cspScriptSrcHashSet,
|
|
error,
|
|
redirected,
|
|
getPreloadFiles
|
|
} = result
|
|
|
|
if (redirected) {
|
|
return html
|
|
}
|
|
if (error) {
|
|
res.statusCode = context.nuxt.error.statusCode || 500
|
|
}
|
|
|
|
// Add ETag header
|
|
if (!error && this.options.render.etag) {
|
|
const etag = generateETag(html, this.options.render.etag)
|
|
if (fresh(req.headers, { etag })) {
|
|
res.statusCode = 304
|
|
res.end()
|
|
return
|
|
}
|
|
res.setHeader('ETag', etag)
|
|
}
|
|
|
|
// HTTP2 push headers for preload assets
|
|
if (!error && this.options.render.http2.push) {
|
|
// Parse resourceHints to extract HTTP.2 prefetch/push headers
|
|
// https://w3c.github.io/preload/#server-push-http-2
|
|
const pushAssets = []
|
|
const preloadFiles = getPreloadFiles()
|
|
const { shouldPush } = this.options.render.http2
|
|
const { publicPath } = this.resources.clientManifest
|
|
|
|
preloadFiles.forEach(({ file, asType, fileWithoutQuery }) => {
|
|
// By default, we only preload scripts or css
|
|
/* istanbul ignore if */
|
|
if (!shouldPush && asType !== 'script' && asType !== 'style') {
|
|
return
|
|
}
|
|
|
|
// User wants to explicitly control what to preload
|
|
if (shouldPush && !shouldPush(fileWithoutQuery, asType)) {
|
|
return
|
|
}
|
|
|
|
pushAssets.push(`<${publicPath}${file}>; rel=preload; as=${asType}`)
|
|
})
|
|
|
|
// Pass with single Link header
|
|
// https://blog.cloudflare.com/http-2-server-push-with-multiple-assets-per-link-header
|
|
// https://www.w3.org/Protocols/9707-link-header.html
|
|
res.setHeader('Link', pushAssets.join(','))
|
|
}
|
|
|
|
if (this.options.render.csp) {
|
|
const { allowedSources, policies } = this.options.render.csp
|
|
const cspHeader = this.options.render.csp.reportOnly ? 'Content-Security-Policy-Report-Only' : 'Content-Security-Policy'
|
|
|
|
res.setHeader(cspHeader, getCspString({ cspScriptSrcHashSet, allowedSources, policies, isDev: this.options.dev }))
|
|
}
|
|
|
|
// Send response
|
|
res.setHeader('Content-Type', 'text/html; charset=utf-8')
|
|
res.setHeader('Content-Length', Buffer.byteLength(html))
|
|
res.end(html, 'utf8')
|
|
return html
|
|
} catch (err) {
|
|
/* istanbul ignore if */
|
|
if (context && context.redirected) {
|
|
consola.error(err)
|
|
return err
|
|
}
|
|
|
|
next(err)
|
|
}
|
|
}
|
|
|
|
const getCspString = ({ cspScriptSrcHashSet, allowedSources, policies, isDev }) => {
|
|
const joinedHashSet = Array.from(cspScriptSrcHashSet).join(' ')
|
|
const baseCspStr = `script-src 'self'${isDev ? ` 'unsafe-eval'` : ''} ${joinedHashSet}`
|
|
|
|
if (Array.isArray(allowedSources)) {
|
|
return `${baseCspStr} ${allowedSources.join(' ')}`
|
|
}
|
|
|
|
const policyObjectAvailable = typeof policies === 'object' && policies !== null && !Array.isArray(policies)
|
|
|
|
if (policyObjectAvailable) {
|
|
const transformedPolicyObject = transformPolicyObject(policies, cspScriptSrcHashSet)
|
|
|
|
return Object.entries(transformedPolicyObject).map(([k, v]) => `${k} ${v.join(' ')}`).join('; ')
|
|
}
|
|
|
|
return baseCspStr
|
|
}
|
|
|
|
const transformPolicyObject = (policies, cspScriptSrcHashSet) => {
|
|
const userHasDefinedScriptSrc = policies['script-src'] && Array.isArray(policies['script-src'])
|
|
|
|
// Self is always needed for inline-scripts, so add it, no matter if the user specified script-src himself.
|
|
|
|
const hashAndPolicySet = cspScriptSrcHashSet
|
|
hashAndPolicySet.add(`'self'`)
|
|
|
|
if (!userHasDefinedScriptSrc) {
|
|
policies['script-src'] = Array.from(hashAndPolicySet)
|
|
return policies
|
|
}
|
|
|
|
new Set(policies['script-src']).forEach(src => hashAndPolicySet.add(src))
|
|
|
|
policies['script-src'] = Array.from(hashAndPolicySet)
|
|
|
|
return policies
|
|
}
|