-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathserver.js
95 lines (84 loc) · 3.42 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
94
95
const next = require('next')
const Koa = require('koa')
const router = require('koa-route')
const LRUCache = require('lru-cache')
const port = parseInt(process.env.PORT, 10) || 8868
const dev = process.env.NODE_ENV !== 'production'
const test = process.env.NODE_TEST === 'test'
const app = next({ dev })
const handle = app.getRequestHandler()
// This is where we cache our rendered HTML pages
const ssrCache = new LRUCache({
max: 100,
maxAge: 1000 * 60 * 60, // 1hour
})
/*
* NB: make sure to modify this to take into account anything that should trigger
* an immediate page change (e.g a locale stored in req.session)
*/
function getCacheKey(ctx) { return ctx.url }
function renderAndCache(ctx, pagePath, noCache, queryParams = null) {
if (dev || test) ssrCache.reset()
if (noCache === 'noCache') {
return app.renderToHTML(ctx.req, ctx.res, pagePath, queryParams)
.then((html) => {
// Let's cache this page
console.info('no cache')
ctx.body = html
})
.catch((err) => {
console.info('ERRR', err)
return app.renderError(err, ctx.req, ctx.res, pagePath, queryParams)
})
}
const key = getCacheKey(ctx.req)
// If we have a page in the cache, let's serve it
if (ssrCache.has(key)) {
console.info(`CACHE HIT: ${key}`)
ctx.body = ssrCache.get(key)
return Promise.resolve()
}
// If not let's render the page into HTML
return app.renderToHTML(ctx.req, ctx.res, pagePath, queryParams)
.then((html) => {
// Let's cache this page
console.info(`CACHE MISS: ${key}`)
ssrCache.set(key, html)
ctx.body = html
})
.catch((err) => {
console.info('ERRR', err)
return app.renderError(err, ctx.req, ctx.res, pagePath, queryParams)
})
}
app.prepare()
.then(() => {
const server = new Koa()
server.use(router.get('/', ctx => renderAndCache(ctx, '/index')))
server.use(router.get('/search', ctx => renderAndCache(ctx, '/search')))
server.use(router.get('/loan', ctx => renderAndCache(ctx, '/1-loan/1-home')))
server.use(router.get('/loan/go', ctx => renderAndCache(ctx, '/1-loan/3-goLoan')))
server.use(router.get('/loan/:id', ctx => renderAndCache(ctx, '/1-loan/2-detail', 'noCache')))
server.use(router.get('/card', ctx => renderAndCache(ctx, '/2-card/1-home')))
server.use(router.get('/card/list', ctx => renderAndCache(ctx, '/2-card/2-list')))
server.use(router.get('/card/:id', ctx => renderAndCache(ctx, '/2-card/3-detail', 'noCache')))
server.use(router.get('/me', ctx => renderAndCache(ctx, '/3-me/1-home', 'noCache')))
server.use(router.get('/login', ctx => renderAndCache(ctx, '/3-me/2-login')))
server.use(router.get('/me/favorite', ctx => renderAndCache(ctx, '/3-me/3-favorite', 'noCache')))
server.use(router.get('/me/history', ctx => renderAndCache(ctx, '//3-me/4-history', 'noCache')))
server.use(router.get('/me/about', ctx => renderAndCache(ctx, '/3-me/5-about')))
server.use(router.get('/me/feedback', ctx => renderAndCache(ctx, '/3-me/6-feedback')))
server.use(router.get('/me/data', ctx => renderAndCache(ctx, '/3-me/7-myData', 'noCache')))
server.use(async (ctx) => {
await handle(ctx.req, ctx.res)
ctx.respond = false
})
server.use(async (ctx, next) => {
ctx.res.statusCode = 200
await next()
})
server.listen(port, (err) => {
if (err) throw err
console.info(`> Ready on http://localhost:${port}`)
})
})