summary refs log tree commit diff
path: root/api/src
diff options
context:
space:
mode:
authoruurgothat <cckhmck@gmail.com>2021-10-18 04:36:49 +0300
committeruurgothat <cckhmck@gmail.com>2021-10-18 04:36:49 +0300
commit7c724175ce93cc5e5f328b592322f8d6f18135ff (patch)
tree382cd1ea701bcee558aece37661ca6c82ddb3a0c /api/src
parentremove unneeded import (diff)
downloadserver-7c724175ce93cc5e5f328b592322f8d6f18135ff.tar.xz
external templates + fosscord draft and more configs
Diffstat (limited to 'api/src')
-rw-r--r--api/src/routes/guilds/templates/index.ts30
1 files changed, 28 insertions, 2 deletions
diff --git a/api/src/routes/guilds/templates/index.ts b/api/src/routes/guilds/templates/index.ts

index 81724a76..c275d5da 100644 --- a/api/src/routes/guilds/templates/index.ts +++ b/api/src/routes/guilds/templates/index.ts
@@ -4,32 +4,58 @@ import { Template, Guild, Role, Snowflake, Config, User, Member } from "@fosscor import { route } from "@fosscord/api"; import { DiscordApiErrors } from "@fosscord/util"; import fetch from "node-fetch"; + +const { enabled, allowTemplateCreation, allowDiscordTemplates, allowOtherInstancesTemplates, allowExternalRaws } = Config.get().templates; export interface GuildTemplateCreateSchema { name: string; avatar?: string | null; } router.get("/:code", route({}), async (req: Request, res: Response) => { + if(enabled == false) return res.json({ code: 403, message: "Templates are disabled on this instance."}).sendStatus(403); const { code } = req.params; if (code.startsWith("discord:")) { + if (allowDiscordTemplates == false) return res.json({ code: 403, message: "Discord templates are disabled on this instance."}).sendStatus(403); const discordTemplateID = code.split("discord:", 2)[1]; - if (Config.get().templates.allowDiscordTemplates == false) return res.json({ code: 403, message: "Discord templates are disabled on this instance."}).sendStatus(403) const discordTemplateData = await fetch(`https://discord.com/api/v9/guilds/templates/${discordTemplateID}`, { method: "get", headers: { "Content-Type": "application/json" } }); - return res.json(await discordTemplateData.json()); + res.json(await discordTemplateData.json()); } + + if (code.startsWith("fosscord:")) { + if (allowOtherInstancesTemplates == false) return res.json({ code: 403, message: "Other instance templates are disabled on this instance."}).sendStatus(403); + //TODO: TBD when federation came out + res.json({}).sendStatus(200) + }; + + //TODO: Validation + if (code.startsWith("external:")) { + if (allowExternalRaws == false) return res.json({ code: 403, message: "Importing templates from raws is disabled on this instance."}).sendStatus(403); + const url = code.split("external:", 2)[1] + + const rawTemplateData = await fetch(`${url}`, { + method: "get", + headers: { "Content-Type": "application/json" } + }) || null; + + res.json(rawTemplateData !== null ? await rawTemplateData.json(): { code: 500, message: "An error occurred while trying to fetch the raw."}); + } + const template = await Template.findOneOrFail({ code: code }); res.json(template); }); router.post("/:code", route({ body: "GuildTemplateCreateSchema" }), async (req: Request, res: Response) => { + if(enabled == false) return res.json({ code: 403, message: "Templates are disabled on this instance."}).sendStatus(403); + if(allowTemplateCreation == false) return res.json({ code: 403, message: "Template creation is disabled on this instance."}).sendStatus(403); + const { code } = req.params; const body = req.body as GuildTemplateCreateSchema;