summary refs log tree commit diff
path: root/src/api/routes/guild-recommendations.ts
blob: 0248a9c3367818aa8b68e4f125ffb8bf61107a23 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import { Config, Guild } from "@fosscord/util";

import { Request, Response, Router } from "express";
import { Like } from "typeorm";
import { route } from "..";

const router = Router();

router.get("/", route({}), async (req: Request, res: Response) => {
	const { limit, personalization_disabled } = req.query;
	let 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;