summary refs log tree commit diff
path: root/api/src/routes/guild-recommendations.ts
diff options
context:
space:
mode:
Diffstat (limited to 'api/src/routes/guild-recommendations.ts')
-rw-r--r--api/src/routes/guild-recommendations.ts23
1 files changed, 0 insertions, 23 deletions
diff --git a/api/src/routes/guild-recommendations.ts b/api/src/routes/guild-recommendations.ts
deleted file mode 100644
index 1432f39c..00000000
--- a/api/src/routes/guild-recommendations.ts
+++ /dev/null
@@ -1,23 +0,0 @@
-import { Guild, Config } from "@fosscord/util";
-
-import { Router, Request, Response } from "express";
-import { route } from "@fosscord/api";
-
-const router = Router();
-
-router.get("/", route({}), async (req: Request, res: Response) => {
-	const { limit, personalization_disabled } = req.query;
-	var showAllGuilds = Config.get().guild.discovery.showAllGuilds;
-	// ! this only works using SQL querys
-	// TODO: implement this with default typeorm query
-	// const guilds = await Guild.find({ where: { features: "DISCOVERABLE" } }); //, take: Math.abs(Number(limit)) });
-
-	const genLoadId = (size: Number) => [...Array(size)].map(() => Math.floor(Math.random() * 16).toString(16)).join('');
-
-	const guilds = showAllGuilds
-		? await Guild.find({ take: Math.abs(Number(limit || 24)) })
-		: await Guild.find({ where: `"features" LIKE '%DISCOVERABLE%'`, take: Math.abs(Number(limit || 24)) });
-	res.send({ recommended_guilds: guilds, load_id: `server_recs/${genLoadId(32)}`}).status(200);
-});
-
-export default router;