PeerTube/server/middlewares/validators/users.ts

205 lines
7.2 KiB
TypeScript
Raw Normal View History

2017-06-10 22:15:25 +02:00
import * as express from 'express'
2017-11-27 17:30:46 +01:00
import 'express-validator'
import { body, param } from 'express-validator/check'
2017-12-12 17:53:50 +01:00
import { isIdOrUUIDValid } from '../../helpers/custom-validators/misc'
2017-09-15 12:17:08 +02:00
import {
2018-01-03 10:12:36 +01:00
isAvatarFile, isUserAutoPlayVideoValid, isUserDisplayNSFWValid, isUserPasswordValid, isUserRoleValid, isUserUsernameValid,
2017-12-12 17:53:50 +01:00
isUserVideoQuotaValid
} from '../../helpers/custom-validators/users'
2018-01-03 10:12:36 +01:00
import { isVideoExist } from '../../helpers/custom-validators/videos'
2017-12-28 11:16:08 +01:00
import { logger } from '../../helpers/logger'
import { isSignupAllowed } from '../../helpers/utils'
2017-12-29 19:10:13 +01:00
import { CONSTRAINTS_FIELDS } from '../../initializers'
2017-12-12 17:53:50 +01:00
import { UserModel } from '../../models/account/user'
2017-11-27 17:30:46 +01:00
import { areValidationErrors } from './utils'
2017-09-15 12:17:08 +02:00
const usersAddValidator = [
2017-11-04 18:32:38 +01:00
body('username').custom(isUserUsernameValid).withMessage('Should have a valid username (lowercase alphanumeric characters)'),
2017-09-15 12:17:08 +02:00
body('password').custom(isUserPasswordValid).withMessage('Should have a valid password'),
body('email').isEmail().withMessage('Should have a valid email'),
body('videoQuota').custom(isUserVideoQuotaValid).withMessage('Should have a valid user quota'),
body('role').custom(isUserRoleValid).withMessage('Should have a valid role'),
2017-11-27 17:30:46 +01:00
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
2017-09-15 12:17:08 +02:00
logger.debug('Checking usersAdd parameters', { parameters: req.body })
2017-11-27 17:30:46 +01:00
if (areValidationErrors(req, res)) return
if (!await checkUserNameOrEmailDoesNotAlreadyExist(req.body.username, req.body.email, res)) return
return next()
2017-09-15 12:17:08 +02:00
}
]
2017-09-15 12:17:08 +02:00
const usersRegisterValidator = [
body('username').custom(isUserUsernameValid).withMessage('Should have a valid username'),
body('password').custom(isUserPasswordValid).withMessage('Should have a valid password'),
body('email').isEmail().withMessage('Should have a valid email'),
2017-09-06 16:35:40 +02:00
2017-11-27 17:30:46 +01:00
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
2017-09-15 12:17:08 +02:00
logger.debug('Checking usersRegister parameters', { parameters: req.body })
2017-09-06 16:35:40 +02:00
2017-11-27 17:30:46 +01:00
if (areValidationErrors(req, res)) return
if (!await checkUserNameOrEmailDoesNotAlreadyExist(req.body.username, req.body.email, res)) return
return next()
2017-09-15 12:17:08 +02:00
}
]
2017-09-15 12:17:08 +02:00
const usersRemoveValidator = [
param('id').isInt().not().isEmpty().withMessage('Should have a valid id'),
2017-11-27 17:30:46 +01:00
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
2017-09-15 12:17:08 +02:00
logger.debug('Checking usersRemove parameters', { parameters: req.params })
2017-11-27 17:30:46 +01:00
if (areValidationErrors(req, res)) return
if (!await checkUserIdExist(req.params.id, res)) return
const user = res.locals.user
if (user.username === 'root') {
return res.status(400)
.send({ error: 'Cannot remove the root user' })
.end()
}
return next()
2017-09-15 12:17:08 +02:00
}
]
2017-09-05 21:29:39 +02:00
2017-09-15 12:17:08 +02:00
const usersUpdateValidator = [
param('id').isInt().not().isEmpty().withMessage('Should have a valid id'),
body('email').optional().isEmail().withMessage('Should have a valid email attribute'),
body('videoQuota').optional().custom(isUserVideoQuotaValid).withMessage('Should have a valid user quota'),
body('role').optional().custom(isUserRoleValid).withMessage('Should have a valid role'),
2017-09-05 21:29:39 +02:00
2017-11-27 17:30:46 +01:00
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
2017-09-15 12:17:08 +02:00
logger.debug('Checking usersUpdate parameters', { parameters: req.body })
2017-11-27 17:30:46 +01:00
if (areValidationErrors(req, res)) return
if (!await checkUserIdExist(req.params.id, res)) return
return next()
2017-09-15 12:17:08 +02:00
}
]
2017-09-15 12:17:08 +02:00
const usersUpdateMeValidator = [
body('password').optional().custom(isUserPasswordValid).withMessage('Should have a valid password'),
body('email').optional().isEmail().withMessage('Should have a valid email attribute'),
body('displayNSFW').optional().custom(isUserDisplayNSFWValid).withMessage('Should have a valid display Not Safe For Work attribute'),
body('autoPlayVideo').optional().custom(isUserAutoPlayVideoValid).withMessage('Should have a valid automatically plays video attribute'),
2017-09-15 12:17:08 +02:00
(req: express.Request, res: express.Response, next: express.NextFunction) => {
// TODO: Add old password verification
logger.debug('Checking usersUpdateMe parameters', { parameters: req.body })
2017-09-05 21:29:39 +02:00
2017-11-27 17:30:46 +01:00
if (areValidationErrors(req, res)) return
return next()
2017-09-15 12:17:08 +02:00
}
]
2017-09-05 21:29:39 +02:00
2017-12-29 19:10:13 +01:00
const usersUpdateMyAvatarValidator = [
body('avatarfile').custom((value, { req }) => isAvatarFile(req.files)).withMessage(
'This file is not supported. Please, make sure it is of the following type : '
2018-01-03 11:10:40 +01:00
+ CONSTRAINTS_FIELDS.ACTORS.AVATAR.EXTNAME.join(', ')
2017-12-29 19:10:13 +01:00
),
(req: express.Request, res: express.Response, next: express.NextFunction) => {
2018-01-03 11:36:03 +01:00
logger.debug('Checking usersUpdateMyAvatarValidator parameters', { files: req.files })
2017-12-29 19:10:13 +01:00
if (areValidationErrors(req, res)) return
2018-01-03 11:10:40 +01:00
const imageFile = req.files['avatarfile'][0] as Express.Multer.File
if (imageFile.size > CONSTRAINTS_FIELDS.ACTORS.AVATAR.FILE_SIZE.max) {
res.status(400)
.send({ error: `The size of the avatar is too big (>${CONSTRAINTS_FIELDS.ACTORS.AVATAR.FILE_SIZE.max}).` })
.end()
return
}
2017-12-29 19:10:13 +01:00
return next()
}
]
2017-09-15 12:17:08 +02:00
const usersGetValidator = [
param('id').isInt().not().isEmpty().withMessage('Should have a valid id'),
2017-03-08 21:35:43 +01:00
2017-11-27 17:30:46 +01:00
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
logger.debug('Checking usersGet parameters', { parameters: req.body })
if (areValidationErrors(req, res)) return
if (!await checkUserIdExist(req.params.id, res)) return
return next()
2017-09-15 12:17:08 +02:00
}
]
2017-03-08 21:35:43 +01:00
2017-09-15 12:17:08 +02:00
const usersVideoRatingValidator = [
2017-10-24 19:41:09 +02:00
param('videoId').custom(isIdOrUUIDValid).not().isEmpty().withMessage('Should have a valid video id'),
2017-11-27 17:30:46 +01:00
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
2017-09-15 12:17:08 +02:00
logger.debug('Checking usersVideoRating parameters', { parameters: req.params })
2017-11-27 17:30:46 +01:00
if (areValidationErrors(req, res)) return
if (!await isVideoExist(req.params.videoId, res)) return
return next()
2017-09-15 12:17:08 +02:00
}
]
const ensureUserRegistrationAllowed = [
2017-11-27 17:30:46 +01:00
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
const allowed = await isSignupAllowed()
if (allowed === false) {
return res.status(403)
.send({ error: 'User registration is not enabled or user limit is reached.' })
.end()
}
return next()
2017-09-15 12:17:08 +02:00
}
]
// ---------------------------------------------------------------------------
2017-05-15 22:22:03 +02:00
export {
usersAddValidator,
2017-09-06 16:35:40 +02:00
usersRegisterValidator,
2017-05-15 22:22:03 +02:00
usersRemoveValidator,
usersUpdateValidator,
2017-09-05 21:29:39 +02:00
usersUpdateMeValidator,
usersVideoRatingValidator,
2017-09-05 21:29:39 +02:00
ensureUserRegistrationAllowed,
2017-12-29 19:10:13 +01:00
usersGetValidator,
usersUpdateMyAvatarValidator
2017-09-05 21:29:39 +02:00
}
// ---------------------------------------------------------------------------
2017-11-27 17:30:46 +01:00
async function checkUserIdExist (id: number, res: express.Response) {
2017-12-12 17:53:50 +01:00
const user = await UserModel.loadById(id)
2017-11-27 17:30:46 +01:00
if (!user) {
res.status(404)
.send({ error: 'User not found' })
.end()
return false
}
res.locals.user = user
return true
2017-05-15 22:22:03 +02:00
}
2017-09-06 16:35:40 +02:00
2017-11-27 17:30:46 +01:00
async function checkUserNameOrEmailDoesNotAlreadyExist (username: string, email: string, res: express.Response) {
2017-12-12 17:53:50 +01:00
const user = await UserModel.loadByUsernameOrEmail(username, email)
2017-11-27 17:30:46 +01:00
if (user) {
res.status(409)
.send({ error: 'User with this username of email already exists.' })
.end()
return false
}
return true
2017-09-06 16:35:40 +02:00
}