diff options
Diffstat (limited to 'server/middlewares/validators/users.ts')
-rw-r--r-- | server/middlewares/validators/users.ts | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/server/middlewares/validators/users.ts b/server/middlewares/validators/users.ts index 748b89f8f..bc8607523 100644 --- a/server/middlewares/validators/users.ts +++ b/server/middlewares/validators/users.ts | |||
@@ -6,7 +6,6 @@ import { MUserDefault } from '@server/types/models' | |||
6 | import { HttpStatusCode } from '../../../shared/models/http/http-error-codes' | 6 | import { HttpStatusCode } from '../../../shared/models/http/http-error-codes' |
7 | import { UserRole } from '../../../shared/models/users' | 7 | import { UserRole } from '../../../shared/models/users' |
8 | import { UserRegister } from '../../../shared/models/users/user-register.model' | 8 | import { UserRegister } from '../../../shared/models/users/user-register.model' |
9 | import { isActorPreferredUsernameValid } from '../../helpers/custom-validators/activitypub/actor' | ||
10 | import { toBooleanOrNull, toIntOrNull } from '../../helpers/custom-validators/misc' | 9 | import { toBooleanOrNull, toIntOrNull } from '../../helpers/custom-validators/misc' |
11 | import { isThemeNameValid } from '../../helpers/custom-validators/plugins' | 10 | import { isThemeNameValid } from '../../helpers/custom-validators/plugins' |
12 | import { | 11 | import { |
@@ -28,7 +27,7 @@ import { | |||
28 | isUserVideoQuotaValid, | 27 | isUserVideoQuotaValid, |
29 | isUserVideosHistoryEnabledValid | 28 | isUserVideosHistoryEnabledValid |
30 | } from '../../helpers/custom-validators/users' | 29 | } from '../../helpers/custom-validators/users' |
31 | import { isVideoChannelNameValid } from '../../helpers/custom-validators/video-channels' | 30 | import { isVideoChannelDisplayNameValid, isVideoChannelUsernameValid } from '../../helpers/custom-validators/video-channels' |
32 | import { logger } from '../../helpers/logger' | 31 | import { logger } from '../../helpers/logger' |
33 | import { isThemeRegistered } from '../../lib/plugins/theme-utils' | 32 | import { isThemeRegistered } from '../../lib/plugins/theme-utils' |
34 | import { Redis } from '../../lib/redis' | 33 | import { Redis } from '../../lib/redis' |
@@ -56,9 +55,12 @@ const usersAddValidator = [ | |||
56 | body('username').custom(isUserUsernameValid).withMessage('Should have a valid username (lowercase alphanumeric characters)'), | 55 | body('username').custom(isUserUsernameValid).withMessage('Should have a valid username (lowercase alphanumeric characters)'), |
57 | body('password').custom(isUserPasswordValidOrEmpty).withMessage('Should have a valid password'), | 56 | body('password').custom(isUserPasswordValidOrEmpty).withMessage('Should have a valid password'), |
58 | body('email').isEmail().withMessage('Should have a valid email'), | 57 | body('email').isEmail().withMessage('Should have a valid email'), |
59 | body('channelName').optional().custom(isActorPreferredUsernameValid).withMessage('Should have a valid channel name'), | 58 | |
59 | body('channelName').optional().custom(isVideoChannelUsernameValid).withMessage('Should have a valid channel name'), | ||
60 | |||
60 | body('videoQuota').custom(isUserVideoQuotaValid).withMessage('Should have a valid user quota'), | 61 | body('videoQuota').custom(isUserVideoQuotaValid).withMessage('Should have a valid user quota'), |
61 | body('videoQuotaDaily').custom(isUserVideoQuotaDailyValid).withMessage('Should have a valid daily user quota'), | 62 | body('videoQuotaDaily').custom(isUserVideoQuotaDailyValid).withMessage('Should have a valid daily user quota'), |
63 | |||
62 | body('role') | 64 | body('role') |
63 | .customSanitizer(toIntOrNull) | 65 | .customSanitizer(toIntOrNull) |
64 | .custom(isUserRoleValid).withMessage('Should have a valid role'), | 66 | .custom(isUserRoleValid).withMessage('Should have a valid role'), |
@@ -106,10 +108,10 @@ const usersRegisterValidator = [ | |||
106 | 108 | ||
107 | body('channel.name') | 109 | body('channel.name') |
108 | .optional() | 110 | .optional() |
109 | .custom(isActorPreferredUsernameValid).withMessage('Should have a valid channel name'), | 111 | .custom(isVideoChannelUsernameValid).withMessage('Should have a valid channel name'), |
110 | body('channel.displayName') | 112 | body('channel.displayName') |
111 | .optional() | 113 | .optional() |
112 | .custom(isVideoChannelNameValid).withMessage('Should have a valid display name'), | 114 | .custom(isVideoChannelDisplayNameValid).withMessage('Should have a valid display name'), |
113 | 115 | ||
114 | async (req: express.Request, res: express.Response, next: express.NextFunction) => { | 116 | async (req: express.Request, res: express.Response, next: express.NextFunction) => { |
115 | logger.debug('Checking usersRegister parameters', { parameters: omit(req.body, 'password') }) | 117 | logger.debug('Checking usersRegister parameters', { parameters: omit(req.body, 'password') }) |