Add setting to show all guilds in discovery, fix query for guild discovery

This commit is contained in:
The Arcane Brony
2021-10-01 22:11:56 +02:00
parent 00e3fde177
commit 40f7e7b7d4
2 changed files with 13 additions and 2 deletions
+5 -2
View File
@@ -1,16 +1,19 @@
import { Guild } from "@fosscord/util";
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 } = req.params;
var showAllGuilds = Config.get().guild.showAllGuildsInDiscovery;
// ! 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 guilds = await Guild.find({ where: `"features" LIKE 'COMMUNITY'`, take: Math.abs(Number(limit)) });
const guilds = showAllGuilds ? await Guild.find({take: Math.abs(Number(limit))}) : await Guild.find({ where: `"features" LIKE '%COMMUNITY%'`, take: Math.abs(Number(limit)) });
res.send({ guilds: guilds });
});