summary refs log tree commit diff
path: root/api/src/routes/gifs/trending.ts
diff options
context:
space:
mode:
authorFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-10-24 12:44:16 +0200
committerFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-10-24 12:44:16 +0200
commit8d6898d94dcc4fe0fef6514f35760a8571a243eb (patch)
tree9618270804a448eeef2c1637bedf7500d51789c8 /api/src/routes/gifs/trending.ts
parent:bug: delay worker thread start (diff)
parentMerge pull request #495 from KagurazakaNyaa/master (diff)
downloadserver-8d6898d94dcc4fe0fef6514f35760a8571a243eb.tar.xz
Merge branch 'master' of http://github.com/fosscord/fosscord-server
Diffstat (limited to 'api/src/routes/gifs/trending.ts')
-rw-r--r--api/src/routes/gifs/trending.ts5
1 files changed, 5 insertions, 0 deletions
diff --git a/api/src/routes/gifs/trending.ts b/api/src/routes/gifs/trending.ts
index 7ee9337e..c81b4c08 100644
--- a/api/src/routes/gifs/trending.ts
+++ b/api/src/routes/gifs/trending.ts
@@ -1,5 +1,6 @@
 import { Router, Response, Request } from "express";
 import fetch from "node-fetch";
+import ProxyAgent from 'proxy-agent';
 import { route } from "@fosscord/api";
 import { Config } from "@fosscord/util";
 import { HTTPError } from "lambert-server";
@@ -33,13 +34,17 @@ router.get("/", route({}), async (req: Request, res: Response) => {
 	const { media_format, locale } = req.query;
 
 	const apiKey = getGifApiKey();
+	
+	const agent = new ProxyAgent();
 
 	const [responseSource, trendGifSource] = await Promise.all([
 		fetch(`https://g.tenor.com/v1/categories?locale=${locale}&key=${apiKey}`, {
+			agent,
 			method: "get",
 			headers: { "Content-Type": "application/json" }
 		}),
 		fetch(`https://g.tenor.com/v1/trending?locale=${locale}&key=${apiKey}`, {
+			agent,
 			method: "get",
 			headers: { "Content-Type": "application/json" }
 		})