forked from alexpate/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
93 lines (78 loc) · 2.39 KB
/
server.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
const next = require('next')
const qs = require('querystring')
const url = require('url')
const LRUCache = require('lru-cache')
const ssrCache = new LRUCache({
max: 500
})
const dev = process.env.NODE_ENV !== 'production'
const app = next({ dev })
const handle = app.getRequestHandler()
function removeEndSlash(fn) {
return (req, res) => {
const parsedUrl = url.parse(req.url, true)
const isNext = parsedUrl.path.includes('/_next/')
if (isNext) return fn(req, res, parsedUrl)
if (parsedUrl.path !== '/' && parsedUrl.path.slice(-1) === '/') {
const q = qs.stringify(parsedUrl.query)
res.writeHead(301, {
Location: parsedUrl.path.slice(0, -1) + (q ? '?' + q : '')
})
res.end()
return
}
return fn(req, res, parsedUrl)
}
}
function setAssetPrefixByHost(fn) {
return (req, res) => {
if (req.headers.host === 'docs.zeit.sh') {
// Set the cloudinary custom origin which points to https://docs.zeit.sh
app.setAssetPrefix('https://assets.zeit.co/raw/upload/docs-assets')
} else if (/localhost/.test(req.headers.host)) {
// Set the assetPrefix for localhost
// It needs to be the http version
app.setAssetPrefix(`http://${req.headers.host}`)
} else {
// Set the assetPrefix for now
// It needs to be the https version, since now is always HTTPS
app.setAssetPrefix(`https://${req.headers.host}`)
}
return fn(req, res)
}
}
async function main(req, res, parsedUrl) {
if (req.url === '/') {
res.writeHead(301, {
Location: '/docs'
})
res.end()
return
}
const cacheKey = `prefix:${app.renderOpts.assetPrefix} path:${req.url}`
const isNext = parsedUrl.path.includes('/_next/')
if (dev || (req.headers.cookie || '').includes('token=') || isNext) {
return handle(req, res, parsedUrl)
}
if (ssrCache.has(cacheKey)) {
return ssrCache.get(cacheKey)
}
try {
const html = await app.renderToHTML(
req,
res,
parsedUrl.pathname,
parsedUrl.query
)
ssrCache.set(cacheKey, html, Infinity)
console.log(`CACHE MISS: ${parsedUrl.pathname}`) // eslint-disable-line no-console
return html
} catch (err) {
await app.renderError(err, req, res, parsedUrl.pathname, parsedUrl.query)
}
}
async function setup(handler) {
await app.prepare()
return setAssetPrefixByHost(removeEndSlash(handler))
}
module.exports = setup(main)