-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathNodeRequests.ts
More file actions
202 lines (175 loc) · 5.64 KB
/
NodeRequests.ts
File metadata and controls
202 lines (175 loc) · 5.64 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
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
import * as http from 'http';
import * as https from 'https';
import { HttpsProxyAgent, HttpsProxyAgentOptions } from 'https-proxy-agent';
// No types for the event source.
// @ts-ignore
import { EventSource as LDEventSource } from 'launchdarkly-eventsource';
import { format as formatUrl } from 'url';
import { promisify } from 'util';
import * as zlib from 'zlib';
import {
EventSourceCapabilities,
LDLogger,
LDProxyOptions,
LDTLSOptions,
platform,
} from '@launchdarkly/js-server-sdk-common';
import NodeResponse from './NodeResponse';
const gzip = promisify(zlib.gzip);
function processTlsOptions(tlsOptions: LDTLSOptions): https.AgentOptions {
const options: https.AgentOptions & { [index: string]: any } = {
ca: tlsOptions.ca,
cert: tlsOptions.cert,
checkServerIdentity: tlsOptions.checkServerIdentity,
ciphers: tlsOptions.ciphers,
// Our interface says object for the pfx object. But the node
// type is more strict. This is also true for the key and KeyObject.
// @ts-ignore
pfx: tlsOptions.pfx,
// @ts-ignore
key: tlsOptions.key,
passphrase: tlsOptions.passphrase,
rejectUnauthorized: tlsOptions.rejectUnauthorized,
secureProtocol: tlsOptions.secureProtocol,
servername: tlsOptions.servername,
};
// Node does not take kindly to undefined keys.
Object.keys(options).forEach((key) => {
if (options[key] === undefined) {
delete options[key];
}
});
return options;
}
function processProxyOptions(
proxyOptions: LDProxyOptions,
additional: https.AgentOptions = {},
): https.Agent | http.Agent {
const proxyUrl = formatUrl({
protocol: proxyOptions.scheme?.startsWith('https') ? 'https:' : 'http:',
slashes: true,
hostname: proxyOptions.host,
port: proxyOptions.port,
});
const parsedOptions: HttpsProxyAgentOptions<string> = {
...additional,
};
if (proxyOptions.auth) {
parsedOptions.headers = {
'Proxy-Authorization': `Basic ${Buffer.from(proxyOptions.auth).toString('base64')}`,
};
}
// Node does not take kindly to undefined keys.
Object.keys(parsedOptions).forEach((key) => {
if (parsedOptions[key as keyof HttpsProxyAgentOptions<string>] === undefined) {
delete parsedOptions[key as keyof HttpsProxyAgentOptions<string>];
}
});
return new HttpsProxyAgent(proxyUrl, parsedOptions);
}
function createAgent(
tlsOptions?: LDTLSOptions,
proxyOptions?: LDProxyOptions,
logger?: LDLogger,
): https.Agent | http.Agent | undefined {
if (!proxyOptions?.auth?.startsWith('https') && tlsOptions) {
logger?.warn('Proxy configured with TLS options, but is not using an https auth.');
}
if (tlsOptions) {
const agentOptions = processTlsOptions(tlsOptions);
if (proxyOptions) {
return processProxyOptions(proxyOptions, agentOptions);
}
return new https.Agent(agentOptions);
}
if (proxyOptions) {
return processProxyOptions(proxyOptions);
}
return undefined;
}
export default class NodeRequests implements platform.Requests {
private _agent: https.Agent | http.Agent | undefined;
private _tlsOptions: LDTLSOptions | undefined;
private _hasProxy: boolean = false;
private _hasProxyAuth: boolean = false;
private _enableBodyCompression: boolean = false;
constructor(
tlsOptions?: LDTLSOptions,
proxyOptions?: LDProxyOptions,
logger?: LDLogger,
enableEventCompression?: boolean,
) {
this._agent = createAgent(tlsOptions, proxyOptions, logger);
this._hasProxy = !!proxyOptions;
this._hasProxyAuth = !!proxyOptions?.auth;
this._enableBodyCompression = !!enableEventCompression;
}
async fetch(url: string, options: platform.Options = {}): Promise<platform.Response> {
const isSecure = url.startsWith('https://');
const impl = isSecure ? https : http;
const headers = { ...options.headers };
let bodyData: string | Buffer | undefined = options.body;
// For get requests we are going to automatically support compressed responses.
// Note this does not affect SSE as the event source is not using this fetch implementation.
if (options.method?.toLowerCase() === 'get') {
headers['accept-encoding'] = 'gzip';
}
// For post requests we are going to support compressed post bodies if the
// enableEventCompression config setting is true and the compressBodyIfPossible
// option is true.
else if (
this._enableBodyCompression &&
!!options.compressBodyIfPossible &&
options.method?.toLowerCase() === 'post' &&
options.body
) {
headers['content-encoding'] = 'gzip';
bodyData = await gzip(Buffer.from(options.body, 'utf8'));
}
return new Promise((resolve, reject) => {
const req = impl.request(
url,
{
timeout: options.timeout,
headers,
method: options.method,
agent: this._agent,
},
(res) => resolve(new NodeResponse(res)),
);
if (bodyData) {
req.write(bodyData);
}
req.on('error', (err) => {
reject(err);
});
req.end();
});
}
createEventSource(
url: string,
eventSourceInitDict: platform.EventSourceInitDict,
): platform.EventSource {
const expandedOptions = {
...eventSourceInitDict,
agent: this._agent,
tlsParams: this._tlsOptions,
maxBackoffMillis: 30 * 1000,
jitterRatio: 0.5,
};
return new LDEventSource(url, expandedOptions);
}
getEventSourceCapabilities(): EventSourceCapabilities {
return {
readTimeout: true,
headers: true,
customMethod: true,
};
}
usingProxy(): boolean {
return this._hasProxy;
}
usingProxyAuth(): boolean {
return this._hasProxyAuth;
}
}