Added better user configuration and removed extra logging

This commit is contained in:
root 2025-03-25 11:15:14 -07:00
parent 7320aa4529
commit 541af2045d
5 changed files with 44 additions and 13 deletions

View File

@ -180,19 +180,19 @@ router.patch(
where: { id: channel_id },
}),
});
console.log(webhook.channel_id);
await webhook.save();
await emitEvent({
await Promise.all([
webhook.save(),
emitEvent({
event: "WEBHOOKS_UPDATE",
channel_id,
data: {
channel_id,
guild_id: webhook.guild_id,
},
} as WebhooksUpdateEvent);
} as WebhooksUpdateEvent),
]);
console.log(webhook.channel_id);
res.json(webhook);
},
);

View File

@ -37,6 +37,7 @@ import {
SecurityConfiguration,
SentryConfiguration,
TemplateConfiguration,
UserConfiguration,
} from "../config";
export class ConfigValue {
@ -61,4 +62,5 @@ export class ConfigValue {
email: EmailConfiguration = new EmailConfiguration();
passwordReset: PasswordResetConfiguration =
new PasswordResetConfiguration();
user: UserConfiguration = new UserConfiguration();
}

View File

@ -0,0 +1,22 @@
/*
Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
Copyright (C) 2023 Spacebar and Spacebar Contributors
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/>.
*/
export class UserConfiguration {
blockedContains: string[] = ["discord", "clyde", "spacebar"];
blockedEquals: string[] = ["everyone", "here"];
}

View File

@ -37,3 +37,4 @@ export * from "./SecurityConfiguration";
export * from "./SentryConfiguration";
export * from "./subconfigurations";
export * from "./TemplateConfiguration";
export * from "./UsersConfiguration";

View File

@ -30,8 +30,8 @@ export function ValidateName(name: string) {
},
});
}
const { maxUsername } = Config.get().limits.user;
const general = Config.get();
const { maxUsername } = general.limits.user;
if (check_username.length > maxUsername || check_username.length < 2) {
throw FieldErrors({
username: {
@ -41,11 +41,17 @@ export function ValidateName(name: string) {
});
}
const blockedContains = ["discord", "clyde", "spacebar"];
const { blockedContains, blockedEquals } = general.user;
for (const word of blockedContains) {
if (name.toLowerCase().includes(word)) {
throw new HTTPError(`Username cannot contain "${word}"`, 400);
}
}
for (const word of blockedEquals) {
if (name.toLowerCase() === word) {
throw new HTTPError(`Username cannot be "${word}"`, 400);
}
}
return name;
}