-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathconfig.js
119 lines (103 loc) · 2.95 KB
/
config.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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
'use strict';
let configStore = {};
const path = require('path')
, http = require('http')
, cloneDeep = require('lodash.clonedeep')
, statsdDefaults = {
cacheDns: true
, port: 8125
, host: 'localhost'
, send500: false
, send400: false
, send300: false
}
, defaults = {
port: 3000
, maxAge: 31536000
, routePath: path.join(process.cwd(), './routes.json')
, routeJSONPath: path.join(process.cwd(), './routes.json')
, publicPath: path.join(process.cwd(), './public')
, log: {
debug: (payload) => {
console.log(payload);
}
, info: (payload) => {
console.info(payload);
}
, warn: (payload) => {
console.warn(payload);
}
, error: (payload) => {
console.error(payload);
}
, trace: () => {}
}
, webSockets: false
, compress: true
, etags: true
, security: {
xssProtection: true
, poweredBy: undefined
, noSniff: true
, noCache: false
, framegaurd: {
action: 'SAMEORIGIN'
}
, hsts: {
maxAge: 86400
}
}
, server: http
, statsd: false
}
, getConfig = (key) => {
if (typeof key === 'string') {
return configStore[key];
} else {
return configStore;
}
}
, setDefaults = () => {
configStore = cloneDeep(defaults);
}
, setConfig = (key, value) => {
const pathKeyNames = [
'routeJSONPath'
, 'routePath'
, 'publicPath'
];
if (typeof key === 'object') {
Object.keys(key).forEach((item) => {
if (pathKeyNames.indexOf(item) >= 0) {
configStore[item] = path.join(process.cwd(), key[item]);
} else if (typeof key[item] === 'object' && item === 'statsd') {
Object.keys(key.statsd).forEach((child) => {
if (typeof configStore.statsd !== 'object') {
configStore.statsd = statsdDefaults;
}
configStore.statsd[child] = key.statsd[child];
});
} else if (typeof key[item] === 'object') {
Object.keys(key[item]).forEach((child) => {
if (typeof configStore[item] !== 'object') {
configStore[item] = {};
}
configStore[item][child] = key[item][child];
});
} else {
configStore[item] = key[item];
}
});
} else if (typeof key === 'string') {
configStore[key] = value;
}
return configStore;
};
configStore = cloneDeep(defaults);
module.exports = {
get: getConfig
, set: setConfig
, reset: () => {
setDefaults();
}
};