summary refs log tree commit diff
path: root/api/src/middlewares/TestClient.ts
diff options
context:
space:
mode:
authorSamuel <34555296+Flam3rboy@users.noreply.github.com>2021-10-23 15:36:15 -0400
committerGitHub <noreply@github.com>2021-10-23 15:36:15 -0400
commit55fa09128d16b5dc6c8a8b11968c37fdc4df5b24 (patch)
treee43990b52ba417d35de3e2608e240cd063b95bc3 /api/src/middlewares/TestClient.ts
parentMerge pull request #493 from RiversideRocks/patch-1 (diff)
parentFix missing dependencies (diff)
downloadserver-55fa09128d16b5dc6c8a8b11968c37fdc4df5b24.tar.xz
Merge pull request #495 from KagurazakaNyaa/master
Add proxy support for hard-coded external network access
Diffstat (limited to 'api/src/middlewares/TestClient.ts')
-rw-r--r--api/src/middlewares/TestClient.ts3
1 files changed, 3 insertions, 0 deletions
diff --git a/api/src/middlewares/TestClient.ts b/api/src/middlewares/TestClient.ts

index 7db35285..b718bdab 100644 --- a/api/src/middlewares/TestClient.ts +++ b/api/src/middlewares/TestClient.ts
@@ -2,9 +2,11 @@ import express, { Request, Response, Application } from "express"; import fs from "fs"; import path from "path"; import fetch, { Response as FetchResponse } from "node-fetch"; +import ProxyAgent from 'proxy-agent'; import { Config } from "@fosscord/util"; export default function TestClient(app: Application) { + const agent = new ProxyAgent(); const assetCache = new Map<string, { response: FetchResponse; buffer: Buffer }>(); const indexHTML = fs.readFileSync(path.join(__dirname, "..", "..", "client_test", "index.html"), { encoding: "utf8" }); @@ -31,6 +33,7 @@ export default function TestClient(app: Application) { const cache = assetCache.get(req.params.file); if (!cache) { response = await fetch(`https://discord.com/assets/${req.params.file}`, { + agent, // @ts-ignore headers: { ...req.headers