diff options
author | uurgothat <cckhmck@gmail.com> | 2021-10-09 18:23:16 +0300 |
---|---|---|
committer | uurgothat <cckhmck@gmail.com> | 2021-10-09 18:23:16 +0300 |
commit | 28076283776fffbc5b9792d3de4dedba659a1a79 (patch) | |
tree | 5816398f677db64a33f7e398fdf3fcd252dec3f4 /api/src/routes/gifs/trending.ts | |
parent | Merge branch 'master' of http://github.com/fosscord/fosscord-server (diff) | |
download | server-28076283776fffbc5b9792d3de4dedba659a1a79.tar.xz |
Implement GIFs
Diffstat (limited to '')
-rw-r--r-- | api/src/routes/gifs/trending.ts | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/api/src/routes/gifs/trending.ts b/api/src/routes/gifs/trending.ts new file mode 100644 index 00000000..3b91eb12 --- /dev/null +++ b/api/src/routes/gifs/trending.ts @@ -0,0 +1,48 @@ +import { Router, Response, Request } from "express"; +import fetch from "node-fetch"; +import { route } from "@fosscord/api"; + +const router = Router(); + +router.get("/", route({}), async (req: Request, res: Response) => { + // TODO: Custom providers and code quality + const { media_format, locale, provider } = req.query; + + const parseResult = (result: any) => { + return { + id: result.id, + title: result.title, + url: result.itemurl, + src: result.media[0].mp4.url, + gif_src: result.media[0].gif.url, + width: result.media[0].mp4.dims[0], + height: result.media[0].mp4.dims[1], + preview: result.media[0].mp4.preview + }; + }; + + const responseSource = await fetch(`https://g.tenor.com/v1/categories?media_format=${media_format}&locale=${locale}&key=LIVDSRZULELA`, { + method: "get", + headers: { "Content-Type": "application/json" } + }); + + const trendGifSource = await fetch(`https://g.tenor.com/v1/trending?media_format=${media_format}&locale=${locale}&key=LIVDSRZULELA`, { + method: "get", + headers: { "Content-Type": "application/json" } + }); + + const { tags } = await responseSource.json(); + const { results } = await trendGifSource.json(); + let cache = new Array() as any[]; + + tags.forEach((result: any) => { + cache.push({ + name: result.searchterm, + src: result.image + }); + }); + + res.json({ categories: [cache], gifs: [parseResult(results[0])] }).status(200); +}); + +export default router; |