]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/middlewares/validators/users.ts
Add ability to choose what policy we have for NSFW videos
[github/Chocobozzz/PeerTube.git] / server / middlewares / validators / users.ts
CommitLineData
ecb4e35f 1import * as Bluebird from 'bluebird'
69818c93 2import * as express from 'express'
a2431b7d
C
3import 'express-validator'
4import { body, param } from 'express-validator/check'
ecb4e35f 5import { omit } from 'lodash'
3fd3ab2d 6import { isIdOrUUIDValid } from '../../helpers/custom-validators/misc'
b60e5f38 7import {
ecb4e35f
C
8 isAvatarFile,
9 isUserAutoPlayVideoValid,
2422c46b 10 isUserDescriptionValid,
0883b324 11 isUserNSFWPolicyValid,
ecb4e35f
C
12 isUserPasswordValid,
13 isUserRoleValid,
14 isUserUsernameValid,
3fd3ab2d
C
15 isUserVideoQuotaValid
16} from '../../helpers/custom-validators/users'
47564bbe 17import { isVideoExist } from '../../helpers/custom-validators/videos'
da854ddd
C
18import { logger } from '../../helpers/logger'
19import { isSignupAllowed } from '../../helpers/utils'
c5911fd3 20import { CONSTRAINTS_FIELDS } from '../../initializers'
ecb4e35f 21import { Redis } from '../../lib/redis'
3fd3ab2d 22import { UserModel } from '../../models/account/user'
a2431b7d 23import { areValidationErrors } from './utils'
9bd26629 24
b60e5f38 25const usersAddValidator = [
563d032e 26 body('username').custom(isUserUsernameValid).withMessage('Should have a valid username (lowercase alphanumeric characters)'),
b60e5f38
C
27 body('password').custom(isUserPasswordValid).withMessage('Should have a valid password'),
28 body('email').isEmail().withMessage('Should have a valid email'),
29 body('videoQuota').custom(isUserVideoQuotaValid).withMessage('Should have a valid user quota'),
954605a8 30 body('role').custom(isUserRoleValid).withMessage('Should have a valid role'),
9bd26629 31
a2431b7d 32 async (req: express.Request, res: express.Response, next: express.NextFunction) => {
ce97fe36 33 logger.debug('Checking usersAdd parameters', { parameters: omit(req.body, 'password') })
9bd26629 34
a2431b7d
C
35 if (areValidationErrors(req, res)) return
36 if (!await checkUserNameOrEmailDoesNotAlreadyExist(req.body.username, req.body.email, res)) return
37
38 return next()
b60e5f38
C
39 }
40]
6fcd19ba 41
b60e5f38
C
42const usersRegisterValidator = [
43 body('username').custom(isUserUsernameValid).withMessage('Should have a valid username'),
44 body('password').custom(isUserPasswordValid).withMessage('Should have a valid password'),
45 body('email').isEmail().withMessage('Should have a valid email'),
77a5501f 46
a2431b7d 47 async (req: express.Request, res: express.Response, next: express.NextFunction) => {
ce97fe36 48 logger.debug('Checking usersRegister parameters', { parameters: omit(req.body, 'password') })
77a5501f 49
a2431b7d
C
50 if (areValidationErrors(req, res)) return
51 if (!await checkUserNameOrEmailDoesNotAlreadyExist(req.body.username, req.body.email, res)) return
52
53 return next()
b60e5f38
C
54 }
55]
9bd26629 56
b60e5f38
C
57const usersRemoveValidator = [
58 param('id').isInt().not().isEmpty().withMessage('Should have a valid id'),
9bd26629 59
a2431b7d 60 async (req: express.Request, res: express.Response, next: express.NextFunction) => {
b60e5f38 61 logger.debug('Checking usersRemove parameters', { parameters: req.params })
9bd26629 62
a2431b7d
C
63 if (areValidationErrors(req, res)) return
64 if (!await checkUserIdExist(req.params.id, res)) return
65
66 const user = res.locals.user
67 if (user.username === 'root') {
68 return res.status(400)
69 .send({ error: 'Cannot remove the root user' })
70 .end()
71 }
72
73 return next()
b60e5f38
C
74 }
75]
8094a898 76
b60e5f38
C
77const usersUpdateValidator = [
78 param('id').isInt().not().isEmpty().withMessage('Should have a valid id'),
79 body('email').optional().isEmail().withMessage('Should have a valid email attribute'),
80 body('videoQuota').optional().custom(isUserVideoQuotaValid).withMessage('Should have a valid user quota'),
954605a8 81 body('role').optional().custom(isUserRoleValid).withMessage('Should have a valid role'),
8094a898 82
a2431b7d 83 async (req: express.Request, res: express.Response, next: express.NextFunction) => {
b60e5f38 84 logger.debug('Checking usersUpdate parameters', { parameters: req.body })
9bd26629 85
a2431b7d
C
86 if (areValidationErrors(req, res)) return
87 if (!await checkUserIdExist(req.params.id, res)) return
88
f8b8c36b
C
89 const user = res.locals.user
90 if (user.username === 'root' && req.body.role !== undefined && user.role !== req.body.role) {
91 return res.status(400)
92 .send({ error: 'Cannot change root role.' })
93 .end()
94 }
95
a2431b7d 96 return next()
b60e5f38
C
97 }
98]
9bd26629 99
b60e5f38 100const usersUpdateMeValidator = [
2422c46b 101 body('description').optional().custom(isUserDescriptionValid).withMessage('Should have a valid description'),
b60e5f38
C
102 body('password').optional().custom(isUserPasswordValid).withMessage('Should have a valid password'),
103 body('email').optional().isEmail().withMessage('Should have a valid email attribute'),
0883b324 104 body('nsfwPolicy').optional().custom(isUserNSFWPolicyValid).withMessage('Should have a valid display Not Safe For Work policy'),
7efe153b 105 body('autoPlayVideo').optional().custom(isUserAutoPlayVideoValid).withMessage('Should have a valid automatically plays video attribute'),
9bd26629 106
b60e5f38
C
107 (req: express.Request, res: express.Response, next: express.NextFunction) => {
108 // TODO: Add old password verification
ce97fe36 109 logger.debug('Checking usersUpdateMe parameters', { parameters: omit(req.body, 'password') })
8094a898 110
a2431b7d
C
111 if (areValidationErrors(req, res)) return
112
113 return next()
b60e5f38
C
114 }
115]
8094a898 116
c5911fd3
C
117const usersUpdateMyAvatarValidator = [
118 body('avatarfile').custom((value, { req }) => isAvatarFile(req.files)).withMessage(
119 'This file is not supported. Please, make sure it is of the following type : '
01de67b9 120 + CONSTRAINTS_FIELDS.ACTORS.AVATAR.EXTNAME.join(', ')
c5911fd3
C
121 ),
122
123 (req: express.Request, res: express.Response, next: express.NextFunction) => {
e8e12200 124 logger.debug('Checking usersUpdateMyAvatarValidator parameters', { files: req.files })
c5911fd3
C
125
126 if (areValidationErrors(req, res)) return
127
01de67b9
C
128 const imageFile = req.files['avatarfile'][0] as Express.Multer.File
129 if (imageFile.size > CONSTRAINTS_FIELDS.ACTORS.AVATAR.FILE_SIZE.max) {
130 res.status(400)
131 .send({ error: `The size of the avatar is too big (>${CONSTRAINTS_FIELDS.ACTORS.AVATAR.FILE_SIZE.max}).` })
132 .end()
133 return
134 }
135
c5911fd3
C
136 return next()
137 }
138]
139
b60e5f38
C
140const usersGetValidator = [
141 param('id').isInt().not().isEmpty().withMessage('Should have a valid id'),
d38b8281 142
a2431b7d 143 async (req: express.Request, res: express.Response, next: express.NextFunction) => {
ce97fe36 144 logger.debug('Checking usersGet parameters', { parameters: req.params })
a2431b7d
C
145
146 if (areValidationErrors(req, res)) return
147 if (!await checkUserIdExist(req.params.id, res)) return
148
149 return next()
b60e5f38
C
150 }
151]
d38b8281 152
b60e5f38 153const usersVideoRatingValidator = [
72c7248b 154 param('videoId').custom(isIdOrUUIDValid).not().isEmpty().withMessage('Should have a valid video id'),
0a6658fd 155
a2431b7d 156 async (req: express.Request, res: express.Response, next: express.NextFunction) => {
b60e5f38 157 logger.debug('Checking usersVideoRating parameters', { parameters: req.params })
0a6658fd 158
a2431b7d
C
159 if (areValidationErrors(req, res)) return
160 if (!await isVideoExist(req.params.videoId, res)) return
161
162 return next()
b60e5f38
C
163 }
164]
165
166const ensureUserRegistrationAllowed = [
a2431b7d
C
167 async (req: express.Request, res: express.Response, next: express.NextFunction) => {
168 const allowed = await isSignupAllowed()
169 if (allowed === false) {
170 return res.status(403)
171 .send({ error: 'User registration is not enabled or user limit is reached.' })
172 .end()
173 }
174
175 return next()
b60e5f38
C
176 }
177]
291e8d3e 178
ecb4e35f
C
179const usersAskResetPasswordValidator = [
180 body('email').isEmail().not().isEmpty().withMessage('Should have a valid email'),
181
182 async (req: express.Request, res: express.Response, next: express.NextFunction) => {
183 logger.debug('Checking usersAskResetPassword parameters', { parameters: req.body })
184
185 if (areValidationErrors(req, res)) return
186 const exists = await checkUserEmailExist(req.body.email, res, false)
187 if (!exists) {
188 logger.debug('User with email %s does not exist (asking reset password).', req.body.email)
189 // Do not leak our emails
190 return res.status(204).end()
191 }
192
193 return next()
194 }
195]
196
197const usersResetPasswordValidator = [
198 param('id').isInt().not().isEmpty().withMessage('Should have a valid id'),
199 body('verificationString').not().isEmpty().withMessage('Should have a valid verification string'),
200 body('password').custom(isUserPasswordValid).withMessage('Should have a valid password'),
201
202 async (req: express.Request, res: express.Response, next: express.NextFunction) => {
203 logger.debug('Checking usersResetPassword parameters', { parameters: req.params })
204
205 if (areValidationErrors(req, res)) return
206 if (!await checkUserIdExist(req.params.id, res)) return
207
208 const user = res.locals.user as UserModel
209 const redisVerificationString = await Redis.Instance.getResetPasswordLink(user.id)
210
211 if (redisVerificationString !== req.body.verificationString) {
212 return res
213 .status(403)
214 .send({ error: 'Invalid verification string.' })
f076daa7 215 .end()
ecb4e35f
C
216 }
217
218 return next()
219 }
220]
221
9bd26629
C
222// ---------------------------------------------------------------------------
223
65fcc311
C
224export {
225 usersAddValidator,
77a5501f 226 usersRegisterValidator,
65fcc311
C
227 usersRemoveValidator,
228 usersUpdateValidator,
8094a898 229 usersUpdateMeValidator,
291e8d3e 230 usersVideoRatingValidator,
8094a898 231 ensureUserRegistrationAllowed,
c5911fd3 232 usersGetValidator,
ecb4e35f
C
233 usersUpdateMyAvatarValidator,
234 usersAskResetPasswordValidator,
235 usersResetPasswordValidator
8094a898
C
236}
237
238// ---------------------------------------------------------------------------
239
ecb4e35f
C
240function checkUserIdExist (id: number, res: express.Response) {
241 return checkUserExist(() => UserModel.loadById(id), res)
242}
a2431b7d 243
ecb4e35f
C
244function checkUserEmailExist (email: string, res: express.Response, abortResponse = true) {
245 return checkUserExist(() => UserModel.loadByEmail(email), res, abortResponse)
65fcc311 246}
77a5501f 247
a2431b7d 248async function checkUserNameOrEmailDoesNotAlreadyExist (username: string, email: string, res: express.Response) {
3fd3ab2d 249 const user = await UserModel.loadByUsernameOrEmail(username, email)
a2431b7d
C
250
251 if (user) {
252 res.status(409)
edf7f40a 253 .send({ error: 'User with this username or email already exists.' })
a2431b7d
C
254 .end()
255 return false
256 }
257
258 return true
77a5501f 259}
ecb4e35f
C
260
261async function checkUserExist (finder: () => Bluebird<UserModel>, res: express.Response, abortResponse = true) {
262 const user = await finder()
263
264 if (!user) {
265 if (abortResponse === true) {
266 res.status(404)
267 .send({ error: 'User not found' })
268 .end()
269 }
270
271 return false
272 }
273
274 res.locals.user = user
275
276 return true
277}