1
- const EventEmitter = require ( 'events' )
2
- const util = require ( './lib/util' )
1
+ import { EventEmitter } from 'events'
2
+ import util from './lib/util.js'
3
+ import url from 'url'
4
+ import _ from 'koa-route'
5
+ import HttpsProxyAgent from 'https-proxy-agent'
6
+ import HttpProxyAgent from 'http-proxy-agent'
7
+ import http from 'http'
8
+ import https from 'https'
3
9
4
10
class Rewrite extends EventEmitter {
5
11
description ( ) {
@@ -25,8 +31,6 @@ class Rewrite extends EventEmitter {
25
31
}
26
32
27
33
middleware ( options , lws ) {
28
- const url = require ( 'url' )
29
- const util = require ( './lib/util' )
30
34
const rules = util . parseRewriteRules ( options . rewrite )
31
35
if ( rules . length ) {
32
36
this . emit ( 'verbose' , 'middleware.rewrite.config' , { rewrite : rules } )
@@ -35,7 +39,6 @@ class Rewrite extends EventEmitter {
35
39
if ( rule . to ) {
36
40
/* `to` address is remote if the url specifies a host */
37
41
if ( url . parse ( rule . to ) . host ) {
38
- const _ = require ( 'koa-route' )
39
42
return _ . all ( rule . from , proxyRequest ( rule , this , lws ) )
40
43
} else {
41
44
const rmw = rewrite ( rule . from , rule . to , this )
@@ -53,15 +56,12 @@ function proxyRequest (route, mw, lws) {
53
56
let httpProxyAgent , httpsProxyAgent
54
57
const httpProxy = process . env . http_proxy
55
58
if ( httpProxy ) {
56
- const HttpsProxyAgent = require ( 'https-proxy-agent' )
57
59
httpsProxyAgent = new HttpsProxyAgent ( httpProxy )
58
- const HttpProxyAgent = require ( 'http-proxy-agent' )
59
60
httpProxyAgent = new HttpProxyAgent ( httpProxy )
60
61
}
61
62
62
63
return function proxyMiddleware ( ctx ) {
63
64
return new Promise ( ( resolve , reject ) => {
64
- const url = require ( 'url' )
65
65
const isHttp2 = ctx . req . httpVersion === '2.0'
66
66
ctx . state . id = id ++
67
67
@@ -111,20 +111,20 @@ function proxyRequest (route, mw, lws) {
111
111
remoteReqOptions . headers = reqInfo . headers
112
112
remoteReqOptions . rejectUnauthorized = false
113
113
114
+ /* emit verbose info */
115
+ mw . emit ( 'verbose' , 'middleware.rewrite.remote.request' , reqInfo )
116
+
114
117
const protocol = remoteReqOptions . protocol
115
118
if ( protocol === 'http:' ) {
116
- transport = require ( ' http' )
119
+ transport = http
117
120
remoteReqOptions . agent = httpProxyAgent
118
121
} else if ( protocol === 'https:' ) {
119
- transport = require ( ' https' )
122
+ transport = https
120
123
remoteReqOptions . agent = httpsProxyAgent
121
124
} else {
122
125
return reject ( new Error ( 'Protocol missing from request: ' + reqInfo . rewrite . to ) )
123
126
}
124
127
125
- /* emit verbose info */
126
- mw . emit ( 'verbose' , 'middleware.rewrite.remote.request' , reqInfo )
127
-
128
128
const remoteReq = transport . request ( remoteReqOptions , ( remoteRes ) => {
129
129
remoteRes . headers . via = remoteRes . headers . via
130
130
? `${ remoteRes . headers . via } , 1.1 lws-rewrite`
@@ -177,4 +177,4 @@ function rewrite (from, to, mw) {
177
177
}
178
178
}
179
179
180
- module . exports = Rewrite
180
+ export default Rewrite
0 commit comments