summary refs log tree commit diff
path: root/api/src/routes/gateway/bot.ts
diff options
context:
space:
mode:
authorSamuel <34555296+Flam3rboy@users.noreply.github.com>2021-10-15 15:53:15 +0200
committerGitHub <noreply@github.com>2021-10-15 15:53:15 +0200
commit781812a8c69176c3c88473adf0970c3cc1758bc2 (patch)
tree02850307991517b83865d03a5a37d7f287f2b3e9 /api/src/routes/gateway/bot.ts
parentMerge pull request #464 from hbjydev/api-snippets (diff)
parentfeat: add tests to gateway routes, split into own routers (diff)
downloadserver-781812a8c69176c3c88473adf0970c3cc1758bc2.tar.xz
Merge pull request #462 from hbjydev/unit-tests-expanded
Add unit tests for Gateway endpoints
Diffstat (limited to 'api/src/routes/gateway/bot.ts')
-rw-r--r--api/src/routes/gateway/bot.ts40
1 files changed, 40 insertions, 0 deletions
diff --git a/api/src/routes/gateway/bot.ts b/api/src/routes/gateway/bot.ts
new file mode 100644

index 00000000..3a038276 --- /dev/null +++ b/api/src/routes/gateway/bot.ts
@@ -0,0 +1,40 @@ +import { Config } from "@fosscord/util"; +import { Router, Response, Request } from "express"; +import { route, RouteOptions } from "@fosscord/api"; + +const router = Router(); + +export interface GatewayBotResponse { + url: string; + shards: number; + session_start_limit: { + total: number; + remaining: number; + reset_after: number; + max_concurrency: number; + } +} + +const options: RouteOptions = { + test: { + response: { + body: "GatewayBotResponse" + } + } +}; + +router.get("/bot", route(options), (req: Request, res: Response) => { + const { endpointPublic } = Config.get().gateway; + res.json({ + url: endpointPublic || process.env.GATEWAY || "ws://localhost:3002", + shards: 1, + session_start_limit: { + total: 1000, + remaining: 999, + reset_after: 14400000, + max_concurrency: 1 + } + }); +}); + +export default router;