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 }, where: { id: channel_id },
}), }),
}); });
console.log(webhook.channel_id);
await webhook.save(); await Promise.all([
await emitEvent({ webhook.save(),
event: "WEBHOOKS_UPDATE", emitEvent({
channel_id, event: "WEBHOOKS_UPDATE",
data: {
channel_id, channel_id,
guild_id: webhook.guild_id, data: {
}, channel_id,
} as WebhooksUpdateEvent); guild_id: webhook.guild_id,
},
} as WebhooksUpdateEvent),
]);
console.log(webhook.channel_id);
res.json(webhook); res.json(webhook);
}, },
); );

View File

@ -37,6 +37,7 @@ import {
SecurityConfiguration, SecurityConfiguration,
SentryConfiguration, SentryConfiguration,
TemplateConfiguration, TemplateConfiguration,
UserConfiguration,
} from "../config"; } from "../config";
export class ConfigValue { export class ConfigValue {
@ -61,4 +62,5 @@ export class ConfigValue {
email: EmailConfiguration = new EmailConfiguration(); email: EmailConfiguration = new EmailConfiguration();
passwordReset: PasswordResetConfiguration = passwordReset: PasswordResetConfiguration =
new 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 "./SentryConfiguration";
export * from "./subconfigurations"; export * from "./subconfigurations";
export * from "./TemplateConfiguration"; export * from "./TemplateConfiguration";
export * from "./UsersConfiguration";

View File

@ -30,8 +30,8 @@ export function ValidateName(name: string) {
}, },
}); });
} }
const general = Config.get();
const { maxUsername } = Config.get().limits.user; const { maxUsername } = general.limits.user;
if (check_username.length > maxUsername || check_username.length < 2) { if (check_username.length > maxUsername || check_username.length < 2) {
throw FieldErrors({ throw FieldErrors({
username: { 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) { for (const word of blockedContains) {
if (name.toLowerCase().includes(word)) { if (name.toLowerCase().includes(word)) {
throw new HTTPError(`Username cannot contain "${word}"`, 400); 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; return name;
} }