Skip to content

Commit d8b1a84

Browse files
author
root
committed
Validate Name for webhooks enforced more
1 parent 52efef2 commit d8b1a84

File tree

2 files changed

+3
-62
lines changed

2 files changed

+3
-62
lines changed

src/api/routes/channels/#channel_id/webhooks.ts

+2-31
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ import {
2929
isTextChannel,
3030
trimSpecial,
3131
FieldErrors,
32+
ValidateName,
3233
} from "@spacebar/util";
3334
import crypto from "crypto";
3435
import { Request, Response, Router } from "express";
@@ -113,37 +114,7 @@ router.post(
113114

114115
// TODO: move this
115116
if (name) {
116-
const check_username = name.replace(/\s/g, "");
117-
if (!check_username) {
118-
throw FieldErrors({
119-
username: {
120-
code: "BASE_TYPE_REQUIRED",
121-
message: req.t("common:field.BASE_TYPE_REQUIRED"),
122-
},
123-
});
124-
}
125-
126-
const { maxUsername } = Config.get().limits.user;
127-
if (
128-
check_username.length > maxUsername ||
129-
check_username.length < 2
130-
) {
131-
throw FieldErrors({
132-
username: {
133-
code: "BASE_TYPE_BAD_LENGTH",
134-
message: `Must be between 2 and ${maxUsername} in length.`,
135-
},
136-
});
137-
}
138-
139-
const blockedContains = ["discord", "clyde", "spacebar"];
140-
for (const word of blockedContains) {
141-
if (name.toLowerCase().includes(word)) {
142-
return res.status(400).json({
143-
username: [`Username cannot contain "${word}"`],
144-
});
145-
}
146-
}
117+
ValidateName(name);
147118
}
148119

149120
if (avatar) avatar = await handleFile(`/avatars/${channel_id}`, avatar);

src/api/routes/webhooks/#webhook_id/#token/index.ts

+1-31
Original file line numberDiff line numberDiff line change
@@ -134,37 +134,7 @@ router.post(
134134
// block username from containing certain words
135135
// TODO: configurable additions
136136
if (body.username) {
137-
const check_username = body.username.replace(/\s/g, "");
138-
if (!check_username) {
139-
throw FieldErrors({
140-
username: {
141-
code: "BASE_TYPE_REQUIRED",
142-
message: req.t("common:field.BASE_TYPE_REQUIRED"),
143-
},
144-
});
145-
}
146-
147-
const { maxUsername } = Config.get().limits.user;
148-
if (
149-
check_username.length > maxUsername ||
150-
check_username.length < 2
151-
) {
152-
throw FieldErrors({
153-
username: {
154-
code: "BASE_TYPE_BAD_LENGTH",
155-
message: `Must be between 2 and ${maxUsername} in length.`,
156-
},
157-
});
158-
}
159-
160-
const blockedContains = ["discord", "clyde", "spacebar"];
161-
for (const word of blockedContains) {
162-
if (body.username.toLowerCase().includes(word)) {
163-
return res.status(400).json({
164-
username: [`Username cannot contain "${word}"`],
165-
});
166-
}
167-
}
137+
ValidateName(body.username);
168138
}
169139

170140
// block username from being certain words

0 commit comments

Comments
 (0)