Skip to content

Commit e90e2b2

Browse files
authored
Use WebSocket check in pac-proxy-agent (#329)
This mirrors the check in the core `proxy-agent` package and serves the same purpose.
1 parent 85b10b3 commit e90e2b2

File tree

3 files changed

+28
-1
lines changed

3 files changed

+28
-1
lines changed

.changeset/swift-lizards-poke.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'pac-proxy-agent': patch
3+
---
4+
5+
Properly forward WebSocket requests via PAC agents that resolve to HTTP proxies

packages/pac-proxy-agent/src/index.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,7 @@ export class PacProxyAgent<Uri extends string> extends Agent {
180180
opts: AgentConnectOpts
181181
): Promise<http.Agent | net.Socket> {
182182
const { secureEndpoint } = opts;
183+
const isWebSocket = req.getHeader('upgrade') === 'websocket';
183184

184185
// First, get a generated `FindProxyForURL()` function,
185186
// either cached or retrieved from the source
@@ -261,7 +262,7 @@ export class PacProxyAgent<Uri extends string> extends Agent {
261262
const proxyURL = `${
262263
type === 'HTTPS' ? 'https' : 'http'
263264
}://${target}`;
264-
if (secureEndpoint) {
265+
if (secureEndpoint || isWebSocket) {
265266
agent = new HttpsProxyAgent(proxyURL, this.opts);
266267
} else {
267268
agent = new HttpProxyAgent(proxyURL, this.opts);

packages/pac-proxy-agent/test/test.ts

+21
Original file line numberDiff line numberDiff line change
@@ -174,6 +174,27 @@ describe('PacProxyAgent', () => {
174174
assert('via' in data);
175175
});
176176

177+
it('should work over an HTTP proxy for WebSockets', async () => {
178+
httpServer.once('request', function (req, res) {
179+
res.end(JSON.stringify(req.headers));
180+
});
181+
182+
function FindProxyForURL() {
183+
return 'PROXY localhost:PORT;';
184+
}
185+
186+
const uri = `data:,${encodeURIComponent(
187+
FindProxyForURL.toString().replace('PORT', proxyServerUrl.port)
188+
)}`;
189+
const agent = new PacProxyAgent(uri);
190+
191+
const res = await req(new URL('/test', httpServerUrl), { agent, headers: { upgrade: 'websocket' } });
192+
const data = await json(res);
193+
assert.equal(httpServerUrl.host, data.host);
194+
assert(!('via' in data)); // Used CONNECT rather than plain HTTP proxy
195+
assert.equal(data.upgrade, 'websocket');
196+
});
197+
177198
it('should work over a SOCKS proxy', async () => {
178199
httpServer.once('request', function (req, res) {
179200
res.end(JSON.stringify(req.headers));

0 commit comments

Comments
 (0)