-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathmixin.core.js
87 lines (75 loc) · 2.12 KB
/
mixin.core.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
const debug = require('hops-debug')('hops:development-proxy');
const {
Mixin,
strategies: {
sync: { sequence },
},
} = require('hops-mixin');
const { createProxyMiddleware: proxy } = require('http-proxy-middleware');
class ProxyMixin extends Mixin {
configureServer(app, middlewares) {
const proxyConfig = this.config.proxy;
if (process.env.NODE_ENV === 'production' || !proxyConfig) {
return;
}
const options = {
changeOrigin: true,
logLevel: 'warn',
onProxyReq: this.onProxyReq,
onProxyRes: this.onProxyRes,
onError: this.onProxyError,
};
if (typeof proxyConfig === 'string') {
if (proxyConfig === '') {
if (typeof this.getLogger === 'function') {
this.getLogger().info(
`The proxy target "${proxyConfig}" is empty, disabling feature`
);
}
return;
}
debug('Using proxy string version', proxyConfig);
middlewares.initial.push(
proxy(
(pathName, req) => {
const nonhtml =
req.headers.accept && !req.headers.accept.includes('text/html');
const xhr = req.headers['x-requested-with'] === 'XMLHttpRequest';
return nonhtml || xhr;
},
{
...options,
target: proxyConfig,
}
)
);
}
if (typeof proxyConfig === 'object') {
debug('Using proxy object version', proxyConfig);
Object.entries(proxyConfig).forEach(([path, config]) => {
const { target } =
typeof config === 'string' ? { target: config } : config;
if (target === '') {
if (typeof this.getLogger === 'function') {
this.getLogger().info(
`The proxy target "${target}" is empty, ignoring path "${path}"`
);
}
return;
}
middlewares.initial.push(
proxy(path, {
...options,
target,
})
);
});
}
}
}
ProxyMixin.strategies = {
onProxyReq: sequence,
onProxyRes: sequence,
onProxyError: sequence,
};
module.exports = ProxyMixin;