mirror of
https://github.com/spacebarchat/server.git
synced 2024-11-06 19:02:33 +01:00
Add the new discovery route
This commit is contained in:
parent
fab28f5f1b
commit
68eb7b16a8
20
api/src/routes/guild-recommendations.ts
Normal file
20
api/src/routes/guild-recommendations.ts
Normal file
@ -0,0 +1,20 @@
|
||||
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.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 = showAllGuilds
|
||||
? await Guild.find({ take: Math.abs(Number(limit || 20)) })
|
||||
: await Guild.find({ where: `"features" LIKE '%COMMUNITY%'`, take: Math.abs(Number(limit || 100)) });
|
||||
res.send({ recommended_guilds: guilds });
|
||||
});
|
||||
|
||||
export default router;
|
Loading…
Reference in New Issue
Block a user