Merge branch 'master' of https://github.com/spacebarchat/server into update_webhooks
This commit is contained in:
commit
b03888fd62
85437
assets/openapi.json
85437
assets/openapi.json
File diff suppressed because it is too large
Load Diff
@ -98,6 +98,7 @@ export class SpacebarServer extends Server {
|
|||||||
}
|
}
|
||||||
|
|
||||||
this.app.set("json replacer", JSONReplacer);
|
this.app.set("json replacer", JSONReplacer);
|
||||||
|
this.app.disable("x-powered-by");
|
||||||
|
|
||||||
const trustedProxies = Config.get().security.trustedProxies;
|
const trustedProxies = Config.get().security.trustedProxies;
|
||||||
if (trustedProxies) this.app.set("trust proxy", trustedProxies);
|
if (trustedProxies) this.app.set("trust proxy", trustedProxies);
|
||||||
|
@ -152,7 +152,10 @@ router.patch(
|
|||||||
}
|
}
|
||||||
|
|
||||||
const { maxUsername } = Config.get().limits.user;
|
const { maxUsername } = Config.get().limits.user;
|
||||||
if (check_username.length > maxUsername) {
|
if (
|
||||||
|
check_username.length > maxUsername ||
|
||||||
|
check_username.length < 2
|
||||||
|
) {
|
||||||
throw FieldErrors({
|
throw FieldErrors({
|
||||||
username: {
|
username: {
|
||||||
code: "BASE_TYPE_BAD_LENGTH",
|
code: "BASE_TYPE_BAD_LENGTH",
|
||||||
|
@ -22,7 +22,8 @@ import path from "path";
|
|||||||
import avatarsRoute from "./routes/avatars";
|
import avatarsRoute from "./routes/avatars";
|
||||||
import guildProfilesRoute from "./routes/guild-profiles";
|
import guildProfilesRoute from "./routes/guild-profiles";
|
||||||
import iconsRoute from "./routes/role-icons";
|
import iconsRoute from "./routes/role-icons";
|
||||||
import bodyParser from "body-parser";
|
import { CORS } from "../api/middlewares/CORS";
|
||||||
|
import { BodyParser } from "../api/middlewares/BodyParser";
|
||||||
|
|
||||||
export type CDNServerOptions = ServerOptions;
|
export type CDNServerOptions = ServerOptions;
|
||||||
|
|
||||||
@ -38,24 +39,10 @@ export class CDNServer extends Server {
|
|||||||
await Config.init();
|
await Config.init();
|
||||||
await Sentry.init(this.app);
|
await Sentry.init(this.app);
|
||||||
|
|
||||||
this.app.use((req, res, next) => {
|
this.app.disable("x-powered-by");
|
||||||
res.set("Access-Control-Allow-Origin", "*");
|
|
||||||
// TODO: use better CSP policy
|
this.app.use(CORS);
|
||||||
res.set(
|
this.app.use(BodyParser({ inflate: true, limit: "10mb" }));
|
||||||
"Content-security-policy",
|
|
||||||
"default-src * data: blob: filesystem: about: ws: wss: 'unsafe-inline' 'unsafe-eval'; script-src * data: blob: 'unsafe-inline' 'unsafe-eval'; connect-src * data: blob: 'unsafe-inline'; img-src * data: blob: 'unsafe-inline'; frame-src * data: blob: ; style-src * data: blob: 'unsafe-inline'; font-src * data: blob: 'unsafe-inline';",
|
|
||||||
);
|
|
||||||
res.set(
|
|
||||||
"Access-Control-Allow-Headers",
|
|
||||||
req.header("Access-Control-Request-Headers") || "*",
|
|
||||||
);
|
|
||||||
res.set(
|
|
||||||
"Access-Control-Allow-Methods",
|
|
||||||
req.header("Access-Control-Request-Methods") || "*",
|
|
||||||
);
|
|
||||||
next();
|
|
||||||
});
|
|
||||||
this.app.use(bodyParser.json({ inflate: true, limit: "10mb" }));
|
|
||||||
|
|
||||||
await registerRoutes(this, path.join(__dirname, "routes/"));
|
await registerRoutes(this, path.join(__dirname, "routes/"));
|
||||||
|
|
||||||
|
@ -19,4 +19,7 @@
|
|||||||
export interface MessageAcknowledgeSchema {
|
export interface MessageAcknowledgeSchema {
|
||||||
manual?: boolean;
|
manual?: boolean;
|
||||||
mention_count?: number;
|
mention_count?: number;
|
||||||
|
flags?: number;
|
||||||
|
last_viewed?: number;
|
||||||
|
token?: string;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user