-
-
Notifications
You must be signed in to change notification settings - Fork 7.1k
/
Copy pathdefaults.js
86 lines (74 loc) · 1.96 KB
/
defaults.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
const fs = require('fs')
const path = require('path')
const express = require('express')
const logger = require('morgan')
const cors = require('cors')
const compression = require('compression')
const errorhandler = require('errorhandler')
const bodyParser = require('./body-parser')
module.exports = function (opts) {
const userDir = path.join(process.cwd(), 'public')
const defaultDir = path.join(__dirname, '../../public')
const staticDir = fs.existsSync(userDir) ? userDir : defaultDir
opts = Object.assign(
{
noGzip: undefined,
noCors: undefined,
readOnly: undefined,
bodyParser: undefined, // true / false / object
logger: true,
static: staticDir,
},
opts
)
const arr = []
// Compress all requests
if (!opts.noGzip) {
arr.push(compression())
}
// Enable CORS for all the requests, including static files
if (!opts.noCors) {
arr.push(cors({ origin: true, credentials: true }))
}
if (process.env.NODE_ENV === 'development') {
// only use in development
arr.push(errorhandler())
}
// Serve static files
arr.push(express.static(opts.static))
// Logger
if (opts.logger) {
arr.push(
logger('dev', {
skip: (req) =>
process.env.NODE_ENV === 'test' || req.path === '/favicon.ico',
}),
)
}
// No cache for IE
// https://support.microsoft.com/en-us/kb/234067
arr.push((req, res, next) => {
res.header('Cache-Control', 'no-cache')
res.header('Pragma', 'no-cache')
res.header('Expires', '-1')
next()
})
// Read-only
if (opts.readOnly) {
arr.push((req, res, next) => {
if (req.method === 'GET') {
next() // Continue
} else {
res.sendStatus(403) // Forbidden
}
})
}
// Add middlewares
if (opts.bodyParser && typeof opts.bodyParser !== `object`) {
arr.push(bodyParser)
}
if (opts.bodyParser && typeof opts.bodyParser === `object`) {
arr.push(opts.bodyParser)
}
return arr
}