Skip to content

Commit 96b771b

Browse files
lukekarrysaddaleax
andauthored
Pass req to getProxyForUrl callback (#353)
This allows more flexibility in the callback, e.g. for inspecting request headers before deciding on a given proxy. --------- Co-authored-by: Anna Henningsen <[email protected]>
1 parent e90e2b2 commit 96b771b

File tree

3 files changed

+15
-4
lines changed

3 files changed

+15
-4
lines changed

.changeset/sixty-carpets-cross.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'proxy-agent': minor
3+
---
4+
5+
Include ClientRequest in getProxyForUrl parameters for additional flexibility

packages/proxy-agent/src/index.ts

+5-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,10 @@ type ValidProtocol =
2020

2121
type AgentConstructor = new (proxy: string, proxyAgentOptions?: ProxyAgentOptions) => Agent;
2222

23-
type GetProxyForUrlCallback = (url: string) => string | Promise<string>;
23+
type GetProxyForUrlCallback = (
24+
url: string,
25+
req: http.ClientRequest
26+
) => string | Promise<string>;
2427

2528
/**
2629
* Shorthands for built-in supported types.
@@ -128,7 +131,7 @@ export class ProxyAgent extends Agent {
128131
: 'http:';
129132
const host = req.getHeader('host');
130133
const url = new URL(req.path, `${protocol}//${host}`).href;
131-
const proxy = await this.getProxyForUrl(url);
134+
const proxy = await this.getProxyForUrl(url, req);
132135

133136
if (!proxy) {
134137
debug('Proxy not enabled for URL: %o', url);

packages/proxy-agent/test/test.ts

+5-2
Original file line numberDiff line numberDiff line change
@@ -266,15 +266,17 @@ describe('ProxyAgent', () => {
266266
it('should call provided function with getProxyForUrl option', async () => {
267267
let gotCall = false;
268268
let urlParameter = '';
269+
let reqParameter: http.ClientRequest | undefined;
269270
httpsServer.once('request', function (req, res) {
270271
res.end(JSON.stringify(req.headers));
271272
});
272273

273274
const agent = new ProxyAgent({
274275
rejectUnauthorized: false,
275-
getProxyForUrl: (u) => {
276+
getProxyForUrl: (u, r) => {
276277
gotCall = true;
277278
urlParameter = u;
279+
reqParameter = r;
278280
return httpsProxyServerUrl.href;
279281
},
280282
});
@@ -287,6 +289,7 @@ describe('ProxyAgent', () => {
287289
assert(httpsServerUrl.host === body.host);
288290
assert(gotCall);
289291
assert(requestUrl.href === urlParameter);
292+
assert(reqParameter?.constructor.name === 'ClientRequest');
290293
});
291294

292295
it('should call provided function with asynchronous getProxyForUrl option', async () => {
@@ -298,7 +301,7 @@ describe('ProxyAgent', () => {
298301

299302
const agent = new ProxyAgent({
300303
rejectUnauthorized: false,
301-
getProxyForUrl: async(u) => {
304+
getProxyForUrl: async (u) => {
302305
gotCall = true;
303306
urlParameter = u;
304307
await promisify(setTimeout)(1);

0 commit comments

Comments
 (0)