]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/middlewares/validators/users.ts
Automatically resize avatars
[github/Chocobozzz/PeerTube.git] / server / middlewares / validators / users.ts
CommitLineData
69818c93 1import * as express from 'express'
a2431b7d
C
2import 'express-validator'
3import { body, param } from 'express-validator/check'
3fd3ab2d 4import { isIdOrUUIDValid } from '../../helpers/custom-validators/misc'
b60e5f38 5import {
47564bbe 6 isAvatarFile, isUserAutoPlayVideoValid, isUserDisplayNSFWValid, isUserPasswordValid, isUserRoleValid, isUserUsernameValid,
3fd3ab2d
C
7 isUserVideoQuotaValid
8} from '../../helpers/custom-validators/users'
47564bbe 9import { isVideoExist } from '../../helpers/custom-validators/videos'
da854ddd
C
10import { logger } from '../../helpers/logger'
11import { isSignupAllowed } from '../../helpers/utils'
c5911fd3 12import { CONSTRAINTS_FIELDS } from '../../initializers'
3fd3ab2d 13import { UserModel } from '../../models/account/user'
a2431b7d 14import { areValidationErrors } from './utils'
9bd26629 15
b60e5f38 16const usersAddValidator = [
563d032e 17 body('username').custom(isUserUsernameValid).withMessage('Should have a valid username (lowercase alphanumeric characters)'),
b60e5f38
C
18 body('password').custom(isUserPasswordValid).withMessage('Should have a valid password'),
19 body('email').isEmail().withMessage('Should have a valid email'),
20 body('videoQuota').custom(isUserVideoQuotaValid).withMessage('Should have a valid user quota'),
954605a8 21 body('role').custom(isUserRoleValid).withMessage('Should have a valid role'),
9bd26629 22
a2431b7d 23 async (req: express.Request, res: express.Response, next: express.NextFunction) => {
b60e5f38 24 logger.debug('Checking usersAdd parameters', { parameters: req.body })
9bd26629 25
a2431b7d
C
26 if (areValidationErrors(req, res)) return
27 if (!await checkUserNameOrEmailDoesNotAlreadyExist(req.body.username, req.body.email, res)) return
28
29 return next()
b60e5f38
C
30 }
31]
6fcd19ba 32
b60e5f38
C
33const usersRegisterValidator = [
34 body('username').custom(isUserUsernameValid).withMessage('Should have a valid username'),
35 body('password').custom(isUserPasswordValid).withMessage('Should have a valid password'),
36 body('email').isEmail().withMessage('Should have a valid email'),
77a5501f 37
a2431b7d 38 async (req: express.Request, res: express.Response, next: express.NextFunction) => {
b60e5f38 39 logger.debug('Checking usersRegister parameters', { parameters: req.body })
77a5501f 40
a2431b7d
C
41 if (areValidationErrors(req, res)) return
42 if (!await checkUserNameOrEmailDoesNotAlreadyExist(req.body.username, req.body.email, res)) return
43
44 return next()
b60e5f38
C
45 }
46]
9bd26629 47
b60e5f38
C
48const usersRemoveValidator = [
49 param('id').isInt().not().isEmpty().withMessage('Should have a valid id'),
9bd26629 50
a2431b7d 51 async (req: express.Request, res: express.Response, next: express.NextFunction) => {
b60e5f38 52 logger.debug('Checking usersRemove parameters', { parameters: req.params })
9bd26629 53
a2431b7d
C
54 if (areValidationErrors(req, res)) return
55 if (!await checkUserIdExist(req.params.id, res)) return
56
57 const user = res.locals.user
58 if (user.username === 'root') {
59 return res.status(400)
60 .send({ error: 'Cannot remove the root user' })
61 .end()
62 }
63
64 return next()
b60e5f38
C
65 }
66]
8094a898 67
b60e5f38
C
68const usersUpdateValidator = [
69 param('id').isInt().not().isEmpty().withMessage('Should have a valid id'),
70 body('email').optional().isEmail().withMessage('Should have a valid email attribute'),
71 body('videoQuota').optional().custom(isUserVideoQuotaValid).withMessage('Should have a valid user quota'),
954605a8 72 body('role').optional().custom(isUserRoleValid).withMessage('Should have a valid role'),
8094a898 73
a2431b7d 74 async (req: express.Request, res: express.Response, next: express.NextFunction) => {
b60e5f38 75 logger.debug('Checking usersUpdate parameters', { parameters: req.body })
9bd26629 76
a2431b7d
C
77 if (areValidationErrors(req, res)) return
78 if (!await checkUserIdExist(req.params.id, res)) return
79
80 return next()
b60e5f38
C
81 }
82]
9bd26629 83
b60e5f38
C
84const usersUpdateMeValidator = [
85 body('password').optional().custom(isUserPasswordValid).withMessage('Should have a valid password'),
86 body('email').optional().isEmail().withMessage('Should have a valid email attribute'),
87 body('displayNSFW').optional().custom(isUserDisplayNSFWValid).withMessage('Should have a valid display Not Safe For Work attribute'),
7efe153b 88 body('autoPlayVideo').optional().custom(isUserAutoPlayVideoValid).withMessage('Should have a valid automatically plays video attribute'),
9bd26629 89
b60e5f38
C
90 (req: express.Request, res: express.Response, next: express.NextFunction) => {
91 // TODO: Add old password verification
92 logger.debug('Checking usersUpdateMe parameters', { parameters: req.body })
8094a898 93
a2431b7d
C
94 if (areValidationErrors(req, res)) return
95
96 return next()
b60e5f38
C
97 }
98]
8094a898 99
c5911fd3
C
100const usersUpdateMyAvatarValidator = [
101 body('avatarfile').custom((value, { req }) => isAvatarFile(req.files)).withMessage(
102 'This file is not supported. Please, make sure it is of the following type : '
01de67b9 103 + CONSTRAINTS_FIELDS.ACTORS.AVATAR.EXTNAME.join(', ')
c5911fd3
C
104 ),
105
106 (req: express.Request, res: express.Response, next: express.NextFunction) => {
e8e12200 107 logger.debug('Checking usersUpdateMyAvatarValidator parameters', { files: req.files })
c5911fd3
C
108
109 if (areValidationErrors(req, res)) return
110
01de67b9
C
111 const imageFile = req.files['avatarfile'][0] as Express.Multer.File
112 if (imageFile.size > CONSTRAINTS_FIELDS.ACTORS.AVATAR.FILE_SIZE.max) {
113 res.status(400)
114 .send({ error: `The size of the avatar is too big (>${CONSTRAINTS_FIELDS.ACTORS.AVATAR.FILE_SIZE.max}).` })
115 .end()
116 return
117 }
118
c5911fd3
C
119 return next()
120 }
121]
122
b60e5f38
C
123const usersGetValidator = [
124 param('id').isInt().not().isEmpty().withMessage('Should have a valid id'),
d38b8281 125
a2431b7d
C
126 async (req: express.Request, res: express.Response, next: express.NextFunction) => {
127 logger.debug('Checking usersGet parameters', { parameters: req.body })
128
129 if (areValidationErrors(req, res)) return
130 if (!await checkUserIdExist(req.params.id, res)) return
131
132 return next()
b60e5f38
C
133 }
134]
d38b8281 135
b60e5f38 136const usersVideoRatingValidator = [
72c7248b 137 param('videoId').custom(isIdOrUUIDValid).not().isEmpty().withMessage('Should have a valid video id'),
0a6658fd 138
a2431b7d 139 async (req: express.Request, res: express.Response, next: express.NextFunction) => {
b60e5f38 140 logger.debug('Checking usersVideoRating parameters', { parameters: req.params })
0a6658fd 141
a2431b7d
C
142 if (areValidationErrors(req, res)) return
143 if (!await isVideoExist(req.params.videoId, res)) return
144
145 return next()
b60e5f38
C
146 }
147]
148
149const ensureUserRegistrationAllowed = [
a2431b7d
C
150 async (req: express.Request, res: express.Response, next: express.NextFunction) => {
151 const allowed = await isSignupAllowed()
152 if (allowed === false) {
153 return res.status(403)
154 .send({ error: 'User registration is not enabled or user limit is reached.' })
155 .end()
156 }
157
158 return next()
b60e5f38
C
159 }
160]
291e8d3e 161
9bd26629
C
162// ---------------------------------------------------------------------------
163
65fcc311
C
164export {
165 usersAddValidator,
77a5501f 166 usersRegisterValidator,
65fcc311
C
167 usersRemoveValidator,
168 usersUpdateValidator,
8094a898 169 usersUpdateMeValidator,
291e8d3e 170 usersVideoRatingValidator,
8094a898 171 ensureUserRegistrationAllowed,
c5911fd3
C
172 usersGetValidator,
173 usersUpdateMyAvatarValidator
8094a898
C
174}
175
176// ---------------------------------------------------------------------------
177
a2431b7d 178async function checkUserIdExist (id: number, res: express.Response) {
3fd3ab2d 179 const user = await UserModel.loadById(id)
a2431b7d
C
180
181 if (!user) {
182 res.status(404)
183 .send({ error: 'User not found' })
184 .end()
185
186 return false
187 }
188
189 res.locals.user = user
190 return true
65fcc311 191}
77a5501f 192
a2431b7d 193async function checkUserNameOrEmailDoesNotAlreadyExist (username: string, email: string, res: express.Response) {
3fd3ab2d 194 const user = await UserModel.loadByUsernameOrEmail(username, email)
a2431b7d
C
195
196 if (user) {
197 res.status(409)
198 .send({ error: 'User with this username of email already exists.' })
199 .end()
200 return false
201 }
202
203 return true
77a5501f 204}