File tree 2 files changed +3
-62
lines changed
webhooks/#webhook_id/#token
2 files changed +3
-62
lines changed Original file line number Diff line number Diff line change @@ -29,6 +29,7 @@ import {
29
29
isTextChannel ,
30
30
trimSpecial ,
31
31
FieldErrors ,
32
+ ValidateName ,
32
33
} from "@spacebar/util" ;
33
34
import crypto from "crypto" ;
34
35
import { Request , Response , Router } from "express" ;
@@ -113,37 +114,7 @@ router.post(
113
114
114
115
// TODO: move this
115
116
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 ) ;
147
118
}
148
119
149
120
if ( avatar ) avatar = await handleFile ( `/avatars/${ channel_id } ` , avatar ) ;
Original file line number Diff line number Diff line change @@ -134,37 +134,7 @@ router.post(
134
134
// block username from containing certain words
135
135
// TODO: configurable additions
136
136
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 ) ;
168
138
}
169
139
170
140
// block username from being certain words
You can’t perform that action at this time.
0 commit comments