index.js
2.1 KB
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
'use strict'
const { resolve, dirname, extname, join } = require('path')
const debug = require('debug')('koa-views')
const consolidate = require('consolidate')
const { stat } = require('mz/fs')
const send = require('koa-send')
module.exports = viewsMiddleware
function viewsMiddleware (path, {
engineSource = consolidate,
extension = 'html',
options = {},
map
} = {}) {
return function views (ctx, next) {
if (ctx.render) return next()
ctx.render = function (relPath, locals = {}) {
const suffix = (extname(relPath) || '.' + extension).slice(1)
return getPaths(path, relPath, suffix)
.then((paths) => {
const state = Object.assign(locals, options, ctx.state || {})
debug('render `%s` with %j', paths.rel, state)
ctx.type = 'text/html'
if (isHtml(suffix) && !map) {
return send(ctx, paths.rel, {
root: path
})
} else {
const engineName = map && map[suffix]
? map[suffix]
: suffix
const render = engineSource[engineName]
if (!engineName || !render) return Promise.reject(new Error(
`Engine not found for the ".${extension}" file extension`
))
return render(resolve(paths.abs, paths.rel), state)
.then((html) => {
ctx.body = html
})
}
})
}
return next()
}
}
function getPaths(abs, rel, ext) {
return stat(join(abs, rel)).then((stats) => {
if (stats.isDirectory()) {
// a directory
return {
rel: join(rel, toFile('index', ext)),
abs: join(abs, dirname(rel), rel)
}
}
// a file
return { rel, abs }
})
.catch((e) => {
// not a valid file/directory
if (!extname(rel)) {
// Template file has been provided without extension
// so append to it to try another lookup
return getPaths(abs, `${rel}.${ext}`, ext)
}
throw e
})
}
function isHtml (ext) {
return ext === 'html'
}
function toFile (fileName, ext) {
return `${fileName}.${ext}`
}