Merge pull request #1032 from spacebarchat/openapi

Better OpenAPI
This commit is contained in:
Madeline 2023-04-29 01:11:22 +10:00 committed by GitHub
commit 009a3ad27f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
167 changed files with 502370 additions and 6557 deletions

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -27,34 +27,46 @@ require("missing-native-js-functions");
const openapiPath = path.join(__dirname, "..", "assets", "openapi.json"); const openapiPath = path.join(__dirname, "..", "assets", "openapi.json");
const SchemaPath = path.join(__dirname, "..", "assets", "schemas.json"); const SchemaPath = path.join(__dirname, "..", "assets", "schemas.json");
let schemas = JSON.parse(fs.readFileSync(SchemaPath, { encoding: "utf8" })); const schemas = JSON.parse(fs.readFileSync(SchemaPath, { encoding: "utf8" }));
// const specification = JSON.parse(
for (var schema in schemas) { // fs.readFileSync(openapiPath, { encoding: "utf8" }),
const part = schemas[schema]; // );
for (var key in part.properties) { let specification = {
if (part.properties[key].anyOf) { openapi: "3.1.0",
const nullIndex = part.properties[key].anyOf.findIndex( info: {
(x) => x.type == "null", title: "Spacebar Server",
); description:
if (nullIndex != -1) { "Spacebar is a free open source selfhostable discord compatible chat, voice and video platform",
part.properties[key].nullable = true; license: {
part.properties[key].anyOf.splice(nullIndex, 1); name: "AGPLV3",
url: "https://www.gnu.org/licenses/agpl-3.0.en.html",
if (part.properties[key].anyOf.length == 1) { },
Object.assign( version: "1.0.0",
part.properties[key], },
part.properties[key].anyOf[0], externalDocs: {
); description: "Spacebar Docs",
delete part.properties[key].anyOf; url: "https://docs.spacebar.chat",
} },
} servers: [
} {
} url: "https://old.server.spacebar.chat/api/",
} description: "Official Spacebar Instance",
},
const specification = JSON.parse( ],
fs.readFileSync(openapiPath, { encoding: "utf8" }), components: {
); securitySchemes: {
bearer: {
type: "http",
scheme: "bearer",
description: "Bearer/Bot prefixes are not required.",
bearerFormat: "JWT",
in: "header",
},
},
},
tags: [],
paths: {},
};
function combineSchemas(schemas) { function combineSchemas(schemas) {
var definitions = {}; var definitions = {};
@ -72,6 +84,11 @@ function combineSchemas(schemas) {
} }
for (const key in definitions) { for (const key in definitions) {
const reg = new RegExp(/^[a-zA-Z0-9.\-_]+$/, "gm");
if (!reg.test(key)) {
console.error(`Invalid schema name: ${key} (${reg.test(key)})`);
continue;
}
specification.components = specification.components || {}; specification.components = specification.components || {};
specification.components.schemas = specification.components.schemas =
specification.components.schemas || {}; specification.components.schemas || {};
@ -102,30 +119,20 @@ function getTag(key) {
function apiRoutes() { function apiRoutes() {
const routes = getRouteDescriptions(); const routes = getRouteDescriptions();
const tags = Array.from(routes.keys()).map((x) => getTag(x)); // populate tags
specification.tags = specification.tags || []; const tags = Array.from(routes.keys())
specification.tags = [...specification.tags.map((x) => x.name), ...tags] .map((x) => getTag(x))
.unique() .sort((a, b) => a.localeCompare(b));
.map((x) => ({ name: x })); specification.tags = tags.unique().map((x) => ({ name: x }));
specification.components = specification.components || {};
specification.components.securitySchemes = {
bearer: {
type: "http",
scheme: "bearer",
description: "Bearer/Bot prefixes are not required.",
},
};
routes.forEach((route, pathAndMethod) => { routes.forEach((route, pathAndMethod) => {
const [p, method] = pathAndMethod.split("|"); const [p, method] = pathAndMethod.split("|");
const path = p.replace(/:(\w+)/g, "{$1}"); const path = p.replace(/:(\w+)/g, "{$1}");
specification.paths = specification.paths || {};
let obj = specification.paths[path]?.[method] || {}; let obj = specification.paths[path]?.[method] || {};
obj["x-right-required"] = route.right; obj["x-right-required"] = route.right;
obj["x-permission-required"] = route.permission; obj["x-permission-required"] = route.permission;
obj["x-fires-event"] = route.test?.event; obj["x-fires-event"] = route.event;
if ( if (
!NO_AUTHORIZATION_ROUTES.some((x) => { !NO_AUTHORIZATION_ROUTES.some((x) => {
@ -136,48 +143,56 @@ function apiRoutes() {
obj.security = [{ bearer: [] }]; obj.security = [{ bearer: [] }];
} }
if (route.body) { if (route.description) obj.description = route.description;
if (route.summary) obj.summary = route.summary;
if (route.deprecated) obj.deprecated = route.deprecated;
if (route.requestBody) {
obj.requestBody = { obj.requestBody = {
required: true, required: true,
content: { content: {
"application/json": { "application/json": {
schema: { $ref: `#/components/schemas/${route.body}` }, schema: {
$ref: `#/components/schemas/${route.requestBody}`,
},
}, },
}, },
}.merge(obj.requestBody); }.merge(obj.requestBody);
} }
if (route.test?.response) { if (route.responses) {
const status = route.test.response.status || 200; for (const [k, v] of Object.entries(route.responses)) {
let schema = { let schema = {
allOf: [ $ref: `#/components/schemas/${v.body}`,
{
$ref: `#/components/schemas/${route.test.response.body}`,
},
{
example: route.test.body,
},
],
}; };
if (!route.test.body) schema = schema.allOf[0];
obj.responses = { obj.responses = {
[status]: { [k]: {
...(route.test.response.body ...(v.body
? { ? {
description: description:
obj?.responses?.[status]?.description || "", obj?.responses?.[k]?.description || "",
content: { content: {
"application/json": { "application/json": {
schema: schema, schema: schema,
}, },
}, },
} }
: {}), : {
description: "No description available",
}),
}, },
}.merge(obj.responses); }.merge(obj.responses);
delete obj.responses.default;
} }
} else {
obj.responses = {
default: {
description: "No description available",
},
};
}
// handles path parameters
if (p.includes(":")) { if (p.includes(":")) {
obj.parameters = p.match(/:\w+/g)?.map((x) => ({ obj.parameters = p.match(/:\w+/g)?.map((x) => ({
name: x.replace(":", ""), name: x.replace(":", ""),
@ -187,16 +202,33 @@ function apiRoutes() {
description: x.replace(":", ""), description: x.replace(":", ""),
})); }));
} }
if (route.query) {
// map to array
const query = Object.entries(route.query).map(([k, v]) => ({
name: k,
in: "query",
required: v.required,
schema: { type: v.type },
description: v.description,
}));
obj.parameters = [...(obj.parameters || []), ...query];
}
obj.tags = [...(obj.tags || []), getTag(p)].unique(); obj.tags = [...(obj.tags || []), getTag(p)].unique();
specification.paths[path] = { specification.paths[path] = Object.assign(
...specification.paths[path], specification.paths[path] || {},
{
[method]: obj, [method]: obj,
}; },
);
}); });
} }
function main() { function main() {
console.log("Generating OpenAPI Specification...");
combineSchemas(schemas); combineSchemas(schemas);
apiRoutes(); apiRoutes();

View File

@ -57,6 +57,8 @@ const Excluded = [
"PropertiesSchema", "PropertiesSchema",
"AsyncSchema", "AsyncSchema",
"AnySchema", "AnySchema",
"SMTPConnection.CustomAuthenticationResponse",
"TransportMakeRequestResponse",
]; ];
function modify(obj) { function modify(obj) {
@ -75,14 +77,14 @@ function main() {
const generator = TJS.buildGenerator(program, settings); const generator = TJS.buildGenerator(program, settings);
if (!generator || !program) return; if (!generator || !program) return;
let schemas = generator let schemas = generator.getUserSymbols().filter((x) => {
.getUserSymbols() return (
.filter( (x.endsWith("Schema") ||
(x) => x.endsWith("Response") ||
(x.endsWith("Schema") || x.endsWith("Response")) && x.startsWith("API")) &&
!Excluded.includes(x), !Excluded.includes(x)
); );
console.log(schemas); });
var definitions = {}; var definitions = {};
@ -133,7 +135,7 @@ function main() {
definitions = { ...definitions, [name]: { ...part } }; definitions = { ...definitions, [name]: { ...part } };
} }
modify(definitions); //modify(definitions);
fs.writeFileSync(schemaPath, JSON.stringify(definitions, null, 4)); fs.writeFileSync(schemaPath, JSON.stringify(definitions, null, 4));
} }

View File

@ -1,80 +1,64 @@
const express = require("express");
const path = require("path");
const { traverseDirectory } = require("lambert-server");
const RouteUtility = require("../../dist/api/util/handlers/route.js");
const methods = ["get", "post", "put", "delete", "patch"];
const routes = new Map();
let currentFile = "";
let currentPath = "";
/* /*
Spacebar: A FOSS re-implementation and extension of the Discord.com backend. For some reason, if a route exports multiple functions, it won't be registered here!
Copyright (C) 2023 Spacebar and Spacebar Contributors If someone could fix that I'd really appreciate it, but for now just, don't do that :p
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published
by the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
const { traverseDirectory } = require("lambert-server"); const proxy = (file, method, prefix, path, ...args) => {
const path = require("path"); const opts = args.find((x) => x?.prototype?.OPTS_MARKER == true);
const express = require("express"); if (!opts)
const RouteUtility = require("../../dist/api/util/handlers/route.js"); return console.error(
const Router = express.Router; `${file} has route without route() description middleware`,
const routes = new Map();
let currentPath = "";
let currentFile = "";
const methods = ["get", "post", "put", "delete", "patch"];
function registerPath(file, method, prefix, path, ...args) {
const urlPath = prefix + path;
const sourceFile = file.replace("/dist/", "/src/").replace(".js", ".ts");
const opts = args.find((x) => typeof x === "object");
if (opts) {
routes.set(urlPath + "|" + method, opts);
opts.file = sourceFile;
// console.log(method, urlPath, opts);
} else {
console.log(
`${sourceFile}\nrouter.${method}("${path}") is missing the "route()" description middleware\n`,
); );
}
}
function routeOptions(opts) { console.log(prefix + path + " - " + method);
opts.file = file.replace("/dist/", "/src/").replace(".js", ".ts");
routes.set(prefix + path + "|" + method, opts());
};
express.Router = () => {
return Object.fromEntries(
methods.map((method) => [
method,
proxy.bind(null, currentFile, method, currentPath),
]),
);
};
RouteUtility.route = (opts) => {
const func = function () {
return opts; return opts;
} };
func.prototype.OPTS_MARKER = true;
RouteUtility.route = routeOptions; return func;
express.Router = (opts) => {
const path = currentPath;
const file = currentFile;
const router = Router(opts);
for (const method of methods) {
router[method] = registerPath.bind(null, file, method, path);
}
return router;
}; };
module.exports = function getRouteDescriptions() { module.exports = function getRouteDescriptions() {
const root = path.join(__dirname, "..", "..", "dist", "api", "routes", "/"); const root = path.join(__dirname, "..", "..", "dist", "api", "routes", "/");
traverseDirectory({ dirname: root, recursive: true }, (file) => { traverseDirectory({ dirname: root, recursive: true }, (file) => {
currentFile = file; currentFile = file;
let path = file.replace(root.slice(0, -1), "");
path = path.split(".").slice(0, -1).join("."); // trancate .js/.ts file extension of path currentPath = file.replace(root.slice(0, -1), "");
path = path.replaceAll("#", ":").replaceAll("\\", "/"); // replace # with : for path parameters and windows paths with slashes currentPath = currentPath.split(".").slice(0, -1).join("."); // trancate .js/.ts file extension of path
if (path.endsWith("/index")) path = path.slice(0, "/index".length * -1); // delete index from path currentPath = currentPath.replaceAll("#", ":").replaceAll("\\", "/"); // replace # with : for path parameters and windows paths with slashes
currentPath = path; if (currentPath.endsWith("/index"))
currentPath = currentPath.slice(0, "/index".length * -1); // delete index from path
try { try {
require(file); require(file);
} catch (error) { } catch (e) {
console.error("error loading file " + file, error); console.error(e);
} }
}); });
return routes; return routes;
}; };

View File

@ -16,22 +16,34 @@
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import { Request, Response, Router } from "express";
import { route } from "@spacebar/api"; import { route } from "@spacebar/api";
import { import {
Application, Application,
generateToken,
User,
BotModifySchema, BotModifySchema,
handleFile,
DiscordApiErrors, DiscordApiErrors,
User,
generateToken,
handleFile,
} from "@spacebar/util"; } from "@spacebar/util";
import { Request, Response, Router } from "express";
import { HTTPError } from "lambert-server"; import { HTTPError } from "lambert-server";
import { verifyToken } from "node-2fa"; import { verifyToken } from "node-2fa";
const router: Router = Router(); const router: Router = Router();
router.post("/", route({}), async (req: Request, res: Response) => { router.post(
"/",
route({
responses: {
204: {
body: "TokenOnlyResponse",
},
400: {
body: "APIErrorResponse",
},
},
}),
async (req: Request, res: Response) => {
const app = await Application.findOneOrFail({ const app = await Application.findOneOrFail({
where: { id: req.params.id }, where: { id: req.params.id },
relations: ["owner"], relations: ["owner"],
@ -61,9 +73,22 @@ router.post("/", route({}), async (req: Request, res: Response) => {
res.send({ res.send({
token: await generateToken(user.id), token: await generateToken(user.id),
}).status(204); }).status(204);
}); },
);
router.post("/reset", route({}), async (req: Request, res: Response) => { router.post(
"/reset",
route({
responses: {
200: {
body: "TokenResponse",
},
400: {
body: "APIErrorResponse",
},
},
}),
async (req: Request, res: Response) => {
const bot = await User.findOneOrFail({ where: { id: req.params.id } }); const bot = await User.findOneOrFail({ where: { id: req.params.id } });
const owner = await User.findOneOrFail({ where: { id: req.user_id } }); const owner = await User.findOneOrFail({ where: { id: req.user_id } });
@ -83,11 +108,22 @@ router.post("/reset", route({}), async (req: Request, res: Response) => {
const token = await generateToken(bot.id); const token = await generateToken(bot.id);
res.json({ token }).status(200); res.json({ token }).status(200);
}); },
);
router.patch( router.patch(
"/", "/",
route({ body: "BotModifySchema" }), route({
requestBody: "BotModifySchema",
responses: {
200: {
body: "Application",
},
400: {
body: "APIErrorResponse",
},
},
}),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
const body = req.body as BotModifySchema; const body = req.body as BotModifySchema;
if (!body.avatar?.trim()) delete body.avatar; if (!body.avatar?.trim()) delete body.avatar;

View File

@ -16,15 +16,25 @@
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import { Router, Response, Request } from "express";
import { route } from "@spacebar/api"; import { route } from "@spacebar/api";
import { Request, Response, Router } from "express";
const router = Router(); const router = Router();
router.get("/", route({}), (req: Request, res: Response) => { router.get(
"/",
route({
responses: {
200: {
body: "ApplicationEntitlementsResponse",
},
},
}),
(req: Request, res: Response) => {
// TODO: // TODO:
//const { exclude_consumed } = req.query; //const { exclude_consumed } = req.query;
res.status(200).send([]); res.status(200).send([]);
}); },
);
export default router; export default router;

View File

@ -16,19 +16,31 @@
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import { Request, Response, Router } from "express";
import { route } from "@spacebar/api"; import { route } from "@spacebar/api";
import { import {
Application, Application,
DiscordApiErrors,
ApplicationModifySchema, ApplicationModifySchema,
DiscordApiErrors,
} from "@spacebar/util"; } from "@spacebar/util";
import { verifyToken } from "node-2fa"; import { Request, Response, Router } from "express";
import { HTTPError } from "lambert-server"; import { HTTPError } from "lambert-server";
import { verifyToken } from "node-2fa";
const router: Router = Router(); const router: Router = Router();
router.get("/", route({}), async (req: Request, res: Response) => { router.get(
"/",
route({
responses: {
200: {
body: "Application",
},
400: {
body: "APIErrorResponse",
},
},
}),
async (req: Request, res: Response) => {
const app = await Application.findOneOrFail({ const app = await Application.findOneOrFail({
where: { id: req.params.id }, where: { id: req.params.id },
relations: ["owner", "bot"], relations: ["owner", "bot"],
@ -37,11 +49,22 @@ router.get("/", route({}), async (req: Request, res: Response) => {
throw DiscordApiErrors.ACTION_NOT_AUTHORIZED_ON_APPLICATION; throw DiscordApiErrors.ACTION_NOT_AUTHORIZED_ON_APPLICATION;
return res.json(app); return res.json(app);
}); },
);
router.patch( router.patch(
"/", "/",
route({ body: "ApplicationModifySchema" }), route({
requestBody: "ApplicationModifySchema",
responses: {
200: {
body: "Application",
},
400: {
body: "APIErrorResponse",
},
},
}),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
const body = req.body as ApplicationModifySchema; const body = req.body as ApplicationModifySchema;
@ -73,7 +96,17 @@ router.patch(
}, },
); );
router.post("/delete", route({}), async (req: Request, res: Response) => { router.post(
"/delete",
route({
responses: {
200: {},
400: {
body: "APIErrorResponse",
},
},
}),
async (req: Request, res: Response) => {
const app = await Application.findOneOrFail({ const app = await Application.findOneOrFail({
where: { id: req.params.id }, where: { id: req.params.id },
relations: ["bot", "owner"], relations: ["bot", "owner"],
@ -83,13 +116,15 @@ router.post("/delete", route({}), async (req: Request, res: Response) => {
if ( if (
app.owner.totp_secret && app.owner.totp_secret &&
(!req.body.code || verifyToken(app.owner.totp_secret, req.body.code)) (!req.body.code ||
verifyToken(app.owner.totp_secret, req.body.code))
) )
throw new HTTPError(req.t("auth:login.INVALID_TOTP_CODE"), 60008); throw new HTTPError(req.t("auth:login.INVALID_TOTP_CODE"), 60008);
await Application.delete({ id: app.id }); await Application.delete({ id: app.id });
res.send().status(200); res.send().status(200);
}); },
);
export default router; export default router;

View File

@ -16,13 +16,23 @@
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import { Request, Response, Router } from "express";
import { route } from "@spacebar/api"; import { route } from "@spacebar/api";
import { Request, Response, Router } from "express";
const router: Router = Router(); const router: Router = Router();
router.get("/", route({}), async (req: Request, res: Response) => { router.get(
"/",
route({
responses: {
200: {
body: "ApplicationSkusResponse",
},
},
}),
async (req: Request, res: Response) => {
res.json([]).status(200); res.json([]).status(200);
}); },
);
export default router; export default router;

View File

@ -16,14 +16,24 @@
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import { Request, Response, Router } from "express";
import { route } from "@spacebar/api"; import { route } from "@spacebar/api";
import { Request, Response, Router } from "express";
const router: Router = Router(); const router: Router = Router();
router.get("/", route({}), async (req: Request, res: Response) => { router.get(
"/",
route({
responses: {
200: {
body: "ApplicationDetectableResponse",
},
},
}),
async (req: Request, res: Response) => {
//TODO //TODO
res.send([]).status(200); res.send([]).status(200);
}); },
);
export default router; export default router;

View File

@ -16,28 +16,45 @@
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import { Request, Response, Router } from "express";
import { route } from "@spacebar/api"; import { route } from "@spacebar/api";
import { import {
Application, Application,
ApplicationCreateSchema, ApplicationCreateSchema,
trimSpecial,
User, User,
trimSpecial,
} from "@spacebar/util"; } from "@spacebar/util";
import { Request, Response, Router } from "express";
const router: Router = Router(); const router: Router = Router();
router.get("/", route({}), async (req: Request, res: Response) => { router.get(
"/",
route({
responses: {
200: {
body: "APIApplicationArray",
},
},
}),
async (req: Request, res: Response) => {
const results = await Application.find({ const results = await Application.find({
where: { owner: { id: req.user_id } }, where: { owner: { id: req.user_id } },
relations: ["owner", "bot"], relations: ["owner", "bot"],
}); });
res.json(results).status(200); res.json(results).status(200);
}); },
);
router.post( router.post(
"/", "/",
route({ body: "ApplicationCreateSchema" }), route({
requestBody: "ApplicationCreateSchema",
responses: {
200: {
body: "Application",
},
},
}),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
const body = req.body as ApplicationCreateSchema; const body = req.body as ApplicationCreateSchema;
const user = await User.findOneOrFail({ where: { id: req.user_id } }); const user = await User.findOneOrFail({ where: { id: req.user_id } });

View File

@ -30,7 +30,18 @@ const router = Router();
router.post( router.post(
"/", "/",
route({ body: "ForgotPasswordSchema" }), route({
requestBody: "ForgotPasswordSchema",
responses: {
204: {},
400: {
body: "APIErrorOrCaptchaResponse",
},
500: {
body: "APIErrorResponse",
},
},
}),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
const { login, captcha_key } = req.body as ForgotPasswordSchema; const { login, captcha_key } = req.body as ForgotPasswordSchema;

View File

@ -16,7 +16,7 @@
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import { route, random } from "@spacebar/api"; import { random, route } from "@spacebar/api";
import { Config, ValidRegistrationToken } from "@spacebar/util"; import { Config, ValidRegistrationToken } from "@spacebar/util";
import { Request, Response, Router } from "express"; import { Request, Response, Router } from "express";
@ -25,7 +25,22 @@ export default router;
router.get( router.get(
"/", "/",
route({ right: "OPERATOR" }), route({
query: {
count: {
type: "number",
description:
"The number of registration tokens to generate. Defaults to 1.",
},
length: {
type: "number",
description:
"The length of each registration token. Defaults to 255.",
},
},
right: "OPERATOR",
responses: { 200: { body: "GenerateRegistrationTokensResponse" } },
}),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
const count = req.query.count ? parseInt(req.query.count as string) : 1; const count = req.query.count ? parseInt(req.query.count as string) : 1;
const length = req.query.length const length = req.query.length

View File

@ -16,12 +16,20 @@
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import { Router, Request, Response } from "express"; import { IPAnalysis, getIpAdress, route } from "@spacebar/api";
import { route } from "@spacebar/api"; import { Request, Response, Router } from "express";
import { getIpAdress, IPAnalysis } from "@spacebar/api";
const router = Router(); const router = Router();
router.get("/", route({}), async (req: Request, res: Response) => { router.get(
"/",
route({
responses: {
200: {
body: "LocationMetadataResponse",
},
},
}),
async (req: Request, res: Response) => {
//TODO //TODO
//Note: It's most likely related to legal. At the moment Discord hasn't finished this too //Note: It's most likely related to legal. At the moment Discord hasn't finished this too
const country_code = (await IPAnalysis(getIpAdress(req))).country_code; const country_code = (await IPAnalysis(getIpAdress(req))).country_code;
@ -30,6 +38,7 @@ router.get("/", route({}), async (req: Request, res: Response) => {
country_code: country_code, country_code: country_code,
promotional_email_opt_in: { required: true, pre_checked: false }, promotional_email_opt_in: { required: true, pre_checked: false },
}); });
}); },
);
export default router; export default router;

View File

@ -36,7 +36,17 @@ export default router;
router.post( router.post(
"/", "/",
route({ body: "LoginSchema" }), route({
requestBody: "LoginSchema",
responses: {
200: {
body: "LoginResponse",
},
400: {
body: "APIErrorOrCaptchaResponse",
},
},
}),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
const { login, password, captcha_key, undelete } = const { login, password, captcha_key, undelete } =
req.body as LoginSchema; req.body as LoginSchema;

View File

@ -22,9 +22,19 @@ import { Request, Response, Router } from "express";
const router: Router = Router(); const router: Router = Router();
export default router; export default router;
router.post("/", route({}), async (req: Request, res: Response) => { router.post(
"/",
route({
responses: {
204: {},
},
}),
async (req: Request, res: Response) => {
if (req.body.provider != null || req.body.voip_provider != null) { if (req.body.provider != null || req.body.voip_provider != null) {
console.log(`[LOGOUT]: provider or voip provider not null!`, req.body); console.log(
`[LOGOUT]: provider or voip provider not null!`,
req.body,
);
} else { } else {
delete req.body.provider; delete req.body.provider;
delete req.body.voip_provider; delete req.body.voip_provider;
@ -32,4 +42,5 @@ router.post("/", route({}), async (req: Request, res: Response) => {
console.log(`[LOGOUT]: Extra fields sent in logout!`, req.body); console.log(`[LOGOUT]: Extra fields sent in logout!`, req.body);
} }
res.status(204).send(); res.status(204).send();
}); },
);

View File

@ -16,16 +16,26 @@
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import { Router, Request, Response } from "express";
import { route } from "@spacebar/api"; import { route } from "@spacebar/api";
import { BackupCode, generateToken, User, TotpSchema } from "@spacebar/util"; import { BackupCode, TotpSchema, User, generateToken } from "@spacebar/util";
import { verifyToken } from "node-2fa"; import { Request, Response, Router } from "express";
import { HTTPError } from "lambert-server"; import { HTTPError } from "lambert-server";
import { verifyToken } from "node-2fa";
const router = Router(); const router = Router();
router.post( router.post(
"/", "/",
route({ body: "TotpSchema" }), route({
requestBody: "TotpSchema",
responses: {
200: {
body: "TokenResponse",
},
400: {
body: "APIErrorResponse",
},
},
}),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
// const { code, ticket, gift_code_sku_id, login_source } = // const { code, ticket, gift_code_sku_id, login_source } =
const { code, ticket } = req.body as TotpSchema; const { code, ticket } = req.body as TotpSchema;

View File

@ -41,7 +41,13 @@ function toArrayBuffer(buf: Buffer) {
router.post( router.post(
"/", "/",
route({ body: "WebAuthnTotpSchema" }), route({
requestBody: "WebAuthnTotpSchema",
responses: {
200: { body: "TokenResponse" },
400: { body: "APIErrorResponse" },
},
}),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
if (!WebAuthn.fido2) { if (!WebAuthn.fido2) {
// TODO: I did this for typescript and I can't use ! // TODO: I did this for typescript and I can't use !

View File

@ -16,25 +16,25 @@
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import { Request, Response, Router } from "express";
import { import {
Config,
generateToken,
Invite,
FieldErrors,
User,
adjustEmail,
RegisterSchema,
ValidRegistrationToken,
} from "@spacebar/util";
import {
route,
getIpAdress,
IPAnalysis, IPAnalysis,
getIpAdress,
isProxy, isProxy,
route,
verifyCaptcha, verifyCaptcha,
} from "@spacebar/api"; } from "@spacebar/api";
import {
Config,
FieldErrors,
Invite,
RegisterSchema,
User,
ValidRegistrationToken,
adjustEmail,
generateToken,
} from "@spacebar/util";
import bcrypt from "bcrypt"; import bcrypt from "bcrypt";
import { Request, Response, Router } from "express";
import { HTTPError } from "lambert-server"; import { HTTPError } from "lambert-server";
import { MoreThan } from "typeorm"; import { MoreThan } from "typeorm";
@ -42,7 +42,13 @@ const router: Router = Router();
router.post( router.post(
"/", "/",
route({ body: "RegisterSchema" }), route({
requestBody: "RegisterSchema",
responses: {
200: { body: "TokenOnlyResponse" },
400: { body: "APIErrorOrCaptchaResponse" },
},
}),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
const body = req.body as RegisterSchema; const body = req.body as RegisterSchema;
const { register, security, limits } = Config.get(); const { register, security, limits } = Config.get();

View File

@ -31,9 +31,20 @@ import { Request, Response, Router } from "express";
const router = Router(); const router = Router();
// TODO: the response interface also returns settings, but this route doesn't actually return that.
router.post( router.post(
"/", "/",
route({ body: "PasswordResetSchema" }), route({
requestBody: "PasswordResetSchema",
responses: {
200: {
body: "TokenOnlyResponse",
},
400: {
body: "APIErrorOrCaptchaResponse",
},
},
}),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
const { password, token } = req.body as PasswordResetSchema; const { password, token } = req.body as PasswordResetSchema;

View File

@ -37,9 +37,20 @@ async function getToken(user: User) {
return { token }; return { token };
} }
// TODO: the response interface also returns settings, but this route doesn't actually return that.
router.post( router.post(
"/", "/",
route({ body: "VerifyEmailSchema" }), route({
requestBody: "VerifyEmailSchema",
responses: {
200: {
body: "TokenResponse",
},
400: {
body: "APIErrorOrCaptchaResponse",
},
},
}),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
const { captcha_key, token } = req.body; const { captcha_key, token } = req.body;

View File

@ -24,7 +24,18 @@ const router = Router();
router.post( router.post(
"/", "/",
route({ right: "RESEND_VERIFICATION_EMAIL" }), route({
right: "RESEND_VERIFICATION_EMAIL",
responses: {
204: {},
400: {
body: "APIErrorResponse",
},
500: {
body: "APIErrorResponse",
},
},
}),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
const user = await User.findOneOrFail({ const user = await User.findOneOrFail({
where: { id: req.user_id }, where: { id: req.user_id },

View File

@ -16,15 +16,21 @@
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import { Router, Request, Response } from "express";
import { route } from "@spacebar/api"; import { route } from "@spacebar/api";
import { FieldErrors, User, BackupCodesChallengeSchema } from "@spacebar/util"; import { BackupCodesChallengeSchema, FieldErrors, User } from "@spacebar/util";
import bcrypt from "bcrypt"; import bcrypt from "bcrypt";
import { Request, Response, Router } from "express";
const router = Router(); const router = Router();
router.post( router.post(
"/", "/",
route({ body: "BackupCodesChallengeSchema" }), route({
requestBody: "BackupCodesChallengeSchema",
responses: {
200: { body: "BackupCodesChallengeResponse" },
400: { body: "APIErrorResponse" },
},
}),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
const { password } = req.body as BackupCodesChallengeSchema; const { password } = req.body as BackupCodesChallengeSchema;

View File

@ -16,18 +16,18 @@
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import { route } from "@spacebar/api";
import { import {
Channel, Channel,
ChannelDeleteEvent, ChannelDeleteEvent,
ChannelModifySchema,
ChannelType, ChannelType,
ChannelUpdateEvent, ChannelUpdateEvent,
emitEvent,
Recipient, Recipient,
emitEvent,
handleFile, handleFile,
ChannelModifySchema,
} from "@spacebar/util"; } from "@spacebar/util";
import { Request, Response, Router } from "express"; import { Request, Response, Router } from "express";
import { route } from "@spacebar/api";
const router: Router = Router(); const router: Router = Router();
// TODO: delete channel // TODO: delete channel
@ -35,7 +35,15 @@ const router: Router = Router();
router.get( router.get(
"/", "/",
route({ permission: "VIEW_CHANNEL" }), route({
permission: "VIEW_CHANNEL",
responses: {
200: {
body: "Channel",
},
404: {},
},
}),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
const { channel_id } = req.params; const { channel_id } = req.params;
@ -49,7 +57,15 @@ router.get(
router.delete( router.delete(
"/", "/",
route({ permission: "MANAGE_CHANNELS" }), route({
permission: "MANAGE_CHANNELS",
responses: {
200: {
body: "Channel",
},
404: {},
},
}),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
const { channel_id } = req.params; const { channel_id } = req.params;
@ -90,7 +106,19 @@ router.delete(
router.patch( router.patch(
"/", "/",
route({ body: "ChannelModifySchema", permission: "MANAGE_CHANNELS" }), route({
requestBody: "ChannelModifySchema",
permission: "MANAGE_CHANNELS",
responses: {
200: {
body: "Channel",
},
404: {},
400: {
body: "APIErrorResponse",
},
},
}),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
const payload = req.body as ChannelModifySchema; const payload = req.body as ChannelModifySchema;
const { channel_id } = req.params; const { channel_id } = req.params;

View File

@ -16,29 +16,37 @@
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import { Router, Request, Response } from "express"; import { random, route } from "@spacebar/api";
import { HTTPError } from "lambert-server";
import { route } from "@spacebar/api";
import { random } from "@spacebar/api";
import { import {
Channel, Channel,
Guild,
Invite, Invite,
InviteCreateEvent, InviteCreateEvent,
emitEvent,
User,
Guild,
PublicInviteRelation, PublicInviteRelation,
User,
emitEvent,
isTextChannel,
} from "@spacebar/util"; } from "@spacebar/util";
import { isTextChannel } from "./messages"; import { Request, Response, Router } from "express";
import { HTTPError } from "lambert-server";
const router: Router = Router(); const router: Router = Router();
router.post( router.post(
"/", "/",
route({ route({
body: "InviteCreateSchema", requestBody: "InviteCreateSchema",
permission: "CREATE_INSTANT_INVITE", permission: "CREATE_INSTANT_INVITE",
right: "CREATE_INVITES", right: "CREATE_INVITES",
responses: {
201: {
body: "Invite",
},
404: {},
400: {
body: "APIErrorResponse",
},
},
}), }),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
const { user_id } = req; const { user_id } = req;
@ -84,7 +92,15 @@ router.post(
router.get( router.get(
"/", "/",
route({ permission: "MANAGE_CHANNELS" }), route({
permission: "MANAGE_CHANNELS",
responses: {
200: {
body: "APIInviteArray",
},
404: {},
},
}),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
const { channel_id } = req.params; const { channel_id } = req.params;
const channel = await Channel.findOneOrFail({ const channel = await Channel.findOneOrFail({

View File

@ -16,6 +16,7 @@
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import { route } from "@spacebar/api";
import { import {
emitEvent, emitEvent,
getPermission, getPermission,
@ -23,7 +24,6 @@ import {
ReadState, ReadState,
} from "@spacebar/util"; } from "@spacebar/util";
import { Request, Response, Router } from "express"; import { Request, Response, Router } from "express";
import { route } from "@spacebar/api";
const router = Router(); const router = Router();
@ -33,7 +33,13 @@ const router = Router();
router.post( router.post(
"/", "/",
route({ body: "MessageAcknowledgeSchema" }), route({
requestBody: "MessageAcknowledgeSchema",
responses: {
200: {},
403: {},
},
}),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
const { channel_id, message_id } = req.params; const { channel_id, message_id } = req.params;

View File

@ -16,14 +16,21 @@
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import { Router, Response, Request } from "express";
import { route } from "@spacebar/api"; import { route } from "@spacebar/api";
import { Request, Response, Router } from "express";
const router = Router(); const router = Router();
router.post( router.post(
"/", "/",
route({ permission: "MANAGE_MESSAGES" }), route({
permission: "MANAGE_MESSAGES",
responses: {
200: {
body: "Message",
},
},
}),
(req: Request, res: Response) => { (req: Request, res: Response) => {
// TODO: // TODO:
res.json({ res.json({

View File

@ -19,24 +19,23 @@
import { import {
Attachment, Attachment,
Channel, Channel,
emitEvent,
SpacebarApiErrors,
getPermission,
getRights,
Message, Message,
MessageCreateEvent, MessageCreateEvent,
MessageCreateSchema,
MessageDeleteEvent, MessageDeleteEvent,
MessageEditSchema,
MessageUpdateEvent, MessageUpdateEvent,
Snowflake, Snowflake,
SpacebarApiErrors,
emitEvent,
getPermission,
getRights,
uploadFile, uploadFile,
MessageCreateSchema,
MessageEditSchema,
} from "@spacebar/util"; } from "@spacebar/util";
import { Router, Response, Request } from "express"; import { Request, Response, Router } from "express";
import multer from "multer";
import { route } from "@spacebar/api";
import { handleMessage, postHandleMessage } from "@spacebar/api";
import { HTTPError } from "lambert-server"; import { HTTPError } from "lambert-server";
import multer from "multer";
import { handleMessage, postHandleMessage, route } from "../../../../../util";
const router = Router(); const router = Router();
// TODO: message content/embed string length limit // TODO: message content/embed string length limit
@ -53,9 +52,19 @@ const messageUpload = multer({
router.patch( router.patch(
"/", "/",
route({ route({
body: "MessageEditSchema", requestBody: "MessageEditSchema",
permission: "SEND_MESSAGES", permission: "SEND_MESSAGES",
right: "SEND_MESSAGES", right: "SEND_MESSAGES",
responses: {
200: {
body: "Message",
},
400: {
body: "APIErrorResponse",
},
403: {},
404: {},
},
}), }),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
const { message_id, channel_id } = req.params; const { message_id, channel_id } = req.params;
@ -143,9 +152,19 @@ router.put(
next(); next();
}, },
route({ route({
body: "MessageCreateSchema", requestBody: "MessageCreateSchema",
permission: "SEND_MESSAGES", permission: "SEND_MESSAGES",
right: "SEND_BACKDATED_EVENTS", right: "SEND_BACKDATED_EVENTS",
responses: {
200: {
body: "Message",
},
400: {
body: "APIErrorResponse",
},
403: {},
404: {},
},
}), }),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
const { channel_id, message_id } = req.params; const { channel_id, message_id } = req.params;
@ -230,7 +249,19 @@ router.put(
router.get( router.get(
"/", "/",
route({ permission: "VIEW_CHANNEL" }), route({
permission: "VIEW_CHANNEL",
responses: {
200: {
body: "Message",
},
400: {
body: "APIErrorResponse",
},
403: {},
404: {},
},
}),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
const { message_id, channel_id } = req.params; const { message_id, channel_id } = req.params;
@ -252,11 +283,26 @@ router.get(
}, },
); );
router.delete("/", route({}), async (req: Request, res: Response) => { router.delete(
"/",
route({
responses: {
204: {},
400: {
body: "APIErrorResponse",
},
404: {},
},
}),
async (req: Request, res: Response) => {
const { message_id, channel_id } = req.params; const { message_id, channel_id } = req.params;
const channel = await Channel.findOneOrFail({ where: { id: channel_id } }); const channel = await Channel.findOneOrFail({
const message = await Message.findOneOrFail({ where: { id: message_id } }); where: { id: channel_id },
});
const message = await Message.findOneOrFail({
where: { id: message_id },
});
const rights = await getRights(req.user_id); const rights = await getRights(req.user_id);
@ -284,6 +330,7 @@ router.delete("/", route({}), async (req: Request, res: Response) => {
} as MessageDeleteEvent); } as MessageDeleteEvent);
res.sendStatus(204); res.sendStatus(204);
}); },
);
export default router; export default router;

View File

@ -16,6 +16,7 @@
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import { route } from "@spacebar/api";
import { import {
Channel, Channel,
emitEvent, emitEvent,
@ -32,8 +33,7 @@ import {
PublicUserProjection, PublicUserProjection,
User, User,
} from "@spacebar/util"; } from "@spacebar/util";
import { route } from "@spacebar/api"; import { Request, Response, Router } from "express";
import { Router, Response, Request } from "express";
import { HTTPError } from "lambert-server"; import { HTTPError } from "lambert-server";
import { In } from "typeorm"; import { In } from "typeorm";
@ -57,7 +57,17 @@ function getEmoji(emoji: string): PartialEmoji {
router.delete( router.delete(
"/", "/",
route({ permission: "MANAGE_MESSAGES" }), route({
permission: "MANAGE_MESSAGES",
responses: {
204: {},
400: {
body: "APIErrorResponse",
},
404: {},
403: {},
},
}),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
const { message_id, channel_id } = req.params; const { message_id, channel_id } = req.params;
@ -83,7 +93,17 @@ router.delete(
router.delete( router.delete(
"/:emoji", "/:emoji",
route({ permission: "MANAGE_MESSAGES" }), route({
permission: "MANAGE_MESSAGES",
responses: {
204: {},
400: {
body: "APIErrorResponse",
},
404: {},
403: {},
},
}),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
const { message_id, channel_id } = req.params; const { message_id, channel_id } = req.params;
const emoji = getEmoji(req.params.emoji); const emoji = getEmoji(req.params.emoji);
@ -120,7 +140,19 @@ router.delete(
router.get( router.get(
"/:emoji", "/:emoji",
route({ permission: "VIEW_CHANNEL" }), route({
permission: "VIEW_CHANNEL",
responses: {
200: {
body: "PublicUser",
},
400: {
body: "APIErrorResponse",
},
404: {},
403: {},
},
}),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
const { message_id, channel_id } = req.params; const { message_id, channel_id } = req.params;
const emoji = getEmoji(req.params.emoji); const emoji = getEmoji(req.params.emoji);
@ -148,7 +180,18 @@ router.get(
router.put( router.put(
"/:emoji/:user_id", "/:emoji/:user_id",
route({ permission: "READ_MESSAGE_HISTORY", right: "SELF_ADD_REACTIONS" }), route({
permission: "READ_MESSAGE_HISTORY",
right: "SELF_ADD_REACTIONS",
responses: {
204: {},
400: {
body: "APIErrorResponse",
},
404: {},
403: {},
},
}),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
const { message_id, channel_id, user_id } = req.params; const { message_id, channel_id, user_id } = req.params;
if (user_id !== "@me") throw new HTTPError("Invalid user"); if (user_id !== "@me") throw new HTTPError("Invalid user");
@ -219,7 +262,16 @@ router.put(
router.delete( router.delete(
"/:emoji/:user_id", "/:emoji/:user_id",
route({}), route({
responses: {
204: {},
400: {
body: "APIErrorResponse",
},
404: {},
403: {},
},
}),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
let { user_id } = req.params; let { user_id } = req.params;
const { message_id, channel_id } = req.params; const { message_id, channel_id } = req.params;

View File

@ -16,18 +16,18 @@
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import { Router, Response, Request } from "express"; import { route } from "@spacebar/api";
import { import {
Channel, Channel,
Config, Config,
emitEvent, emitEvent,
getPermission, getPermission,
getRights, getRights,
MessageDeleteBulkEvent,
Message, Message,
MessageDeleteBulkEvent,
} from "@spacebar/util"; } from "@spacebar/util";
import { Request, Response, Router } from "express";
import { HTTPError } from "lambert-server"; import { HTTPError } from "lambert-server";
import { route } from "@spacebar/api";
const router: Router = Router(); const router: Router = Router();
@ -38,7 +38,17 @@ export default router;
// https://discord.com/developers/docs/resources/channel#bulk-delete-messages // https://discord.com/developers/docs/resources/channel#bulk-delete-messages
router.post( router.post(
"/", "/",
route({ body: "BulkDeleteSchema" }), route({
requestBody: "BulkDeleteSchema",
responses: {
204: {},
400: {
body: "APIErrorResponse",
},
403: {},
404: {},
},
}),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
const { channel_id } = req.params; const { channel_id } = req.params;
const channel = await Channel.findOneOrFail({ const channel = await Channel.findOneOrFail({

View File

@ -16,64 +16,69 @@
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import { Router, Response, Request } from "express"; import { handleMessage, postHandleMessage, route } from "@spacebar/api";
import { import {
Attachment, Attachment,
Channel, Channel,
ChannelType, ChannelType,
Config, Config,
DmChannelDTO, DmChannelDTO,
emitEvent,
FieldErrors, FieldErrors,
getPermission, Member,
Message, Message,
MessageCreateEvent, MessageCreateEvent,
Snowflake,
uploadFile,
Member,
MessageCreateSchema, MessageCreateSchema,
Reaction,
ReadState, ReadState,
Rights, Rights,
Reaction, Snowflake,
User, User,
emitEvent,
getPermission,
isTextChannel,
uploadFile,
} from "@spacebar/util"; } from "@spacebar/util";
import { Request, Response, Router } from "express";
import { HTTPError } from "lambert-server"; import { HTTPError } from "lambert-server";
import { handleMessage, postHandleMessage, route } from "@spacebar/api";
import multer from "multer"; import multer from "multer";
import { FindManyOptions, FindOperator, LessThan, MoreThan } from "typeorm"; import { FindManyOptions, FindOperator, LessThan, MoreThan } from "typeorm";
import { URL } from "url"; import { URL } from "url";
const router: Router = Router(); const router: Router = Router();
export default router;
export function isTextChannel(type: ChannelType): boolean {
switch (type) {
case ChannelType.GUILD_STORE:
case ChannelType.GUILD_VOICE:
case ChannelType.GUILD_STAGE_VOICE:
case ChannelType.GUILD_CATEGORY:
case ChannelType.GUILD_FORUM:
case ChannelType.DIRECTORY:
throw new HTTPError("not a text channel", 400);
case ChannelType.DM:
case ChannelType.GROUP_DM:
case ChannelType.GUILD_NEWS:
case ChannelType.GUILD_NEWS_THREAD:
case ChannelType.GUILD_PUBLIC_THREAD:
case ChannelType.GUILD_PRIVATE_THREAD:
case ChannelType.GUILD_TEXT:
case ChannelType.ENCRYPTED:
case ChannelType.ENCRYPTED_THREAD:
return true;
default:
throw new HTTPError("unimplemented", 400);
}
}
// https://discord.com/developers/docs/resources/channel#create-message // https://discord.com/developers/docs/resources/channel#create-message
// get messages // get messages
router.get("/", route({}), async (req: Request, res: Response) => { router.get(
"/",
route({
query: {
around: {
type: "string",
},
before: {
type: "string",
},
after: {
type: "string",
},
limit: {
type: "number",
description:
"max number of messages to return (1-100). defaults to 50",
},
},
responses: {
200: {
body: "APIMessageArray",
},
400: {
body: "APIErrorResponse",
},
403: {},
404: {},
},
}),
async (req: Request, res: Response) => {
const channel_id = req.params.channel_id; const channel_id = req.params.channel_id;
const channel = await Channel.findOneOrFail({ const channel = await Channel.findOneOrFail({
where: { id: channel_id }, where: { id: channel_id },
@ -174,7 +179,8 @@ router.get("/", route({}), async (req: Request, res: Response) => {
return x; return x;
}), }),
); );
}); },
);
// TODO: config max upload size // TODO: config max upload size
const messageUpload = multer({ const messageUpload = multer({
@ -205,9 +211,19 @@ router.post(
next(); next();
}, },
route({ route({
body: "MessageCreateSchema", requestBody: "MessageCreateSchema",
permission: "SEND_MESSAGES", permission: "SEND_MESSAGES",
right: "SEND_MESSAGES", right: "SEND_MESSAGES",
responses: {
200: {
body: "Message",
},
400: {
body: "APIErrorResponse",
},
403: {},
404: {},
},
}), }),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
const { channel_id } = req.params; const { channel_id } = req.params;
@ -366,3 +382,5 @@ router.post(
return res.json(message); return res.json(message);
}, },
); );
export default router;

View File

@ -19,13 +19,13 @@
import { import {
Channel, Channel,
ChannelPermissionOverwrite, ChannelPermissionOverwrite,
ChannelPermissionOverwriteSchema,
ChannelUpdateEvent, ChannelUpdateEvent,
emitEvent, emitEvent,
Member, Member,
Role, Role,
ChannelPermissionOverwriteSchema,
} from "@spacebar/util"; } from "@spacebar/util";
import { Router, Response, Request } from "express"; import { Request, Response, Router } from "express";
import { HTTPError } from "lambert-server"; import { HTTPError } from "lambert-server";
import { route } from "@spacebar/api"; import { route } from "@spacebar/api";
@ -36,8 +36,14 @@ const router: Router = Router();
router.put( router.put(
"/:overwrite_id", "/:overwrite_id",
route({ route({
body: "ChannelPermissionOverwriteSchema", requestBody: "ChannelPermissionOverwriteSchema",
permission: "MANAGE_ROLES", permission: "MANAGE_ROLES",
responses: {
204: {},
404: {},
501: {},
400: { body: "APIErrorResponse" },
},
}), }),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
const { channel_id, overwrite_id } = req.params; const { channel_id, overwrite_id } = req.params;
@ -92,7 +98,7 @@ router.put(
// TODO: check permission hierarchy // TODO: check permission hierarchy
router.delete( router.delete(
"/:overwrite_id", "/:overwrite_id",
route({ permission: "MANAGE_ROLES" }), route({ permission: "MANAGE_ROLES", responses: { 204: {}, 404: {} } }),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
const { channel_id, overwrite_id } = req.params; const { channel_id, overwrite_id } = req.params;

View File

@ -16,23 +16,33 @@
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import { route } from "@spacebar/api";
import { import {
Channel, Channel,
ChannelPinsUpdateEvent, ChannelPinsUpdateEvent,
Config, Config,
DiscordApiErrors,
emitEvent, emitEvent,
Message, Message,
MessageUpdateEvent, MessageUpdateEvent,
DiscordApiErrors,
} from "@spacebar/util"; } from "@spacebar/util";
import { Router, Request, Response } from "express"; import { Request, Response, Router } from "express";
import { route } from "@spacebar/api";
const router: Router = Router(); const router: Router = Router();
router.put( router.put(
"/:message_id", "/:message_id",
route({ permission: "VIEW_CHANNEL" }), route({
permission: "VIEW_CHANNEL",
responses: {
204: {},
403: {},
404: {},
400: {
body: "APIErrorResponse",
},
},
}),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
const { channel_id, message_id } = req.params; const { channel_id, message_id } = req.params;
@ -74,7 +84,17 @@ router.put(
router.delete( router.delete(
"/:message_id", "/:message_id",
route({ permission: "VIEW_CHANNEL" }), route({
permission: "VIEW_CHANNEL",
responses: {
204: {},
403: {},
404: {},
400: {
body: "APIErrorResponse",
},
},
}),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
const { channel_id, message_id } = req.params; const { channel_id, message_id } = req.params;
@ -114,7 +134,17 @@ router.delete(
router.get( router.get(
"/", "/",
route({ permission: ["READ_MESSAGE_HISTORY"] }), route({
permission: ["READ_MESSAGE_HISTORY"],
responses: {
200: {
body: "APIMessageArray",
},
400: {
body: "APIErrorResponse",
},
},
}),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
const { channel_id } = req.params; const { channel_id } = req.params;

View File

@ -16,20 +16,20 @@
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import { HTTPError } from "lambert-server";
import { route } from "@spacebar/api"; import { route } from "@spacebar/api";
import { isTextChannel } from "./messages";
import { FindManyOptions, Between, Not, FindOperator } from "typeorm";
import { import {
Channel, Channel,
emitEvent,
getPermission,
getRights,
Message, Message,
MessageDeleteBulkEvent, MessageDeleteBulkEvent,
PurgeSchema, PurgeSchema,
emitEvent,
getPermission,
getRights,
isTextChannel,
} from "@spacebar/util"; } from "@spacebar/util";
import { Router, Response, Request } from "express"; import { Request, Response, Router } from "express";
import { HTTPError } from "lambert-server";
import { Between, FindManyOptions, FindOperator, Not } from "typeorm";
const router: Router = Router(); const router: Router = Router();
@ -42,6 +42,14 @@ router.post(
"/", "/",
route({ route({
/*body: "PurgeSchema",*/ /*body: "PurgeSchema",*/
responses: {
204: {},
400: {
body: "APIErrorResponse",
},
404: {},
403: {},
},
}), }),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
const { channel_id } = req.params; const { channel_id } = req.params;

View File

@ -16,7 +16,7 @@
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import { Request, Response, Router } from "express"; import { route } from "@spacebar/api";
import { import {
Channel, Channel,
ChannelRecipientAddEvent, ChannelRecipientAddEvent,
@ -28,11 +28,19 @@ import {
Recipient, Recipient,
User, User,
} from "@spacebar/util"; } from "@spacebar/util";
import { route } from "@spacebar/api"; import { Request, Response, Router } from "express";
const router: Router = Router(); const router: Router = Router();
router.put("/:user_id", route({}), async (req: Request, res: Response) => { router.put(
"/:user_id",
route({
responses: {
201: {},
404: {},
},
}),
async (req: Request, res: Response) => {
const { channel_id, user_id } = req.params; const { channel_id, user_id } = req.params;
const channel = await Channel.findOneOrFail({ const channel = await Channel.findOneOrFail({
where: { id: channel_id }, where: { id: channel_id },
@ -79,9 +87,18 @@ router.put("/:user_id", route({}), async (req: Request, res: Response) => {
} as ChannelRecipientAddEvent); } as ChannelRecipientAddEvent);
return res.sendStatus(204); return res.sendStatus(204);
} }
}); },
);
router.delete("/:user_id", route({}), async (req: Request, res: Response) => { router.delete(
"/:user_id",
route({
responses: {
204: {},
404: {},
},
}),
async (req: Request, res: Response) => {
const { channel_id, user_id } = req.params; const { channel_id, user_id } = req.params;
const channel = await Channel.findOneOrFail({ const channel = await Channel.findOneOrFail({
where: { id: channel_id }, where: { id: channel_id },
@ -102,6 +119,7 @@ router.delete("/:user_id", route({}), async (req: Request, res: Response) => {
await Channel.removeRecipientFromChannel(channel, user_id); await Channel.removeRecipientFromChannel(channel, user_id);
return res.sendStatus(204); return res.sendStatus(204);
}); },
);
export default router; export default router;

View File

@ -16,15 +16,22 @@
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import { Channel, emitEvent, Member, TypingStartEvent } from "@spacebar/util";
import { route } from "@spacebar/api"; import { route } from "@spacebar/api";
import { Router, Request, Response } from "express"; import { Channel, emitEvent, Member, TypingStartEvent } from "@spacebar/util";
import { Request, Response, Router } from "express";
const router: Router = Router(); const router: Router = Router();
router.post( router.post(
"/", "/",
route({ permission: "SEND_MESSAGES" }), route({
permission: "SEND_MESSAGES",
responses: {
204: {},
404: {},
403: {},
},
}),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
const { channel_id } = req.params; const { channel_id } = req.params;
const user_id = req.user_id; const user_id = req.user_id;

View File

@ -16,34 +16,56 @@
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import { Router, Response, Request } from "express";
import { route } from "@spacebar/api"; import { route } from "@spacebar/api";
import { import {
Channel, Channel,
Config, Config,
handleFile, DiscordApiErrors,
trimSpecial,
User, User,
Webhook, Webhook,
WebhookCreateSchema, WebhookCreateSchema,
WebhookType, WebhookType,
handleFile,
trimSpecial,
isTextChannel,
} from "@spacebar/util"; } from "@spacebar/util";
import { HTTPError } from "lambert-server";
import { isTextChannel } from "./messages/index";
import { DiscordApiErrors } from "@spacebar/util";
import crypto from "crypto"; import crypto from "crypto";
import { Request, Response, Router } from "express";
import { HTTPError } from "lambert-server";
const router: Router = Router(); const router: Router = Router();
//TODO: implement webhooks //TODO: implement webhooks
router.get("/", route({}), async (req: Request, res: Response) => { router.get(
"/",
route({
responses: {
200: {
body: "APIWebhookArray",
},
},
}),
async (req: Request, res: Response) => {
res.json([]); res.json([]);
}); },
);
// TODO: use Image Data Type for avatar instead of String // TODO: use Image Data Type for avatar instead of String
router.post( router.post(
"/", "/",
route({ body: "WebhookCreateSchema", permission: "MANAGE_WEBHOOKS" }), route({
requestBody: "WebhookCreateSchema",
permission: "MANAGE_WEBHOOKS",
responses: {
200: {
body: "WebhookCreateResponse",
},
400: {
body: "APIErrorResponse",
},
403: {},
},
}),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
const channel_id = req.params.channel_id; const channel_id = req.params.channel_id;
const channel = await Channel.findOneOrFail({ const channel = await Channel.findOneOrFail({

View File

@ -29,7 +29,7 @@ const router = Router();
router.post( router.post(
"/", "/",
route({ body: "ConnectionCallbackSchema" }), route({ requestBody: "ConnectionCallbackSchema" }),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
const { connection_name } = req.params; const { connection_name } = req.params;
const connection = ConnectionStore.connections.get(connection_name); const connection = ConnectionStore.connections.get(connection_name);

View File

@ -16,22 +16,33 @@
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import { Guild, Config } from "@spacebar/util"; import { Config, Guild } from "@spacebar/util";
import { Router, Request, Response } from "express";
import { route } from "@spacebar/api"; import { route } from "@spacebar/api";
import { Request, Response, Router } from "express";
import { Like } from "typeorm"; import { Like } from "typeorm";
const router = Router(); const router = Router();
router.get("/", route({}), async (req: Request, res: Response) => { router.get(
"/",
route({
responses: {
200: {
body: "DiscoverableGuildsResponse",
},
},
}),
async (req: Request, res: Response) => {
const { offset, limit, categories } = req.query; const { offset, limit, categories } = req.query;
const showAllGuilds = Config.get().guild.discovery.showAllGuilds; const showAllGuilds = Config.get().guild.discovery.showAllGuilds;
const configLimit = Config.get().guild.discovery.limit; const configLimit = Config.get().guild.discovery.limit;
let guilds; let guilds;
if (categories == undefined) { if (categories == undefined) {
guilds = showAllGuilds guilds = showAllGuilds
? await Guild.find({ take: Math.abs(Number(limit || configLimit)) }) ? await Guild.find({
take: Math.abs(Number(limit || configLimit)),
})
: await Guild.find({ : await Guild.find({
where: { features: Like(`%DISCOVERABLE%`) }, where: { features: Like(`%DISCOVERABLE%`) },
take: Math.abs(Number(limit || configLimit)), take: Math.abs(Number(limit || configLimit)),
@ -59,6 +70,7 @@ router.get("/", route({}), async (req: Request, res: Response) => {
offset: Number(offset || Config.get().guild.discovery.offset), offset: Number(offset || Config.get().guild.discovery.offset),
limit: Number(limit || configLimit), limit: Number(limit || configLimit),
}); });
}); },
);
export default router; export default router;

View File

@ -16,13 +16,22 @@
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import { Categories } from "@spacebar/util";
import { Router, Response, Request } from "express";
import { route } from "@spacebar/api"; import { route } from "@spacebar/api";
import { Categories } from "@spacebar/util";
import { Request, Response, Router } from "express";
const router = Router(); const router = Router();
router.get("/categories", route({}), async (req: Request, res: Response) => { router.get(
"/categories",
route({
responses: {
200: {
body: "APIDiscoveryCategoryArray",
},
},
}),
async (req: Request, res: Response) => {
// TODO: // TODO:
// Get locale instead // Get locale instead
@ -34,6 +43,7 @@ router.get("/categories", route({}), async (req: Request, res: Response) => {
: await Categories.find({ where: { is_primary: true } }); : await Categories.find({ where: { is_primary: true } });
res.send(out); res.send(out);
}); },
);
export default router; export default router;

View File

@ -16,13 +16,23 @@
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import { Router, Response, Request } from "express";
import { route } from "@spacebar/api"; import { route } from "@spacebar/api";
import { FieldErrors, Release } from "@spacebar/util"; import { FieldErrors, Release } from "@spacebar/util";
import { Request, Response, Router } from "express";
const router = Router(); const router = Router();
router.get("/", route({}), async (req: Request, res: Response) => { router.get(
"/",
route({
responses: {
302: {},
404: {
body: "APIErrorResponse",
},
},
}),
async (req: Request, res: Response) => {
const { platform } = req.query; const { platform } = req.query;
if (!platform) if (!platform)
@ -42,6 +52,7 @@ router.get("/", route({}), async (req: Request, res: Response) => {
}); });
res.redirect(release.url); res.redirect(release.url);
}); },
);
export default router; export default router;

View File

@ -16,21 +16,22 @@
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import { route } from "@spacebar/api";
import { Config } from "@spacebar/util"; import { Config } from "@spacebar/util";
import { Router, Response, Request } from "express"; import { Request, Response, Router } from "express";
import { route, RouteOptions } from "@spacebar/api";
const router = Router(); const router = Router();
const options: RouteOptions = { router.get(
test: { "/",
response: { route({
responses: {
200: {
body: "GatewayBotResponse", body: "GatewayBotResponse",
}, },
}, },
}; }),
(req: Request, res: Response) => {
router.get("/", route(options), (req: Request, res: Response) => {
const { endpointPublic } = Config.get().gateway; const { endpointPublic } = Config.get().gateway;
res.json({ res.json({
url: endpointPublic || process.env.GATEWAY || "ws://localhost:3001", url: endpointPublic || process.env.GATEWAY || "ws://localhost:3001",
@ -42,6 +43,7 @@ router.get("/", route(options), (req: Request, res: Response) => {
max_concurrency: 1, max_concurrency: 1,
}, },
}); });
}); },
);
export default router; export default router;

View File

@ -16,25 +16,27 @@
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import { route } from "@spacebar/api";
import { Config } from "@spacebar/util"; import { Config } from "@spacebar/util";
import { Router, Response, Request } from "express"; import { Request, Response, Router } from "express";
import { route, RouteOptions } from "@spacebar/api";
const router = Router(); const router = Router();
const options: RouteOptions = { router.get(
test: { "/",
response: { route({
responses: {
200: {
body: "GatewayResponse", body: "GatewayResponse",
}, },
}, },
}; }),
(req: Request, res: Response) => {
router.get("/", route(options), (req: Request, res: Response) => {
const { endpointPublic } = Config.get().gateway; const { endpointPublic } = Config.get().gateway;
res.json({ res.json({
url: endpointPublic || process.env.GATEWAY || "ws://localhost:3001", url: endpointPublic || process.env.GATEWAY || "ws://localhost:3001",
}); });
}); },
);
export default router; export default router;

View File

@ -16,15 +16,42 @@
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import { Router, Response, Request } from "express"; import { route } from "@spacebar/api";
import { TenorMediaTypes, getGifApiKey, parseGifResult } from "@spacebar/util";
import { Request, Response, Router } from "express";
import fetch from "node-fetch"; import fetch from "node-fetch";
import ProxyAgent from "proxy-agent"; import ProxyAgent from "proxy-agent";
import { route } from "@spacebar/api";
import { getGifApiKey, parseGifResult } from "./trending";
const router = Router(); const router = Router();
router.get("/", route({}), async (req: Request, res: Response) => { router.get(
"/",
route({
query: {
q: {
type: "string",
required: true,
description: "Search query",
},
media_format: {
type: "string",
description: "Media format",
values: Object.keys(TenorMediaTypes).filter((key) =>
isNaN(Number(key)),
),
},
locale: {
type: "string",
description: "Locale",
},
},
responses: {
200: {
body: "TenorGifsResponse",
},
},
}),
async (req: Request, res: Response) => {
// TODO: Custom providers // TODO: Custom providers
const { q, media_format, locale } = req.query; const { q, media_format, locale } = req.query;
@ -44,6 +71,7 @@ router.get("/", route({}), async (req: Request, res: Response) => {
const { results } = await response.json(); const { results } = await response.json();
res.json(results.map(parseGifResult)).status(200); res.json(results.map(parseGifResult)).status(200);
}); },
);
export default router; export default router;

View File

@ -16,15 +16,37 @@
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import { Router, Response, Request } from "express"; import { route } from "@spacebar/api";
import { TenorMediaTypes, getGifApiKey, parseGifResult } from "@spacebar/util";
import { Request, Response, Router } from "express";
import fetch from "node-fetch"; import fetch from "node-fetch";
import ProxyAgent from "proxy-agent"; import ProxyAgent from "proxy-agent";
import { route } from "@spacebar/api";
import { getGifApiKey, parseGifResult } from "./trending";
const router = Router(); const router = Router();
router.get("/", route({}), async (req: Request, res: Response) => { router.get(
"/",
route({
query: {
media_format: {
type: "string",
description: "Media format",
values: Object.keys(TenorMediaTypes).filter((key) =>
isNaN(Number(key)),
),
},
locale: {
type: "string",
description: "Locale",
},
},
responses: {
200: {
body: "TenorGifsResponse",
},
},
}),
async (req: Request, res: Response) => {
// TODO: Custom providers // TODO: Custom providers
const { media_format, locale } = req.query; const { media_format, locale } = req.query;
@ -44,6 +66,7 @@ router.get("/", route({}), async (req: Request, res: Response) => {
const { results } = await response.json(); const { results } = await response.json();
res.json(results.map(parseGifResult)).status(200); res.json(results.map(parseGifResult)).status(200);
}); },
);
export default router; export default router;

View File

@ -16,88 +16,35 @@
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import { Router, Response, Request } from "express"; import { route } from "@spacebar/api";
import {
TenorCategoriesResults,
TenorTrendingResults,
getGifApiKey,
parseGifResult,
} from "@spacebar/util";
import { Request, Response, Router } from "express";
import fetch from "node-fetch"; import fetch from "node-fetch";
import ProxyAgent from "proxy-agent"; import ProxyAgent from "proxy-agent";
import { route } from "@spacebar/api";
import { Config } from "@spacebar/util";
import { HTTPError } from "lambert-server";
const router = Router(); const router = Router();
// TODO: Move somewhere else router.get(
enum TENOR_GIF_TYPES { "/",
gif, route({
mediumgif, query: {
tinygif, locale: {
nanogif, type: "string",
mp4, description: "Locale",
loopedmp4, },
tinymp4, },
nanomp4, responses: {
webm, 200: {
tinywebm, body: "TenorTrendingResponse",
nanowebm, },
} },
}),
type TENOR_MEDIA = { async (req: Request, res: Response) => {
preview: string;
url: string;
dims: number[];
size: number;
};
type TENOR_GIF = {
created: number;
hasaudio: boolean;
id: string;
media: { [type in keyof typeof TENOR_GIF_TYPES]: TENOR_MEDIA }[];
tags: string[];
title: string;
itemurl: string;
hascaption: boolean;
url: string;
};
type TENOR_CATEGORY = {
searchterm: string;
path: string;
image: string;
name: string;
};
type TENOR_CATEGORIES_RESULTS = {
tags: TENOR_CATEGORY[];
};
type TENOR_TRENDING_RESULTS = {
next: string;
results: TENOR_GIF[];
};
export function parseGifResult(result: TENOR_GIF) {
return {
id: result.id,
title: result.title,
url: result.itemurl,
src: result.media[0].mp4.url,
gif_src: result.media[0].gif.url,
width: result.media[0].mp4.dims[0],
height: result.media[0].mp4.dims[1],
preview: result.media[0].mp4.preview,
};
}
export function getGifApiKey() {
const { enabled, provider, apiKey } = Config.get().gif;
if (!enabled) throw new HTTPError(`Gifs are disabled`);
if (provider !== "tenor" || !apiKey)
throw new HTTPError(`${provider} gif provider not supported`);
return apiKey;
}
router.get("/", route({}), async (req: Request, res: Response) => {
// TODO: Custom providers // TODO: Custom providers
// TODO: return gifs as mp4 // TODO: return gifs as mp4
// const { media_format, locale } = req.query; // const { media_format, locale } = req.query;
@ -126,8 +73,10 @@ router.get("/", route({}), async (req: Request, res: Response) => {
), ),
]); ]);
const { tags } = (await responseSource.json()) as TENOR_CATEGORIES_RESULTS; const { tags } =
const { results } = (await trendGifSource.json()) as TENOR_TRENDING_RESULTS; (await responseSource.json()) as TenorCategoriesResults;
const { results } =
(await trendGifSource.json()) as TenorTrendingResults;
res.json({ res.json({
categories: tags.map((x) => ({ categories: tags.map((x) => ({
@ -136,6 +85,7 @@ router.get("/", route({}), async (req: Request, res: Response) => {
})), })),
gifs: [parseGifResult(results[0])], gifs: [parseGifResult(results[0])],
}).status(200); }).status(200);
}); },
);
export default router; export default router;

View File

@ -16,15 +16,24 @@
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import { Guild, Config } from "@spacebar/util"; import { Config, Guild } from "@spacebar/util";
import { Router, Request, Response } from "express";
import { route } from "@spacebar/api"; import { route } from "@spacebar/api";
import { Request, Response, Router } from "express";
import { Like } from "typeorm"; import { Like } from "typeorm";
const router = Router(); const router = Router();
router.get("/", route({}), async (req: Request, res: Response) => { router.get(
"/",
route({
responses: {
200: {
body: "GuildRecommendationsResponse",
},
},
}),
async (req: Request, res: Response) => {
// const { limit, personalization_disabled } = req.query; // const { limit, personalization_disabled } = req.query;
const { limit } = req.query; const { limit } = req.query;
const showAllGuilds = Config.get().guild.discovery.showAllGuilds; const showAllGuilds = Config.get().guild.discovery.showAllGuilds;
@ -44,6 +53,7 @@ router.get("/", route({}), async (req: Request, res: Response) => {
recommended_guilds: guilds, recommended_guilds: guilds,
load_id: `server_recs/${genLoadId(32)}`, load_id: `server_recs/${genLoadId(32)}`,
}).status(200); }).status(200);
}); },
);
export default router; export default router;

View File

@ -16,20 +16,20 @@
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import { Request, Response, Router } from "express"; import { getIpAdress, route } from "@spacebar/api";
import { import {
Ban,
BanModeratorSchema,
BanRegistrySchema,
DiscordApiErrors, DiscordApiErrors,
emitEvent,
GuildBanAddEvent, GuildBanAddEvent,
GuildBanRemoveEvent, GuildBanRemoveEvent,
Ban,
User,
Member, Member,
BanRegistrySchema, User,
BanModeratorSchema, emitEvent,
} from "@spacebar/util"; } from "@spacebar/util";
import { Request, Response, Router } from "express";
import { HTTPError } from "lambert-server"; import { HTTPError } from "lambert-server";
import { getIpAdress, route } from "@spacebar/api";
const router: Router = Router(); const router: Router = Router();
@ -37,7 +37,17 @@ const router: Router = Router();
router.get( router.get(
"/", "/",
route({ permission: "BAN_MEMBERS" }), route({
permission: "BAN_MEMBERS",
responses: {
200: {
body: "GuildBansResponse",
},
403: {
body: "APIErrorResponse",
},
},
}),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
const { guild_id } = req.params; const { guild_id } = req.params;
@ -73,7 +83,20 @@ router.get(
router.get( router.get(
"/:user", "/:user",
route({ permission: "BAN_MEMBERS" }), route({
permission: "BAN_MEMBERS",
responses: {
200: {
body: "BanModeratorSchema",
},
403: {
body: "APIErrorResponse",
},
404: {
body: "APIErrorResponse",
},
},
}),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
const { guild_id } = req.params; const { guild_id } = req.params;
const user_id = req.params.ban; const user_id = req.params.ban;
@ -97,7 +120,21 @@ router.get(
router.put( router.put(
"/:user_id", "/:user_id",
route({ body: "BanCreateSchema", permission: "BAN_MEMBERS" }), route({
requestBody: "BanCreateSchema",
permission: "BAN_MEMBERS",
responses: {
200: {
body: "Ban",
},
400: {
body: "APIErrorResponse",
},
403: {
body: "APIErrorResponse",
},
},
}),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
const { guild_id } = req.params; const { guild_id } = req.params;
const banned_user_id = req.params.user_id; const banned_user_id = req.params.user_id;
@ -143,7 +180,20 @@ router.put(
router.put( router.put(
"/@me", "/@me",
route({ body: "BanCreateSchema" }), route({
requestBody: "BanCreateSchema",
responses: {
200: {
body: "Ban",
},
400: {
body: "APIErrorResponse",
},
403: {
body: "APIErrorResponse",
},
},
}),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
const { guild_id } = req.params; const { guild_id } = req.params;
@ -182,7 +232,18 @@ router.put(
router.delete( router.delete(
"/:user_id", "/:user_id",
route({ permission: "BAN_MEMBERS" }), route({
permission: "BAN_MEMBERS",
responses: {
204: {},
403: {
body: "APIErrorResponse",
},
404: {
body: "APIErrorResponse",
},
},
}),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
const { guild_id, user_id } = req.params; const { guild_id, user_id } = req.params;

View File

@ -16,28 +16,52 @@
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import { Router, Response, Request } from "express"; import { route } from "@spacebar/api";
import { import {
Channel, Channel,
ChannelUpdateEvent,
emitEvent,
ChannelModifySchema, ChannelModifySchema,
ChannelReorderSchema, ChannelReorderSchema,
ChannelUpdateEvent,
emitEvent,
} from "@spacebar/util"; } from "@spacebar/util";
import { Request, Response, Router } from "express";
import { HTTPError } from "lambert-server"; import { HTTPError } from "lambert-server";
import { route } from "@spacebar/api";
const router = Router(); const router = Router();
router.get("/", route({}), async (req: Request, res: Response) => { router.get(
"/",
route({
responses: {
201: {
body: "APIChannelArray",
},
},
}),
async (req: Request, res: Response) => {
const { guild_id } = req.params; const { guild_id } = req.params;
const channels = await Channel.find({ where: { guild_id } }); const channels = await Channel.find({ where: { guild_id } });
res.json(channels); res.json(channels);
}); },
);
router.post( router.post(
"/", "/",
route({ body: "ChannelModifySchema", permission: "MANAGE_CHANNELS" }), route({
requestBody: "ChannelModifySchema",
permission: "MANAGE_CHANNELS",
responses: {
201: {
body: "Channel",
},
400: {
body: "APIErrorResponse",
},
403: {
body: "APIErrorResponse",
},
},
}),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
// creates a new guild channel https://discord.com/developers/docs/resources/guild#create-guild-channel // creates a new guild channel https://discord.com/developers/docs/resources/guild#create-guild-channel
const { guild_id } = req.params; const { guild_id } = req.params;
@ -54,7 +78,19 @@ router.post(
router.patch( router.patch(
"/", "/",
route({ body: "ChannelReorderSchema", permission: "MANAGE_CHANNELS" }), route({
requestBody: "ChannelReorderSchema",
permission: "MANAGE_CHANNELS",
responses: {
204: {},
400: {
body: "APIErrorResponse",
},
403: {
body: "APIErrorResponse",
},
},
}),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
// changes guild channel position // changes guild channel position
const { guild_id } = req.params; const { guild_id } = req.params;

View File

@ -16,16 +16,29 @@
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import { emitEvent, GuildDeleteEvent, Guild } from "@spacebar/util";
import { Router, Request, Response } from "express";
import { HTTPError } from "lambert-server";
import { route } from "@spacebar/api"; import { route } from "@spacebar/api";
import { Guild, GuildDeleteEvent, emitEvent } from "@spacebar/util";
import { Request, Response, Router } from "express";
import { HTTPError } from "lambert-server";
const router = Router(); const router = Router();
// discord prefixes this route with /delete instead of using the delete method // discord prefixes this route with /delete instead of using the delete method
// docs are wrong https://discord.com/developers/docs/resources/guild#delete-guild // docs are wrong https://discord.com/developers/docs/resources/guild#delete-guild
router.post("/", route({}), async (req: Request, res: Response) => { router.post(
"/",
route({
responses: {
204: {},
401: {
body: "APIErrorResponse",
},
404: {
body: "APIErrorResponse",
},
},
}),
async (req: Request, res: Response) => {
const { guild_id } = req.params; const { guild_id } = req.params;
const guild = await Guild.findOneOrFail({ const guild = await Guild.findOneOrFail({
@ -47,6 +60,7 @@ router.post("/", route({}), async (req: Request, res: Response) => {
]); ]);
return res.sendStatus(204); return res.sendStatus(204);
}); },
);
export default router; export default router;

View File

@ -16,12 +16,21 @@
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import { Router, Request, Response } from "express";
import { route } from "@spacebar/api"; import { route } from "@spacebar/api";
import { Request, Response, Router } from "express";
const router = Router(); const router = Router();
router.get("/", route({}), async (req: Request, res: Response) => { router.get(
"/",
route({
responses: {
200: {
body: "GuildDiscoveryRequirementsResponse",
},
},
}),
async (req: Request, res: Response) => {
const { guild_id } = req.params; const { guild_id } = req.params;
// TODO: // TODO:
// Load from database // Load from database
@ -50,6 +59,7 @@ router.get("/", route({}), async (req: Request, res: Response) => {
}, },
minimum_size: 0, minimum_size: 0,
}); });
}); },
);
export default router; export default router;

View File

@ -16,25 +16,37 @@
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import { Router, Request, Response } from "express"; import { route } from "@spacebar/api";
import { import {
Config, Config,
DiscordApiErrors, DiscordApiErrors,
emitEvent,
Emoji, Emoji,
EmojiCreateSchema,
EmojiModifySchema,
GuildEmojisUpdateEvent, GuildEmojisUpdateEvent,
handleFile,
Member, Member,
Snowflake, Snowflake,
User, User,
EmojiCreateSchema, emitEvent,
EmojiModifySchema, handleFile,
} from "@spacebar/util"; } from "@spacebar/util";
import { route } from "@spacebar/api"; import { Request, Response, Router } from "express";
const router = Router(); const router = Router();
router.get("/", route({}), async (req: Request, res: Response) => { router.get(
"/",
route({
responses: {
200: {
body: "APIEmojiArray",
},
403: {
body: "APIErrorResponse",
},
},
}),
async (req: Request, res: Response) => {
const { guild_id } = req.params; const { guild_id } = req.params;
await Member.IsInGuildOrFail(req.user_id, guild_id); await Member.IsInGuildOrFail(req.user_id, guild_id);
@ -45,9 +57,25 @@ router.get("/", route({}), async (req: Request, res: Response) => {
}); });
return res.json(emojis); return res.json(emojis);
}); },
);
router.get("/:emoji_id", route({}), async (req: Request, res: Response) => { router.get(
"/:emoji_id",
route({
responses: {
200: {
body: "Emoji",
},
403: {
body: "APIErrorResponse",
},
404: {
body: "APIErrorResponse",
},
},
}),
async (req: Request, res: Response) => {
const { guild_id, emoji_id } = req.params; const { guild_id, emoji_id } = req.params;
await Member.IsInGuildOrFail(req.user_id, guild_id); await Member.IsInGuildOrFail(req.user_id, guild_id);
@ -58,13 +86,25 @@ router.get("/:emoji_id", route({}), async (req: Request, res: Response) => {
}); });
return res.json(emoji); return res.json(emoji);
}); },
);
router.post( router.post(
"/", "/",
route({ route({
body: "EmojiCreateSchema", requestBody: "EmojiCreateSchema",
permission: "MANAGE_EMOJIS_AND_STICKERS", permission: "MANAGE_EMOJIS_AND_STICKERS",
responses: {
201: {
body: "Emoji",
},
403: {
body: "APIErrorResponse",
},
404: {
body: "APIErrorResponse",
},
},
}), }),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
const { guild_id } = req.params; const { guild_id } = req.params;
@ -113,8 +153,16 @@ router.post(
router.patch( router.patch(
"/:emoji_id", "/:emoji_id",
route({ route({
body: "EmojiModifySchema", requestBody: "EmojiModifySchema",
permission: "MANAGE_EMOJIS_AND_STICKERS", permission: "MANAGE_EMOJIS_AND_STICKERS",
responses: {
200: {
body: "Emoji",
},
403: {
body: "APIErrorResponse",
},
},
}), }),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
const { emoji_id, guild_id } = req.params; const { emoji_id, guild_id } = req.params;
@ -141,7 +189,15 @@ router.patch(
router.delete( router.delete(
"/:emoji_id", "/:emoji_id",
route({ permission: "MANAGE_EMOJIS_AND_STICKERS" }), route({
permission: "MANAGE_EMOJIS_AND_STICKERS",
responses: {
204: {},
403: {
body: "APIErrorResponse",
},
},
}),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
const { emoji_id, guild_id } = req.params; const { emoji_id, guild_id } = req.params;

View File

@ -16,25 +16,40 @@
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import { Request, Response, Router } from "express"; import { route } from "@spacebar/api";
import { import {
DiscordApiErrors, DiscordApiErrors,
Guild,
GuildUpdateEvent,
GuildUpdateSchema,
Member,
SpacebarApiErrors,
emitEvent, emitEvent,
getPermission, getPermission,
getRights, getRights,
Guild,
GuildUpdateEvent,
handleFile, handleFile,
Member,
GuildUpdateSchema,
SpacebarApiErrors,
} from "@spacebar/util"; } from "@spacebar/util";
import { Request, Response, Router } from "express";
import { HTTPError } from "lambert-server"; import { HTTPError } from "lambert-server";
import { route } from "@spacebar/api";
const router = Router(); const router = Router();
router.get("/", route({}), async (req: Request, res: Response) => { router.get(
"/",
route({
responses: {
"200": {
body: "APIGuildWithJoinedAt",
},
401: {
body: "APIErrorResponse",
},
404: {
body: "APIErrorResponse",
},
},
}),
async (req: Request, res: Response) => {
const { guild_id } = req.params; const { guild_id } = req.params;
const [guild, member] = await Promise.all([ const [guild, member] = await Promise.all([
@ -51,11 +66,29 @@ router.get("/", route({}), async (req: Request, res: Response) => {
...guild, ...guild,
joined_at: member?.joined_at, joined_at: member?.joined_at,
}); });
}); },
);
router.patch( router.patch(
"/", "/",
route({ body: "GuildUpdateSchema", permission: "MANAGE_GUILD" }), route({
requestBody: "GuildUpdateSchema",
permission: "MANAGE_GUILD",
responses: {
"200": {
body: "GuildUpdateSchema",
},
401: {
body: "APIErrorResponse",
},
403: {
body: "APIErrorResponse",
},
404: {
body: "APIErrorResponse",
},
},
}),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
const body = req.body as GuildUpdateSchema; const body = req.body as GuildUpdateSchema;
const { guild_id } = req.params; const { guild_id } = req.params;

View File

@ -16,15 +16,22 @@
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import { Invite, PublicInviteRelation } from "@spacebar/util";
import { route } from "@spacebar/api"; import { route } from "@spacebar/api";
import { Invite, PublicInviteRelation } from "@spacebar/util";
import { Request, Response, Router } from "express"; import { Request, Response, Router } from "express";
const router = Router(); const router = Router();
router.get( router.get(
"/", "/",
route({ permission: "MANAGE_GUILD" }), route({
permission: "MANAGE_GUILD",
responses: {
200: {
body: "APIInviteArray",
},
},
}),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
const { guild_id } = req.params; const { guild_id } = req.params;

View File

@ -16,17 +16,27 @@
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import { Router, Request, Response } from "express";
import { route } from "@spacebar/api"; import { route } from "@spacebar/api";
import { Request, Response, Router } from "express";
const router = Router(); const router = Router();
router.get("/", route({}), async (req: Request, res: Response) => { router.get(
"/",
route({
responses: {
404: {
body: "APIErrorResponse",
},
},
}),
async (req: Request, res: Response) => {
// TODO: member verification // TODO: member verification
res.status(404).json({ res.status(404).json({
message: "Unknown Guild Member Verification Form", message: "Unknown Guild Member Verification Form",
code: 10068, code: 10068,
}); });
}); },
);
export default router; export default router;

View File

@ -16,25 +16,40 @@
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import { Request, Response, Router } from "express"; import { route } from "@spacebar/api";
import { import {
Member, emitEvent,
Emoji,
getPermission, getPermission,
getRights, getRights,
Role,
GuildMemberUpdateEvent,
emitEvent,
Sticker,
Emoji,
Guild, Guild,
GuildMemberUpdateEvent,
handleFile, handleFile,
Member,
MemberChangeSchema, MemberChangeSchema,
Role,
Sticker,
} from "@spacebar/util"; } from "@spacebar/util";
import { route } from "@spacebar/api"; import { Request, Response, Router } from "express";
const router = Router(); const router = Router();
router.get("/", route({}), async (req: Request, res: Response) => { router.get(
"/",
route({
responses: {
200: {
body: "Member",
},
403: {
body: "APIErrorResponse",
},
404: {
body: "APIErrorResponse",
},
},
}),
async (req: Request, res: Response) => {
const { guild_id, member_id } = req.params; const { guild_id, member_id } = req.params;
await Member.IsInGuildOrFail(req.user_id, guild_id); await Member.IsInGuildOrFail(req.user_id, guild_id);
@ -43,11 +58,28 @@ router.get("/", route({}), async (req: Request, res: Response) => {
}); });
return res.json(member); return res.json(member);
}); },
);
router.patch( router.patch(
"/", "/",
route({ body: "MemberChangeSchema" }), route({
requestBody: "MemberChangeSchema",
responses: {
200: {
body: "Member",
},
400: {
body: "APIErrorResponse",
},
403: {
body: "APIErrorResponse",
},
404: {
body: "APIErrorResponse",
},
},
}),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
const { guild_id } = req.params; const { guild_id } = req.params;
const member_id = const member_id =
@ -119,7 +151,22 @@ router.patch(
}, },
); );
router.put("/", route({}), async (req: Request, res: Response) => { router.put(
"/",
route({
responses: {
200: {
body: "MemberJoinGuildResponse",
},
403: {
body: "APIErrorResponse",
},
404: {
body: "APIErrorResponse",
},
},
}),
async (req: Request, res: Response) => {
// TODO: Lurker mode // TODO: Lurker mode
const rights = await getRights(req.user_id); const rights = await getRights(req.user_id);
@ -151,9 +198,20 @@ router.put("/", route({}), async (req: Request, res: Response) => {
await Member.addToGuild(member_id, guild_id); await Member.addToGuild(member_id, guild_id);
res.send({ ...guild, emojis: emoji, roles: roles, stickers: stickers }); res.send({ ...guild, emojis: emoji, roles: roles, stickers: stickers });
}); },
);
router.delete("/", route({}), async (req: Request, res: Response) => { router.delete(
"/",
route({
responses: {
204: {},
403: {
body: "APIErrorResponse",
},
},
}),
async (req: Request, res: Response) => {
const { guild_id, member_id } = req.params; const { guild_id, member_id } = req.params;
const permission = await getPermission(req.user_id, guild_id); const permission = await getPermission(req.user_id, guild_id);
const rights = await getRights(req.user_id); const rights = await getRights(req.user_id);
@ -167,6 +225,7 @@ router.delete("/", route({}), async (req: Request, res: Response) => {
await Member.removeFromGuild(member_id, guild_id); await Member.removeFromGuild(member_id, guild_id);
res.sendStatus(204); res.sendStatus(204);
}); },
);
export default router; export default router;

View File

@ -16,15 +16,26 @@
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import { getPermission, Member, PermissionResolvable } from "@spacebar/util";
import { route } from "@spacebar/api"; import { route } from "@spacebar/api";
import { getPermission, Member, PermissionResolvable } from "@spacebar/util";
import { Request, Response, Router } from "express"; import { Request, Response, Router } from "express";
const router = Router(); const router = Router();
router.patch( router.patch(
"/", "/",
route({ body: "MemberNickChangeSchema" }), route({
requestBody: "MemberNickChangeSchema",
responses: {
200: {},
400: {
body: "APIErrorResponse",
},
403: {
body: "APIErrorResponse",
},
},
}),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
const { guild_id } = req.params; const { guild_id } = req.params;
let permissionString: PermissionResolvable = "MANAGE_NICKNAMES"; let permissionString: PermissionResolvable = "MANAGE_NICKNAMES";

View File

@ -16,15 +16,23 @@
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import { Member } from "@spacebar/util";
import { route } from "@spacebar/api"; import { route } from "@spacebar/api";
import { Member } from "@spacebar/util";
import { Request, Response, Router } from "express"; import { Request, Response, Router } from "express";
const router = Router(); const router = Router();
router.delete( router.delete(
"/", "/",
route({ permission: "MANAGE_ROLES" }), route({
permission: "MANAGE_ROLES",
responses: {
204: {},
403: {
body: "APIErrorResponse",
},
},
}),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
const { guild_id, role_id, member_id } = req.params; const { guild_id, role_id, member_id } = req.params;
@ -35,7 +43,13 @@ router.delete(
router.put( router.put(
"/", "/",
route({ permission: "MANAGE_ROLES" }), route({
permission: "MANAGE_ROLES",
responses: {
204: {},
403: {},
},
}),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
const { guild_id, role_id, member_id } = req.params; const { guild_id, role_id, member_id } = req.params;

View File

@ -16,18 +16,40 @@
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import { Request, Response, Router } from "express";
import { Member, PublicMemberProjection } from "@spacebar/util";
import { route } from "@spacebar/api"; import { route } from "@spacebar/api";
import { MoreThan } from "typeorm"; import { Member, PublicMemberProjection } from "@spacebar/util";
import { Request, Response, Router } from "express";
import { HTTPError } from "lambert-server"; import { HTTPError } from "lambert-server";
import { MoreThan } from "typeorm";
const router = Router(); const router = Router();
// TODO: send over websocket // TODO: send over websocket
// TODO: check for GUILD_MEMBERS intent // TODO: check for GUILD_MEMBERS intent
router.get("/", route({}), async (req: Request, res: Response) => { router.get(
"/",
route({
query: {
limit: {
type: "number",
description:
"max number of members to return (1-1000). default 1",
},
after: {
type: "string",
},
},
responses: {
200: {
body: "APIMemberArray",
},
403: {
body: "APIErrorResponse",
},
},
}),
async (req: Request, res: Response) => {
const { guild_id } = req.params; const { guild_id } = req.params;
const limit = Number(req.query.limit) || 1; const limit = Number(req.query.limit) || 1;
if (limit > 1000 || limit < 1) if (limit > 1000 || limit < 1)
@ -45,6 +67,7 @@ router.get("/", route({}), async (req: Request, res: Response) => {
}); });
return res.json(members); return res.json(members);
}); },
);
export default router; export default router;

View File

@ -18,15 +18,30 @@
/* eslint-disable @typescript-eslint/ban-ts-comment */ /* eslint-disable @typescript-eslint/ban-ts-comment */
import { Request, Response, Router } from "express";
import { route } from "@spacebar/api"; import { route } from "@spacebar/api";
import { getPermission, FieldErrors, Message, Channel } from "@spacebar/util"; import { Channel, FieldErrors, Message, getPermission } from "@spacebar/util";
import { Request, Response, Router } from "express";
import { HTTPError } from "lambert-server"; import { HTTPError } from "lambert-server";
import { FindManyOptions, In, Like } from "typeorm"; import { FindManyOptions, In, Like } from "typeorm";
const router: Router = Router(); const router: Router = Router();
router.get("/", route({}), async (req: Request, res: Response) => { router.get(
"/",
route({
responses: {
200: {
body: "GuildMessagesSearchResponse",
},
403: {
body: "APIErrorResponse",
},
422: {
body: "APIErrorResponse",
},
},
}),
async (req: Request, res: Response) => {
const { const {
channel_id, channel_id,
content, content,
@ -104,7 +119,10 @@ router.get("/", route({}), async (req: Request, res: Response) => {
req.params.guild_id, req.params.guild_id,
channel.id, channel.id,
); );
if (!perm.has("VIEW_CHANNEL") || !perm.has("READ_MESSAGE_HISTORY")) if (
!perm.has("VIEW_CHANNEL") ||
!perm.has("READ_MESSAGE_HISTORY")
)
continue; continue;
ids.push(channel.id); ids.push(channel.id);
} }
@ -152,6 +170,7 @@ router.get("/", route({}), async (req: Request, res: Response) => {
messages: messagesDto, messages: messagesDto,
total_results: messages.length, total_results: messages.length,
}); });
}); },
);
export default router; export default router;

View File

@ -31,7 +31,20 @@ const router = Router();
router.patch( router.patch(
"/:member_id", "/:member_id",
route({ body: "MemberChangeProfileSchema" }), route({
requestBody: "MemberChangeProfileSchema",
responses: {
200: {
body: "Member",
},
400: {
body: "APIErrorResponse",
},
404: {
body: "APIErrorResponse",
},
},
}),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
const { guild_id } = req.params; const { guild_id } = req.params;
// const member_id = // const member_id =

View File

@ -16,14 +16,14 @@
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import { Router, Request, Response } from "express";
import { Guild, Member, Snowflake } from "@spacebar/util";
import { LessThan, IsNull } from "typeorm";
import { route } from "@spacebar/api"; import { route } from "@spacebar/api";
import { Guild, Member, Snowflake } from "@spacebar/util";
import { Request, Response, Router } from "express";
import { IsNull, LessThan } from "typeorm";
const router = Router(); const router = Router();
//Returns all inactive members, respecting role hierarchy //Returns all inactive members, respecting role hierarchy
export const inactiveMembers = async ( const inactiveMembers = async (
guild_id: string, guild_id: string,
user_id: string, user_id: string,
days: number, days: number,
@ -80,7 +80,16 @@ export const inactiveMembers = async (
return members; return members;
}; };
router.get("/", route({}), async (req: Request, res: Response) => { router.get(
"/",
route({
responses: {
"200": {
body: "GuildPruneResponse",
},
},
}),
async (req: Request, res: Response) => {
const days = parseInt(req.query.days as string); const days = parseInt(req.query.days as string);
let roles = req.query.include_roles; let roles = req.query.include_roles;
@ -94,11 +103,23 @@ router.get("/", route({}), async (req: Request, res: Response) => {
); );
res.send({ pruned: members.length }); res.send({ pruned: members.length });
}); },
);
router.post( router.post(
"/", "/",
route({ permission: "KICK_MEMBERS", right: "KICK_BAN_MEMBERS" }), route({
permission: "KICK_MEMBERS",
right: "KICK_BAN_MEMBERS",
responses: {
200: {
body: "GuildPurgeResponse",
},
403: {
body: "APIErrorResponse",
},
},
}),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
const days = parseInt(req.body.days); const days = parseInt(req.body.days);

View File

@ -16,13 +16,25 @@
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import { getIpAdress, getVoiceRegions, route } from "@spacebar/api";
import { Guild } from "@spacebar/util"; import { Guild } from "@spacebar/util";
import { Request, Response, Router } from "express"; import { Request, Response, Router } from "express";
import { getVoiceRegions, route, getIpAdress } from "@spacebar/api";
const router = Router(); const router = Router();
router.get("/", route({}), async (req: Request, res: Response) => { router.get(
"/",
route({
responses: {
200: {
body: "APIGuildVoiceRegion",
},
404: {
body: "APIErrorResponse",
},
},
}),
async (req: Request, res: Response) => {
const { guild_id } = req.params; const { guild_id } = req.params;
const guild = await Guild.findOneOrFail({ where: { id: guild_id } }); const guild = await Guild.findOneOrFail({ where: { id: guild_id } });
//TODO we should use an enum for guild's features and not hardcoded strings //TODO we should use an enum for guild's features and not hardcoded strings
@ -32,6 +44,7 @@ router.get("/", route({}), async (req: Request, res: Response) => {
guild.features.includes("VIP_REGIONS"), guild.features.includes("VIP_REGIONS"),
), ),
); );
}); },
);
export default router; export default router;

View File

@ -16,31 +16,63 @@
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import { Router, Request, Response } from "express"; import { route } from "@spacebar/api";
import { import {
Role,
Member,
GuildRoleUpdateEvent,
GuildRoleDeleteEvent,
emitEvent, emitEvent,
GuildRoleDeleteEvent,
GuildRoleUpdateEvent,
handleFile, handleFile,
Member,
Role,
RoleModifySchema, RoleModifySchema,
} from "@spacebar/util"; } from "@spacebar/util";
import { route } from "@spacebar/api"; import { Request, Response, Router } from "express";
import { HTTPError } from "lambert-server"; import { HTTPError } from "lambert-server";
const router = Router(); const router = Router();
router.get("/", route({}), async (req: Request, res: Response) => { router.get(
"/",
route({
responses: {
200: {
body: "Role",
},
403: {
body: "APIErrorResponse",
},
404: {
body: "APIErrorResponse",
},
},
}),
async (req: Request, res: Response) => {
const { guild_id, role_id } = req.params; const { guild_id, role_id } = req.params;
await Member.IsInGuildOrFail(req.user_id, guild_id); await Member.IsInGuildOrFail(req.user_id, guild_id);
const role = await Role.findOneOrFail({ where: { guild_id, id: role_id } }); const role = await Role.findOneOrFail({
return res.json(role); where: { guild_id, id: role_id },
}); });
return res.json(role);
},
);
router.delete( router.delete(
"/", "/",
route({ permission: "MANAGE_ROLES" }), route({
permission: "MANAGE_ROLES",
responses: {
204: {},
400: {
body: "APIErrorResponse",
},
403: {
body: "APIErrorResponse",
},
404: {
body: "APIErrorResponse",
},
},
}),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
const { guild_id, role_id } = req.params; const { guild_id, role_id } = req.params;
if (role_id === guild_id) if (role_id === guild_id)
@ -69,7 +101,24 @@ router.delete(
router.patch( router.patch(
"/", "/",
route({ body: "RoleModifySchema", permission: "MANAGE_ROLES" }), route({
requestBody: "RoleModifySchema",
permission: "MANAGE_ROLES",
responses: {
200: {
body: "Role",
},
400: {
body: "APIErrorResponse",
},
403: {
body: "APIErrorResponse",
},
404: {
body: "APIErrorResponse",
},
},
}),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
const { role_id, guild_id } = req.params; const { role_id, guild_id } = req.params;
const body = req.body as RoleModifySchema; const body = req.body as RoleModifySchema;

View File

@ -16,21 +16,20 @@
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import { Request, Response, Router } from "express"; import { route } from "@spacebar/api";
import { import {
Role,
getPermission,
Member,
GuildRoleCreateEvent,
GuildRoleUpdateEvent,
emitEvent,
Config, Config,
DiscordApiErrors, DiscordApiErrors,
emitEvent,
GuildRoleCreateEvent,
GuildRoleUpdateEvent,
Member,
Role,
RoleModifySchema, RoleModifySchema,
RolePositionUpdateSchema, RolePositionUpdateSchema,
Snowflake, Snowflake,
} from "@spacebar/util"; } from "@spacebar/util";
import { route } from "@spacebar/api"; import { Request, Response, Router } from "express";
import { Not } from "typeorm"; import { Not } from "typeorm";
const router: Router = Router(); const router: Router = Router();
@ -47,7 +46,21 @@ router.get("/", route({}), async (req: Request, res: Response) => {
router.post( router.post(
"/", "/",
route({ body: "RoleModifySchema", permission: "MANAGE_ROLES" }), route({
requestBody: "RoleModifySchema",
permission: "MANAGE_ROLES",
responses: {
200: {
body: "Role",
},
400: {
body: "APIErrorResponse",
},
403: {
body: "APIErrorResponse",
},
},
}),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
const guild_id = req.params.guild_id; const guild_id = req.params.guild_id;
const body = req.body as RoleModifySchema; const body = req.body as RoleModifySchema;
@ -104,14 +117,25 @@ router.post(
router.patch( router.patch(
"/", "/",
route({ body: "RolePositionUpdateSchema" }), route({
requestBody: "RolePositionUpdateSchema",
permission: "MANAGE_ROLES",
responses: {
200: {
body: "APIRoleArray",
},
400: {
body: "APIErrorResponse",
},
403: {
body: "APIErrorResponse",
},
},
}),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
const { guild_id } = req.params; const { guild_id } = req.params;
const body = req.body as RolePositionUpdateSchema; const body = req.body as RolePositionUpdateSchema;
const perms = await getPermission(req.user_id, guild_id);
perms.hasThrow("MANAGE_ROLES");
await Promise.all( await Promise.all(
body.map(async (x) => body.map(async (x) =>
Role.update({ guild_id, id: x.id }, { position: x.position }), Role.update({ guild_id, id: x.id }, { position: x.position }),

View File

@ -16,29 +16,42 @@
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import { route } from "@spacebar/api";
import { import {
emitEvent,
GuildStickersUpdateEvent, GuildStickersUpdateEvent,
Member, Member,
ModifyGuildStickerSchema,
Snowflake, Snowflake,
Sticker, Sticker,
StickerFormatType, StickerFormatType,
StickerType, StickerType,
emitEvent,
uploadFile, uploadFile,
ModifyGuildStickerSchema,
} from "@spacebar/util"; } from "@spacebar/util";
import { Router, Request, Response } from "express"; import { Request, Response, Router } from "express";
import { route } from "@spacebar/api";
import multer from "multer";
import { HTTPError } from "lambert-server"; import { HTTPError } from "lambert-server";
import multer from "multer";
const router = Router(); const router = Router();
router.get("/", route({}), async (req: Request, res: Response) => { router.get(
"/",
route({
responses: {
200: {
body: "APIStickerArray",
},
403: {
body: "APIErrorResponse",
},
},
}),
async (req: Request, res: Response) => {
const { guild_id } = req.params; const { guild_id } = req.params;
await Member.IsInGuildOrFail(req.user_id, guild_id); await Member.IsInGuildOrFail(req.user_id, guild_id);
res.json(await Sticker.find({ where: { guild_id } })); res.json(await Sticker.find({ where: { guild_id } }));
}); },
);
const bodyParser = multer({ const bodyParser = multer({
limits: { limits: {
@ -54,7 +67,18 @@ router.post(
bodyParser, bodyParser,
route({ route({
permission: "MANAGE_EMOJIS_AND_STICKERS", permission: "MANAGE_EMOJIS_AND_STICKERS",
body: "ModifyGuildStickerSchema", requestBody: "ModifyGuildStickerSchema",
responses: {
200: {
body: "Sticker",
},
400: {
body: "APIErrorResponse",
},
403: {
body: "APIErrorResponse",
},
},
}), }),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
if (!req.file) throw new HTTPError("missing file"); if (!req.file) throw new HTTPError("missing file");
@ -81,7 +105,7 @@ router.post(
}, },
); );
export function getStickerFormat(mime_type: string) { function getStickerFormat(mime_type: string) {
switch (mime_type) { switch (mime_type) {
case "image/apng": case "image/apng":
return StickerFormatType.APNG; return StickerFormatType.APNG;
@ -98,20 +122,46 @@ export function getStickerFormat(mime_type: string) {
} }
} }
router.get("/:sticker_id", route({}), async (req: Request, res: Response) => { router.get(
"/:sticker_id",
route({
responses: {
200: {
body: "Sticker",
},
403: {
body: "APIErrorResponse",
},
},
}),
async (req: Request, res: Response) => {
const { guild_id, sticker_id } = req.params; const { guild_id, sticker_id } = req.params;
await Member.IsInGuildOrFail(req.user_id, guild_id); await Member.IsInGuildOrFail(req.user_id, guild_id);
res.json( res.json(
await Sticker.findOneOrFail({ where: { guild_id, id: sticker_id } }), await Sticker.findOneOrFail({
where: { guild_id, id: sticker_id },
}),
);
},
); );
});
router.patch( router.patch(
"/:sticker_id", "/:sticker_id",
route({ route({
body: "ModifyGuildStickerSchema", requestBody: "ModifyGuildStickerSchema",
permission: "MANAGE_EMOJIS_AND_STICKERS", permission: "MANAGE_EMOJIS_AND_STICKERS",
responses: {
200: {
body: "Sticker",
},
400: {
body: "APIErrorResponse",
},
403: {
body: "APIErrorResponse",
},
},
}), }),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
const { guild_id, sticker_id } = req.params; const { guild_id, sticker_id } = req.params;
@ -141,7 +191,15 @@ async function sendStickerUpdateEvent(guild_id: string) {
router.delete( router.delete(
"/:sticker_id", "/:sticker_id",
route({ permission: "MANAGE_EMOJIS_AND_STICKERS" }), route({
permission: "MANAGE_EMOJIS_AND_STICKERS",
responses: {
204: {},
403: {
body: "APIErrorResponse",
},
},
}),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
const { guild_id, sticker_id } = req.params; const { guild_id, sticker_id } = req.params;

View File

@ -16,11 +16,10 @@
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import { Request, Response, Router } from "express"; import { generateCode, route } from "@spacebar/api";
import { Guild, Template } from "@spacebar/util"; import { Guild, Template } from "@spacebar/util";
import { Request, Response, Router } from "express";
import { HTTPError } from "lambert-server"; import { HTTPError } from "lambert-server";
import { route } from "@spacebar/api";
import { generateCode } from "@spacebar/api";
const router: Router = Router(); const router: Router = Router();
@ -41,7 +40,16 @@ const TemplateGuildProjection: (keyof Guild)[] = [
"icon", "icon",
]; ];
router.get("/", route({}), async (req: Request, res: Response) => { router.get(
"/",
route({
responses: {
200: {
body: "APITemplateArray",
},
},
}),
async (req: Request, res: Response) => {
const { guild_id } = req.params; const { guild_id } = req.params;
const templates = await Template.find({ const templates = await Template.find({
@ -49,11 +57,29 @@ router.get("/", route({}), async (req: Request, res: Response) => {
}); });
return res.json(templates); return res.json(templates);
}); },
);
router.post( router.post(
"/", "/",
route({ body: "TemplateCreateSchema", permission: "MANAGE_GUILD" }), route({
requestBody: "TemplateCreateSchema",
permission: "MANAGE_GUILD",
responses: {
200: {
body: "Template",
},
400: {
body: "APIErrorResponse",
},
403: {
body: "APIErrorResponse",
},
404: {
body: "APIErrorResponse",
},
},
}),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
const { guild_id } = req.params; const { guild_id } = req.params;
const guild = await Guild.findOneOrFail({ const guild = await Guild.findOneOrFail({
@ -81,7 +107,13 @@ router.post(
router.delete( router.delete(
"/:code", "/:code",
route({ permission: "MANAGE_GUILD" }), route({
permission: "MANAGE_GUILD",
responses: {
200: { body: "Template" },
403: { body: "APIErrorResponse" },
},
}),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
const { code, guild_id } = req.params; const { code, guild_id } = req.params;
@ -96,7 +128,13 @@ router.delete(
router.put( router.put(
"/:code", "/:code",
route({ permission: "MANAGE_GUILD" }), route({
permission: "MANAGE_GUILD",
responses: {
200: { body: "Template" },
403: { body: "APIErrorResponse" },
},
}),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
const { code, guild_id } = req.params; const { code, guild_id } = req.params;
const guild = await Guild.findOneOrFail({ const guild = await Guild.findOneOrFail({
@ -115,7 +153,14 @@ router.put(
router.patch( router.patch(
"/:code", "/:code",
route({ body: "TemplateModifySchema", permission: "MANAGE_GUILD" }), route({
requestBody: "TemplateModifySchema",
permission: "MANAGE_GUILD",
responses: {
200: { body: "Template" },
403: { body: "APIErrorResponse" },
},
}),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
const { code, guild_id } = req.params; const { code, guild_id } = req.params;
const { name, description } = req.body; const { name, description } = req.body;

View File

@ -16,6 +16,7 @@
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import { route } from "@spacebar/api";
import { import {
Channel, Channel,
ChannelType, ChannelType,
@ -23,8 +24,7 @@ import {
Invite, Invite,
VanityUrlSchema, VanityUrlSchema,
} from "@spacebar/util"; } from "@spacebar/util";
import { Router, Request, Response } from "express"; import { Request, Response, Router } from "express";
import { route } from "@spacebar/api";
import { HTTPError } from "lambert-server"; import { HTTPError } from "lambert-server";
const router = Router(); const router = Router();
@ -33,7 +33,20 @@ const InviteRegex = /\W/g;
router.get( router.get(
"/", "/",
route({ permission: "MANAGE_GUILD" }), route({
permission: "MANAGE_GUILD",
responses: {
200: {
body: "GuildVanityUrlResponse",
},
403: {
body: "APIErrorResponse",
},
404: {
body: "APIErrorResponse",
},
},
}),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
const { guild_id } = req.params; const { guild_id } = req.params;
const guild = await Guild.findOneOrFail({ where: { id: guild_id } }); const guild = await Guild.findOneOrFail({ where: { id: guild_id } });
@ -60,7 +73,21 @@ router.get(
router.patch( router.patch(
"/", "/",
route({ body: "VanityUrlSchema", permission: "MANAGE_GUILD" }), route({
requestBody: "VanityUrlSchema",
permission: "MANAGE_GUILD",
responses: {
200: {
body: "GuildVanityUrlCreateResponse",
},
403: {
body: "APIErrorResponse",
},
404: {
body: "APIErrorResponse",
},
},
}),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
const { guild_id } = req.params; const { guild_id } = req.params;
const body = req.body as VanityUrlSchema; const body = req.body as VanityUrlSchema;

View File

@ -16,6 +16,7 @@
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import { route } from "@spacebar/api";
import { import {
Channel, Channel,
ChannelType, ChannelType,
@ -26,7 +27,6 @@ import {
VoiceStateUpdateEvent, VoiceStateUpdateEvent,
VoiceStateUpdateSchema, VoiceStateUpdateSchema,
} from "@spacebar/util"; } from "@spacebar/util";
import { route } from "@spacebar/api";
import { Request, Response, Router } from "express"; import { Request, Response, Router } from "express";
const router = Router(); const router = Router();
@ -34,7 +34,21 @@ const router = Router();
router.patch( router.patch(
"/", "/",
route({ body: "VoiceStateUpdateSchema" }), route({
requestBody: "VoiceStateUpdateSchema",
responses: {
204: {},
400: {
body: "APIErrorResponse",
},
403: {
body: "APIErrorResponse",
},
404: {
body: "APIErrorResponse",
},
},
}),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
const body = req.body as VoiceStateUpdateSchema; const body = req.body as VoiceStateUpdateSchema;
const { guild_id } = req.params; const { guild_id } = req.params;

View File

@ -16,27 +16,49 @@
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import { Request, Response, Router } from "express";
import { Guild, Member, GuildUpdateWelcomeScreenSchema } from "@spacebar/util";
import { HTTPError } from "lambert-server";
import { route } from "@spacebar/api"; import { route } from "@spacebar/api";
import { Guild, GuildUpdateWelcomeScreenSchema, Member } from "@spacebar/util";
import { Request, Response, Router } from "express";
import { HTTPError } from "lambert-server";
const router: Router = Router(); const router: Router = Router();
router.get("/", route({}), async (req: Request, res: Response) => { router.get(
"/",
route({
responses: {
200: {
body: "GuildWelcomeScreen",
},
404: {
body: "APIErrorResponse",
},
},
}),
async (req: Request, res: Response) => {
const guild_id = req.params.guild_id; const guild_id = req.params.guild_id;
const guild = await Guild.findOneOrFail({ where: { id: guild_id } }); const guild = await Guild.findOneOrFail({ where: { id: guild_id } });
await Member.IsInGuildOrFail(req.user_id, guild_id); await Member.IsInGuildOrFail(req.user_id, guild_id);
res.json(guild.welcome_screen); res.json(guild.welcome_screen);
}); },
);
router.patch( router.patch(
"/", "/",
route({ route({
body: "GuildUpdateWelcomeScreenSchema", requestBody: "GuildUpdateWelcomeScreenSchema",
permission: "MANAGE_GUILD", permission: "MANAGE_GUILD",
responses: {
204: {},
400: {
body: "APIErrorResponse",
},
404: {
body: "APIErrorResponse",
},
},
}), }),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
const guild_id = req.params.guild_id; const guild_id = req.params.guild_id;

View File

@ -16,10 +16,10 @@
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import { Request, Response, Router } from "express";
import { Permissions, Guild, Invite, Channel, Member } from "@spacebar/util";
import { HTTPError } from "lambert-server";
import { random, route } from "@spacebar/api"; import { random, route } from "@spacebar/api";
import { Channel, Guild, Invite, Member, Permissions } from "@spacebar/util";
import { Request, Response, Router } from "express";
import { HTTPError } from "lambert-server";
const router: Router = Router(); const router: Router = Router();
@ -32,7 +32,19 @@ const router: Router = Router();
// https://discord.com/developers/docs/resources/guild#get-guild-widget // https://discord.com/developers/docs/resources/guild#get-guild-widget
// TODO: Cache the response for a guild for 5 minutes regardless of response // TODO: Cache the response for a guild for 5 minutes regardless of response
router.get("/", route({}), async (req: Request, res: Response) => { router.get(
"/",
route({
responses: {
200: {
body: "GuildWidgetJsonResponse",
},
404: {
body: "APIErrorResponse",
},
},
}),
async (req: Request, res: Response) => {
const { guild_id } = req.params; const { guild_id } = req.params;
const guild = await Guild.findOneOrFail({ where: { id: guild_id } }); const guild = await Guild.findOneOrFail({ where: { id: guild_id } });
@ -103,6 +115,7 @@ router.get("/", route({}), async (req: Request, res: Response) => {
res.set("Cache-Control", "public, max-age=300"); res.set("Cache-Control", "public, max-age=300");
return res.json(data); return res.json(data);
}); },
);
export default router; export default router;

View File

@ -18,11 +18,11 @@
/* eslint-disable @typescript-eslint/no-explicit-any */ /* eslint-disable @typescript-eslint/no-explicit-any */
import { Request, Response, Router } from "express";
import { Guild } from "@spacebar/util";
import { HTTPError } from "lambert-server";
import { route } from "@spacebar/api"; import { route } from "@spacebar/api";
import { Guild } from "@spacebar/util";
import { Request, Response, Router } from "express";
import fs from "fs"; import fs from "fs";
import { HTTPError } from "lambert-server";
import path from "path"; import path from "path";
const router: Router = Router(); const router: Router = Router();
@ -31,7 +31,20 @@ const router: Router = Router();
// https://discord.com/developers/docs/resources/guild#get-guild-widget-image // https://discord.com/developers/docs/resources/guild#get-guild-widget-image
// TODO: Cache the response // TODO: Cache the response
router.get("/", route({}), async (req: Request, res: Response) => { router.get(
"/",
route({
responses: {
200: {},
400: {
body: "APIErrorResponse",
},
404: {
body: "APIErrorResponse",
},
},
}),
async (req: Request, res: Response) => {
const { guild_id } = req.params; const { guild_id } = req.params;
const guild = await Guild.findOneOrFail({ where: { id: guild_id } }); const guild = await Guild.findOneOrFail({ where: { id: guild_id } });
@ -45,7 +58,9 @@ router.get("/", route({}), async (req: Request, res: Response) => {
// Fetch parameter // Fetch parameter
const style = req.query.style?.toString() || "shield"; const style = req.query.style?.toString() || "shield";
if ( if (
!["shield", "banner1", "banner2", "banner3", "banner4"].includes(style) !["shield", "banner1", "banner2", "banner3", "banner4"].includes(
style,
)
) { ) {
throw new HTTPError( throw new HTTPError(
"Value must be one of ('shield', 'banner1', 'banner2', 'banner3', 'banner4').", "Value must be one of ('shield', 'banner1', 'banner2', 'banner3', 'banner4').",
@ -96,7 +111,15 @@ router.get("/", route({}), async (req: Request, res: Response) => {
break; break;
case "banner1": case "banner1":
if (icon) await drawIcon(ctx, 20, 27, 50, icon); if (icon) await drawIcon(ctx, 20, 27, 50, icon);
await drawText(ctx, 83, 51, "#FFFFFF", "12px Verdana", name, 22); await drawText(
ctx,
83,
51,
"#FFFFFF",
"12px Verdana",
name,
22,
);
await drawText( await drawText(
ctx, ctx,
83, 83,
@ -108,7 +131,15 @@ router.get("/", route({}), async (req: Request, res: Response) => {
break; break;
case "banner2": case "banner2":
if (icon) await drawIcon(ctx, 13, 19, 36, icon); if (icon) await drawIcon(ctx, 13, 19, 36, icon);
await drawText(ctx, 62, 34, "#FFFFFF", "12px Verdana", name, 15); await drawText(
ctx,
62,
34,
"#FFFFFF",
"12px Verdana",
name,
15,
);
await drawText( await drawText(
ctx, ctx,
62, 62,
@ -120,7 +151,15 @@ router.get("/", route({}), async (req: Request, res: Response) => {
break; break;
case "banner3": case "banner3":
if (icon) await drawIcon(ctx, 20, 20, 50, icon); if (icon) await drawIcon(ctx, 20, 20, 50, icon);
await drawText(ctx, 83, 44, "#FFFFFF", "12px Verdana", name, 27); await drawText(
ctx,
83,
44,
"#FFFFFF",
"12px Verdana",
name,
27,
);
await drawText( await drawText(
ctx, ctx,
83, 83,
@ -132,7 +171,15 @@ router.get("/", route({}), async (req: Request, res: Response) => {
break; break;
case "banner4": case "banner4":
if (icon) await drawIcon(ctx, 21, 136, 50, icon); if (icon) await drawIcon(ctx, 21, 136, 50, icon);
await drawText(ctx, 84, 156, "#FFFFFF", "13px Verdana", name, 27); await drawText(
ctx,
84,
156,
"#FFFFFF",
"13px Verdana",
name,
27,
);
await drawText( await drawText(
ctx, ctx,
84, 84,
@ -154,7 +201,8 @@ router.get("/", route({}), async (req: Request, res: Response) => {
res.set("Content-Type", "image/png"); res.set("Content-Type", "image/png");
res.set("Cache-Control", "public, max-age=3600"); res.set("Cache-Control", "public, max-age=3600");
return res.send(buffer); return res.send(buffer);
}); },
);
async function drawIcon( async function drawIcon(
canvas: any, canvas: any,

View File

@ -16,14 +16,26 @@
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import { Request, Response, Router } from "express";
import { Guild, WidgetModifySchema } from "@spacebar/util";
import { route } from "@spacebar/api"; import { route } from "@spacebar/api";
import { Guild, WidgetModifySchema } from "@spacebar/util";
import { Request, Response, Router } from "express";
const router: Router = Router(); const router: Router = Router();
// https://discord.com/developers/docs/resources/guild#get-guild-widget-settings // https://discord.com/developers/docs/resources/guild#get-guild-widget-settings
router.get("/", route({}), async (req: Request, res: Response) => { router.get(
"/",
route({
responses: {
200: {
body: "GuildWidgetSettingsResponse",
},
404: {
body: "APIErrorResponse",
},
},
}),
async (req: Request, res: Response) => {
const { guild_id } = req.params; const { guild_id } = req.params;
const guild = await Guild.findOneOrFail({ where: { id: guild_id } }); const guild = await Guild.findOneOrFail({ where: { id: guild_id } });
@ -32,12 +44,27 @@ router.get("/", route({}), async (req: Request, res: Response) => {
enabled: guild.widget_enabled || false, enabled: guild.widget_enabled || false,
channel_id: guild.widget_channel_id || null, channel_id: guild.widget_channel_id || null,
}); });
}); },
);
// https://discord.com/developers/docs/resources/guild#modify-guild-widget // https://discord.com/developers/docs/resources/guild#modify-guild-widget
router.patch( router.patch(
"/", "/",
route({ body: "WidgetModifySchema", permission: "MANAGE_GUILD" }), route({
requestBody: "WidgetModifySchema",
permission: "MANAGE_GUILD",
responses: {
200: {
body: "WidgetModifySchema",
},
400: {
body: "APIErrorResponse",
},
403: {
body: "APIErrorResponse",
},
},
}),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
const body = req.body as WidgetModifySchema; const body = req.body as WidgetModifySchema;
const { guild_id } = req.params; const { guild_id } = req.params;

View File

@ -16,16 +16,16 @@
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import { Router, Request, Response } from "express";
import {
Guild,
Config,
getRights,
Member,
DiscordApiErrors,
GuildCreateSchema,
} from "@spacebar/util";
import { route } from "@spacebar/api"; import { route } from "@spacebar/api";
import {
Config,
DiscordApiErrors,
Guild,
GuildCreateSchema,
Member,
getRights,
} from "@spacebar/util";
import { Request, Response, Router } from "express";
const router: Router = Router(); const router: Router = Router();
@ -33,7 +33,21 @@ const router: Router = Router();
router.post( router.post(
"/", "/",
route({ body: "GuildCreateSchema", right: "CREATE_GUILDS" }), route({
requestBody: "GuildCreateSchema",
right: "CREATE_GUILDS",
responses: {
201: {
body: "GuildCreateResponse",
},
400: {
body: "APIErrorResponse",
},
403: {
body: "APIErrorResponse",
},
},
}),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
const body = req.body as GuildCreateSchema; const body = req.body as GuildCreateSchema;

View File

@ -16,28 +16,44 @@
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import { Request, Response, Router } from "express"; import { route } from "@spacebar/api";
import { import {
Template, Config,
DiscordApiErrors,
Guild, Guild,
GuildTemplateCreateSchema,
Member,
Role, Role,
Snowflake, Snowflake,
Config, Template,
Member,
GuildTemplateCreateSchema,
} from "@spacebar/util"; } from "@spacebar/util";
import { route } from "@spacebar/api"; import { Request, Response, Router } from "express";
import { DiscordApiErrors } from "@spacebar/util";
import fetch from "node-fetch"; import fetch from "node-fetch";
const router: Router = Router(); const router: Router = Router();
router.get("/:code", route({}), async (req: Request, res: Response) => { router.get(
"/:code",
route({
responses: {
200: {
body: "Template",
},
403: {
body: "APIErrorResponse",
},
404: {
body: "APIErrorResponse",
},
},
}),
async (req: Request, res: Response) => {
const { allowDiscordTemplates, allowRaws, enabled } = const { allowDiscordTemplates, allowRaws, enabled } =
Config.get().templates; Config.get().templates;
if (!enabled) if (!enabled)
res.json({ res.json({
code: 403, code: 403,
message: "Template creation & usage is disabled on this instance.", message:
"Template creation & usage is disabled on this instance.",
}).sendStatus(403); }).sendStatus(403);
const { code } = req.params; const { code } = req.params;
@ -75,13 +91,16 @@ router.get("/:code", route({}), async (req: Request, res: Response) => {
return res.json(code.split("external:", 2)[1]); return res.json(code.split("external:", 2)[1]);
} }
const template = await Template.findOneOrFail({ where: { code: code } }); const template = await Template.findOneOrFail({
res.json(template); where: { code: code },
}); });
res.json(template);
},
);
router.post( router.post(
"/:code", "/:code",
route({ body: "GuildTemplateCreateSchema" }), route({ requestBody: "GuildTemplateCreateSchema" }),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
const { const {
enabled, enabled,

View File

@ -16,22 +16,34 @@
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import { Router, Request, Response } from "express"; import { route } from "@spacebar/api";
import { import {
emitEvent, emitEvent,
getPermission, getPermission,
Guild, Guild,
Invite, Invite,
InviteDeleteEvent, InviteDeleteEvent,
User,
PublicInviteRelation, PublicInviteRelation,
User,
} from "@spacebar/util"; } from "@spacebar/util";
import { route } from "@spacebar/api"; import { Request, Response, Router } from "express";
import { HTTPError } from "lambert-server"; import { HTTPError } from "lambert-server";
const router: Router = Router(); const router: Router = Router();
router.get("/:code", route({}), async (req: Request, res: Response) => { router.get(
"/:code",
route({
responses: {
"200": {
body: "Invite",
},
404: {
body: "APIErrorResponse",
},
},
}),
async (req: Request, res: Response) => {
const { code } = req.params; const { code } = req.params;
const invite = await Invite.findOneOrFail({ const invite = await Invite.findOneOrFail({
@ -40,11 +52,28 @@ router.get("/:code", route({}), async (req: Request, res: Response) => {
}); });
res.status(200).send(invite); res.status(200).send(invite);
}); },
);
router.post( router.post(
"/:code", "/:code",
route({ right: "USE_MASS_INVITES" }), route({
right: "USE_MASS_INVITES",
responses: {
"200": {
body: "Invite",
},
401: {
body: "APIErrorResponse",
},
403: {
body: "APIErrorResponse",
},
404: {
body: "APIErrorResponse",
},
},
}),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
const { code } = req.params; const { code } = req.params;
const { guild_id } = await Invite.findOneOrFail({ const { guild_id } = await Invite.findOneOrFail({
@ -75,14 +104,36 @@ router.post(
); );
// * cant use permission of route() function because path doesn't have guild_id/channel_id // * cant use permission of route() function because path doesn't have guild_id/channel_id
router.delete("/:code", route({}), async (req: Request, res: Response) => { router.delete(
"/:code",
route({
responses: {
"200": {
body: "Invite",
},
401: {
body: "APIErrorResponse",
},
404: {
body: "APIErrorResponse",
},
},
}),
async (req: Request, res: Response) => {
const { code } = req.params; const { code } = req.params;
const invite = await Invite.findOneOrFail({ where: { code } }); const invite = await Invite.findOneOrFail({ where: { code } });
const { guild_id, channel_id } = invite; const { guild_id, channel_id } = invite;
const permission = await getPermission(req.user_id, guild_id, channel_id); const permission = await getPermission(
req.user_id,
guild_id,
channel_id,
);
if (!permission.has("MANAGE_GUILD") && !permission.has("MANAGE_CHANNELS")) if (
!permission.has("MANAGE_GUILD") &&
!permission.has("MANAGE_CHANNELS")
)
throw new HTTPError( throw new HTTPError(
"You missing the MANAGE_GUILD or MANAGE_CHANNELS permission", "You missing the MANAGE_GUILD or MANAGE_CHANNELS permission",
401, 401,
@ -102,6 +153,7 @@ router.delete("/:code", route({}), async (req: Request, res: Response) => {
]); ]);
res.json({ invite: invite }); res.json({ invite: invite });
}); },
);
export default router; export default router;

View File

@ -16,23 +16,37 @@
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import { Router, Request, Response } from "express";
import { route } from "@spacebar/api"; import { route } from "@spacebar/api";
import { import {
ApiError, ApiError,
Application, Application,
ApplicationAuthorizeSchema, ApplicationAuthorizeSchema,
getPermission,
DiscordApiErrors, DiscordApiErrors,
Member, Member,
Permissions, Permissions,
User, User,
getPermission,
} from "@spacebar/util"; } from "@spacebar/util";
import { Request, Response, Router } from "express";
const router = Router(); const router = Router();
// TODO: scopes, other oauth types // TODO: scopes, other oauth types
router.get("/", route({}), async (req: Request, res: Response) => { router.get(
"/",
route({
responses: {
// TODO: I really didn't feel like typing all of it out
200: {},
400: {
body: "APIErrorResponse",
},
404: {
body: "APIErrorResponse",
},
},
}),
async (req: Request, res: Response) => {
// const { client_id, scope, response_type, redirect_url } = req.query; // const { client_id, scope, response_type, redirect_url } = req.query;
const { client_id } = req.query; const { client_id } = req.query;
@ -56,7 +70,13 @@ router.get("/", route({}), async (req: Request, res: Response) => {
id: req.user_id, id: req.user_id,
bot: false, bot: false,
}, },
select: ["id", "username", "avatar", "discriminator", "public_flags"], select: [
"id",
"username",
"avatar",
"discriminator",
"public_flags",
],
}); });
const guilds = await Member.find({ const guilds = await Member.find({
@ -131,11 +151,33 @@ router.get("/", route({}), async (req: Request, res: Response) => {
}, },
authorized: false, authorized: false,
}); });
}); },
);
router.post( router.post(
"/", "/",
route({ body: "ApplicationAuthorizeSchema" }), route({
requestBody: "ApplicationAuthorizeSchema",
query: {
client_id: {
type: "string",
},
},
responses: {
200: {
body: "OAuthAuthorizeResponse",
},
400: {
body: "APIErrorResponse",
},
403: {
body: "APIErrorResponse",
},
404: {
body: "APIErrorResponse",
},
},
}),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
const body = req.body as ApplicationAuthorizeSchema; const body = req.body as ApplicationAuthorizeSchema;
// const { client_id, scope, response_type, redirect_url } = req.query; // const { client_id, scope, response_type, redirect_url } = req.query;

View File

@ -16,13 +16,22 @@
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import { Router, Response, Request } from "express";
import { route } from "@spacebar/api"; import { route } from "@spacebar/api";
import { Config } from "@spacebar/util"; import { Config } from "@spacebar/util";
import { Request, Response, Router } from "express";
const router = Router(); const router = Router();
router.get("/", route({}), (req: Request, res: Response) => { router.get(
"/",
route({
responses: {
200: {
body: "InstancePingResponse",
},
},
}),
(req: Request, res: Response) => {
const { general } = Config.get(); const { general } = Config.get();
res.send({ res.send({
ping: "pong!", ping: "pong!",
@ -39,6 +48,7 @@ router.get("/", route({}), (req: Request, res: Response) => {
tosPage: general.tosPage, tosPage: general.tosPage,
}, },
}); });
}); },
);
export default router; export default router;

View File

@ -16,16 +16,28 @@
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import { Router, Request, Response } from "express";
import { route } from "@spacebar/api"; import { route } from "@spacebar/api";
import { Config } from "@spacebar/util"; import { Config } from "@spacebar/util";
import { Request, Response, Router } from "express";
const router = Router(); const router = Router();
router.get("/", route({}), async (req: Request, res: Response) => { router.get(
"/",
route({
responses: {
200: {
body: "InstanceDomainsResponse",
},
},
}),
async (req: Request, res: Response) => {
const { cdn, gateway, api } = Config.get(); const { cdn, gateway, api } = Config.get();
const IdentityForm = { const IdentityForm = {
cdn: cdn.endpointPublic || process.env.CDN || "http://localhost:3001", cdn:
cdn.endpointPublic ||
process.env.CDN ||
"http://localhost:3001",
gateway: gateway:
gateway.endpointPublic || gateway.endpointPublic ||
process.env.GATEWAY || process.env.GATEWAY ||
@ -35,6 +47,7 @@ router.get("/", route({}), async (req: Request, res: Response) => {
}; };
res.json(IdentityForm); res.json(IdentityForm);
}); },
);
export default router; export default router;

View File

@ -16,14 +16,24 @@
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import { Router, Request, Response } from "express";
import { route } from "@spacebar/api"; import { route } from "@spacebar/api";
import { Config } from "@spacebar/util"; import { Config } from "@spacebar/util";
import { Request, Response, Router } from "express";
const router = Router(); const router = Router();
router.get("/", route({}), async (req: Request, res: Response) => { router.get(
"/",
route({
responses: {
200: {
body: "APIGeneralConfiguration",
},
},
}),
async (req: Request, res: Response) => {
const { general } = Config.get(); const { general } = Config.get();
res.json(general); res.json(general);
}); },
);
export default router; export default router;

View File

@ -16,14 +16,24 @@
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import { Router, Request, Response } from "express";
import { route } from "@spacebar/api"; import { route } from "@spacebar/api";
import { Config } from "@spacebar/util"; import { Config } from "@spacebar/util";
import { Request, Response, Router } from "express";
const router = Router(); const router = Router();
router.get("/", route({}), async (req: Request, res: Response) => { router.get(
"/",
route({
responses: {
200: {
body: "APILimitsConfiguration",
},
},
}),
async (req: Request, res: Response) => {
const { limits } = Config.get(); const { limits } = Config.get();
res.json(limits); res.json(limits);
}); },
);
export default router; export default router;

View File

@ -28,7 +28,19 @@ import {
import { Request, Response, Router } from "express"; import { Request, Response, Router } from "express";
const router = Router(); const router = Router();
router.get("/", route({}), async (req: Request, res: Response) => { router.get(
"/",
route({
responses: {
200: {
body: "InstanceStatsResponse",
},
403: {
body: "APIErrorResponse",
},
},
}),
async (req: Request, res: Response) => {
if (!Config.get().security.statsWorldReadable) { if (!Config.get().security.statsWorldReadable) {
const rights = await getRights(req.user_id); const rights = await getRights(req.user_id);
rights.hasThrow("VIEW_SERVER_STATS"); rights.hasThrow("VIEW_SERVER_STATS");
@ -42,6 +54,7 @@ router.get("/", route({}), async (req: Request, res: Response) => {
members: await Member.count(), members: await Member.count(),
}, },
}); });
}); },
);
export default router; export default router;

View File

@ -16,14 +16,22 @@
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import { Router, Request, Response } from "express";
import { route } from "@spacebar/api"; import { route } from "@spacebar/api";
import { AckBulkSchema, ReadState } from "@spacebar/util"; import { AckBulkSchema, ReadState } from "@spacebar/util";
import { Request, Response, Router } from "express";
const router = Router(); const router = Router();
router.post( router.post(
"/", "/",
route({ body: "AckBulkSchema" }), route({
requestBody: "AckBulkSchema",
responses: {
204: {},
400: {
body: "APIErrorResponse",
},
},
}),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
const body = req.body as AckBulkSchema; const body = req.body as AckBulkSchema;

View File

@ -16,14 +16,22 @@
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import { Router, Response, Request } from "express";
import { route } from "@spacebar/api"; import { route } from "@spacebar/api";
import { Request, Response, Router } from "express";
const router = Router(); const router = Router();
router.post("/", route({}), (req: Request, res: Response) => { router.post(
"/",
route({
responses: {
204: {},
},
}),
(req: Request, res: Response) => {
// TODO: // TODO:
res.sendStatus(204); res.sendStatus(204);
}); },
);
export default router; export default router;

View File

@ -16,16 +16,28 @@
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import { Request, Response, Router } from "express";
import { route } from "@spacebar/api"; import { route } from "@spacebar/api";
import { StickerPack } from "@spacebar/util"; import { StickerPack } from "@spacebar/util";
import { Request, Response, Router } from "express";
const router: Router = Router(); const router: Router = Router();
router.get("/", route({}), async (req: Request, res: Response) => { router.get(
const sticker_packs = await StickerPack.find({ relations: ["stickers"] }); "/",
route({
res.json({ sticker_packs }); responses: {
200: {
body: "APIStickerPackArray",
},
},
}),
async (req: Request, res: Response) => {
const sticker_packs = await StickerPack.find({
relations: ["stickers"],
}); });
res.json({ sticker_packs });
},
);
export default router; export default router;

View File

@ -16,15 +16,25 @@
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import { Sticker } from "@spacebar/util";
import { Router, Request, Response } from "express";
import { route } from "@spacebar/api"; import { route } from "@spacebar/api";
import { Sticker } from "@spacebar/util";
import { Request, Response, Router } from "express";
const router = Router(); const router = Router();
router.get("/", route({}), async (req: Request, res: Response) => { router.get(
"/",
route({
responses: {
200: {
body: "Sticker",
},
},
}),
async (req: Request, res: Response) => {
const { sticker_id } = req.params; const { sticker_id } = req.params;
res.json(await Sticker.find({ where: { id: sticker_id } })); res.json(await Sticker.find({ where: { id: sticker_id } }));
}); },
);
export default router; export default router;

View File

@ -16,14 +16,22 @@
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import { Router, Request, Response } from "express";
import { route } from "@spacebar/api"; import { route } from "@spacebar/api";
import { Request, Response, Router } from "express";
const router: Router = Router(); const router: Router = Router();
router.post( router.post(
"/", "/",
route({ right: "OPERATOR" }), route({
right: "OPERATOR",
responses: {
200: {},
403: {
body: "APIErrorResponse",
},
},
}),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
console.log(`/stop was called by ${req.user_id} at ${new Date()}`); console.log(`/stop was called by ${req.user_id} at ${new Date()}`);
res.sendStatus(200); res.sendStatus(200);

View File

@ -16,13 +16,28 @@
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import { Router, Response, Request } from "express";
import { route } from "@spacebar/api"; import { route } from "@spacebar/api";
import { FieldErrors, Release } from "@spacebar/util"; import { FieldErrors, Release } from "@spacebar/util";
import { Request, Response, Router } from "express";
const router = Router(); const router = Router();
router.get("/", route({}), async (req: Request, res: Response) => { router.get(
"/",
route({
responses: {
200: {
body: "UpdatesResponse",
},
400: {
body: "APIErrorResponse",
},
404: {
body: "APIErrorResponse",
},
},
}),
async (req: Request, res: Response) => {
const platform = req.query.platform; const platform = req.query.platform;
if (!platform) if (!platform)
@ -47,6 +62,7 @@ router.get("/", route({}), async (req: Request, res: Response) => {
url: release.url, url: release.url,
notes: release.notes, notes: release.notes,
}); });
}); },
);
export default router; export default router;

View File

@ -30,7 +30,18 @@ const router = Router();
router.post( router.post(
"/", "/",
route({ right: "MANAGE_USERS" }), route({
right: "MANAGE_USERS",
responses: {
204: {},
403: {
body: "APIErrorResponse",
},
404: {
body: "APIErrorResponse",
},
},
}),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
await User.findOneOrFail({ await User.findOneOrFail({
where: { id: req.params.id }, where: { id: req.params.id },

View File

@ -16,16 +16,26 @@
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import { Router, Request, Response } from "express";
import { User } from "@spacebar/util";
import { route } from "@spacebar/api"; import { route } from "@spacebar/api";
import { User } from "@spacebar/util";
import { Request, Response, Router } from "express";
const router: Router = Router(); const router: Router = Router();
router.get("/", route({}), async (req: Request, res: Response) => { router.get(
"/",
route({
responses: {
200: {
body: "APIPublicUser",
},
},
}),
async (req: Request, res: Response) => {
const { id } = req.params; const { id } = req.params;
res.json(await User.getPublicUser(id)); res.json(await User.getPublicUser(id));
}); },
);
export default router; export default router;

View File

@ -16,23 +16,23 @@
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import { Router, Request, Response } from "express";
import {
User,
Member,
UserProfileModifySchema,
handleFile,
PrivateUserProjection,
emitEvent,
UserUpdateEvent,
} from "@spacebar/util";
import { route } from "@spacebar/api"; import { route } from "@spacebar/api";
import {
Member,
PrivateUserProjection,
User,
UserProfileModifySchema,
UserUpdateEvent,
emitEvent,
handleFile,
} from "@spacebar/util";
import { Request, Response, Router } from "express";
const router: Router = Router(); const router: Router = Router();
router.get( router.get(
"/", "/",
route({ test: { response: { body: "UserProfileResponse" } } }), route({ responses: { 200: { body: "UserProfileResponse" } } }),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
if (req.params.id === "@me") req.params.id = req.user_id; if (req.params.id === "@me") req.params.id = req.user_id;
@ -151,7 +151,7 @@ router.get(
router.patch( router.patch(
"/", "/",
route({ body: "UserProfileModifySchema" }), route({ requestBody: "UserProfileModifySchema" }),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
const body = req.body as UserProfileModifySchema; const body = req.body as UserProfileModifySchema;

View File

@ -16,17 +16,25 @@
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import { Router, Request, Response } from "express";
import { User } from "@spacebar/util";
import { route } from "@spacebar/api"; import { route } from "@spacebar/api";
import { User, UserRelationsResponse } from "@spacebar/util";
import { Request, Response, Router } from "express";
const router: Router = Router(); const router: Router = Router();
router.get( router.get(
"/", "/",
route({ test: { response: { body: "UserRelationsResponse" } } }), route({
responses: {
200: { body: "UserRelationsResponse" },
404: {
body: "APIErrorResponse",
},
},
}),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
const mutual_relations: object[] = []; const mutual_relations: UserRelationsResponse = [];
const requested_relations = await User.findOneOrFail({ const requested_relations = await User.findOneOrFail({
where: { id: req.params.id }, where: { id: req.params.id },
relations: ["relationships"], relations: ["relationships"],

View File

@ -16,32 +16,51 @@
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import { Request, Response, Router } from "express"; import { route } from "@spacebar/api";
import { import {
Recipient,
DmChannelDTO,
Channel, Channel,
DmChannelCreateSchema, DmChannelCreateSchema,
DmChannelDTO,
Recipient,
} from "@spacebar/util"; } from "@spacebar/util";
import { route } from "@spacebar/api"; import { Request, Response, Router } from "express";
const router: Router = Router(); const router: Router = Router();
router.get("/", route({}), async (req: Request, res: Response) => { router.get(
"/",
route({
responses: {
200: {
body: "APIDMChannelArray",
},
},
}),
async (req: Request, res: Response) => {
const recipients = await Recipient.find({ const recipients = await Recipient.find({
where: { user_id: req.user_id, closed: false }, where: { user_id: req.user_id, closed: false },
relations: ["channel", "channel.recipients"], relations: ["channel", "channel.recipients"],
}); });
res.json( res.json(
await Promise.all( await Promise.all(
recipients.map((r) => DmChannelDTO.from(r.channel, [req.user_id])), recipients.map((r) =>
DmChannelDTO.from(r.channel, [req.user_id]),
),
), ),
); );
}); },
);
router.post( router.post(
"/", "/",
route({ body: "DmChannelCreateSchema" }), route({
requestBody: "DmChannelCreateSchema",
responses: {
200: {
body: "DmChannelDTO",
},
},
}),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
const body = req.body as DmChannelCreateSchema; const body = req.body as DmChannelCreateSchema;
res.json( res.json(

View File

@ -29,7 +29,7 @@ const router = Router();
// TODO: connection update schema // TODO: connection update schema
router.patch( router.patch(
"/", "/",
route({ body: "ConnectionUpdateSchema" }), route({ requestBody: "ConnectionUpdateSchema" }),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
const { connection_name, connection_id } = req.params; const { connection_name, connection_id } = req.params;
const body = req.body as ConnectionUpdateSchema; const body = req.body as ConnectionUpdateSchema;

View File

@ -16,15 +16,28 @@
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import { Router, Request, Response } from "express";
import { Member, User } from "@spacebar/util";
import { route } from "@spacebar/api"; import { route } from "@spacebar/api";
import { Member, User } from "@spacebar/util";
import bcrypt from "bcrypt"; import bcrypt from "bcrypt";
import { Request, Response, Router } from "express";
import { HTTPError } from "lambert-server"; import { HTTPError } from "lambert-server";
const router = Router(); const router = Router();
router.post("/", route({}), async (req: Request, res: Response) => { router.post(
"/",
route({
responses: {
204: {},
401: {
body: "APIErrorResponse",
},
404: {
body: "APIErrorResponse",
},
},
}),
async (req: Request, res: Response) => {
const user = await User.findOneOrFail({ const user = await User.findOneOrFail({
where: { id: req.user_id }, where: { id: req.user_id },
select: ["data"], select: ["data"],
@ -33,7 +46,10 @@ router.post("/", route({}), async (req: Request, res: Response) => {
if (user.data.hash) { if (user.data.hash) {
// guest accounts can delete accounts without password // guest accounts can delete accounts without password
correctpass = await bcrypt.compare(req.body.password, user.data.hash); correctpass = await bcrypt.compare(
req.body.password,
user.data.hash,
);
if (!correctpass) { if (!correctpass) {
throw new HTTPError(req.t("auth:login.INVALID_PASSWORD")); throw new HTTPError(req.t("auth:login.INVALID_PASSWORD"));
} }
@ -51,6 +67,7 @@ router.post("/", route({}), async (req: Request, res: Response) => {
} else { } else {
res.sendStatus(401); res.sendStatus(401);
} }
}); },
);
export default router; export default router;

View File

@ -16,14 +16,27 @@
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import { User } from "@spacebar/util";
import { Router, Response, Request } from "express";
import { route } from "@spacebar/api"; import { route } from "@spacebar/api";
import { User } from "@spacebar/util";
import bcrypt from "bcrypt"; import bcrypt from "bcrypt";
import { Request, Response, Router } from "express";
const router = Router(); const router = Router();
router.post("/", route({}), async (req: Request, res: Response) => { router.post(
"/",
route({
responses: {
204: {},
400: {
body: "APIErrorResponse",
},
404: {
body: "APIErrorResponse",
},
},
}),
async (req: Request, res: Response) => {
const user = await User.findOneOrFail({ const user = await User.findOneOrFail({
where: { id: req.user_id }, where: { id: req.user_id },
select: ["data"], select: ["data"],
@ -32,7 +45,10 @@ router.post("/", route({}), async (req: Request, res: Response) => {
if (user.data.hash) { if (user.data.hash) {
// guest accounts can delete accounts without password // guest accounts can delete accounts without password
correctpass = await bcrypt.compare(req.body.password, user.data.hash); //Not sure if user typed right password :/ correctpass = await bcrypt.compare(
req.body.password,
user.data.hash,
); //Not sure if user typed right password :/
} }
if (correctpass) { if (correctpass) {
@ -45,6 +61,7 @@ router.post("/", route({}), async (req: Request, res: Response) => {
code: 50018, code: 50018,
}); });
} }
}); },
);
export default router; export default router;

View File

@ -16,22 +16,31 @@
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import { Router, Request, Response } from "express"; import { route } from "@spacebar/api";
import { import {
Config,
Guild, Guild,
Member,
User,
GuildDeleteEvent, GuildDeleteEvent,
GuildMemberRemoveEvent, GuildMemberRemoveEvent,
Member,
User,
emitEvent, emitEvent,
Config,
} from "@spacebar/util"; } from "@spacebar/util";
import { Request, Response, Router } from "express";
import { HTTPError } from "lambert-server"; import { HTTPError } from "lambert-server";
import { route } from "@spacebar/api";
const router: Router = Router(); const router: Router = Router();
router.get("/", route({}), async (req: Request, res: Response) => { router.get(
"/",
route({
responses: {
200: {
body: "APIGuildArray",
},
},
}),
async (req: Request, res: Response) => {
const members = await Member.find({ const members = await Member.find({
relations: ["guild"], relations: ["guild"],
where: { id: req.user_id }, where: { id: req.user_id },
@ -44,10 +53,24 @@ router.get("/", route({}), async (req: Request, res: Response) => {
} }
res.json(guild); res.json(guild);
}); },
);
// user send to leave a certain guild // user send to leave a certain guild
router.delete("/:guild_id", route({}), async (req: Request, res: Response) => { router.delete(
"/:guild_id",
route({
responses: {
204: {},
400: {
body: "APIErrorResponse",
},
404: {
body: "APIErrorResponse",
},
},
}),
async (req: Request, res: Response) => {
const { autoJoin } = Config.get().guild; const { autoJoin } = Config.get().guild;
const { guild_id } = req.params; const { guild_id } = req.params;
const guild = await Guild.findOneOrFail({ const guild = await Guild.findOneOrFail({
@ -63,7 +86,10 @@ router.delete("/:guild_id", route({}), async (req: Request, res: Response) => {
autoJoin.guilds.includes(guild_id) && autoJoin.guilds.includes(guild_id) &&
!autoJoin.canLeave !autoJoin.canLeave
) { ) {
throw new HTTPError("You can't leave instance auto join guilds", 400); throw new HTTPError(
"You can't leave instance auto join guilds",
400,
);
} }
await Promise.all([ await Promise.all([
@ -89,6 +115,7 @@ router.delete("/:guild_id", route({}), async (req: Request, res: Response) => {
} as GuildMemberRemoveEvent); } as GuildMemberRemoveEvent);
return res.sendStatus(204); return res.sendStatus(204);
}); },
);
export default router; export default router;

View File

@ -16,29 +16,49 @@
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import { Router, Response, Request } from "express"; import { route } from "@spacebar/api";
import { import {
Channel, Channel,
Member, Member,
OrmUtils, OrmUtils,
UserGuildSettingsSchema, UserGuildSettingsSchema,
} from "@spacebar/util"; } from "@spacebar/util";
import { route } from "@spacebar/api"; import { Request, Response, Router } from "express";
const router = Router(); const router = Router();
// GET doesn't exist on discord.com // GET doesn't exist on discord.com
router.get("/", route({}), async (req: Request, res: Response) => { router.get(
"/",
route({
responses: {
200: {},
404: {},
},
}),
async (req: Request, res: Response) => {
const user = await Member.findOneOrFail({ const user = await Member.findOneOrFail({
where: { id: req.user_id, guild_id: req.params.guild_id }, where: { id: req.user_id, guild_id: req.params.guild_id },
select: ["settings"], select: ["settings"],
}); });
return res.json(user.settings); return res.json(user.settings);
}); },
);
router.patch( router.patch(
"/", "/",
route({ body: "UserGuildSettingsSchema" }), route({
requestBody: "UserGuildSettingsSchema",
responses: {
200: {},
400: {
body: "APIErrorResponse",
},
404: {
body: "APIErrorResponse",
},
},
}),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
const body = req.body as UserGuildSettingsSchema; const body = req.body as UserGuildSettingsSchema;

View File

@ -16,36 +16,59 @@
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import { Router, Request, Response } from "express"; import { route } from "@spacebar/api";
import { import {
User,
PrivateUserProjection,
emitEvent,
UserUpdateEvent,
handleFile,
FieldErrors,
adjustEmail, adjustEmail,
Config, Config,
UserModifySchema, emitEvent,
FieldErrors,
generateToken, generateToken,
handleFile,
PrivateUserProjection,
User,
UserModifySchema,
UserUpdateEvent,
} from "@spacebar/util"; } from "@spacebar/util";
import { route } from "@spacebar/api";
import bcrypt from "bcrypt"; import bcrypt from "bcrypt";
import { Request, Response, Router } from "express";
const router: Router = Router(); const router: Router = Router();
router.get("/", route({}), async (req: Request, res: Response) => { router.get(
"/",
route({
responses: {
200: {
body: "APIPrivateUser",
},
},
}),
async (req: Request, res: Response) => {
res.json( res.json(
await User.findOne({ await User.findOne({
select: PrivateUserProjection, select: PrivateUserProjection,
where: { id: req.user_id }, where: { id: req.user_id },
}), }),
); );
}); },
);
router.patch( router.patch(
"/", "/",
route({ body: "UserModifySchema" }), route({
requestBody: "UserModifySchema",
responses: {
200: {
body: "UserUpdateResponse",
},
400: {
body: "APIErrorResponse",
},
404: {
body: "APIErrorResponse",
},
},
}),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
const body = req.body as UserModifySchema; const body = req.body as UserModifySchema;

View File

@ -16,21 +16,34 @@
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import { Router, Request, Response } from "express";
import { route } from "@spacebar/api"; import { route } from "@spacebar/api";
import { import {
BackupCode, BackupCode,
generateMfaBackupCodes,
User,
CodesVerificationSchema, CodesVerificationSchema,
DiscordApiErrors, DiscordApiErrors,
User,
generateMfaBackupCodes,
} from "@spacebar/util"; } from "@spacebar/util";
import { Request, Response, Router } from "express";
const router = Router(); const router = Router();
router.post( router.post(
"/", "/",
route({ body: "CodesVerificationSchema" }), route({
requestBody: "CodesVerificationSchema",
responses: {
200: {
body: "APIBackupCodeArray",
},
400: {
body: "APIErrorResponse",
},
404: {
body: "APIErrorResponse",
},
},
}),
async (req: Request, res: Response) => { async (req: Request, res: Response) => {
// const { key, nonce, regenerate } = req.body as CodesVerificationSchema; // const { key, nonce, regenerate } = req.body as CodesVerificationSchema;
const { regenerate } = req.body as CodesVerificationSchema; const { regenerate } = req.body as CodesVerificationSchema;

Some files were not shown because too many files have changed in this diff Show More