2017-06-10 16:15:25 -04:00
|
|
|
import * as express from 'express'
|
2017-11-27 11:30:46 -05:00
|
|
|
import 'express-validator'
|
|
|
|
import { body, param } from 'express-validator/check'
|
2017-12-12 11:53:50 -05:00
|
|
|
import { isIdOrUUIDValid } from '../../helpers/custom-validators/misc'
|
2017-09-15 06:17:08 -04:00
|
|
|
import {
|
2018-01-03 04:12:36 -05:00
|
|
|
isAvatarFile, isUserAutoPlayVideoValid, isUserDisplayNSFWValid, isUserPasswordValid, isUserRoleValid, isUserUsernameValid,
|
2017-12-12 11:53:50 -05:00
|
|
|
isUserVideoQuotaValid
|
|
|
|
} from '../../helpers/custom-validators/users'
|
2018-01-03 04:12:36 -05:00
|
|
|
import { isVideoExist } from '../../helpers/custom-validators/videos'
|
2017-12-28 05:16:08 -05:00
|
|
|
import { logger } from '../../helpers/logger'
|
|
|
|
import { isSignupAllowed } from '../../helpers/utils'
|
2017-12-29 13:10:13 -05:00
|
|
|
import { CONSTRAINTS_FIELDS } from '../../initializers'
|
2017-12-12 11:53:50 -05:00
|
|
|
import { UserModel } from '../../models/account/user'
|
2017-11-27 11:30:46 -05:00
|
|
|
import { areValidationErrors } from './utils'
|
2016-08-04 16:32:36 -04:00
|
|
|
|
2017-09-15 06:17:08 -04:00
|
|
|
const usersAddValidator = [
|
2017-11-04 13:32:38 -04:00
|
|
|
body('username').custom(isUserUsernameValid).withMessage('Should have a valid username (lowercase alphanumeric characters)'),
|
2017-09-15 06:17:08 -04: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'),
|
2017-10-27 10:55:03 -04:00
|
|
|
body('role').custom(isUserRoleValid).withMessage('Should have a valid role'),
|
2016-08-04 16:32:36 -04:00
|
|
|
|
2017-11-27 11:30:46 -05:00
|
|
|
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
|
2017-09-15 06:17:08 -04:00
|
|
|
logger.debug('Checking usersAdd parameters', { parameters: req.body })
|
2016-08-04 16:32:36 -04:00
|
|
|
|
2017-11-27 11:30:46 -05:00
|
|
|
if (areValidationErrors(req, res)) return
|
|
|
|
if (!await checkUserNameOrEmailDoesNotAlreadyExist(req.body.username, req.body.email, res)) return
|
|
|
|
|
|
|
|
return next()
|
2017-09-15 06:17:08 -04:00
|
|
|
}
|
|
|
|
]
|
2017-07-05 07:26:25 -04:00
|
|
|
|
2017-09-15 06:17:08 -04: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 10:35:40 -04:00
|
|
|
|
2017-11-27 11:30:46 -05:00
|
|
|
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
|
2017-09-15 06:17:08 -04:00
|
|
|
logger.debug('Checking usersRegister parameters', { parameters: req.body })
|
2017-09-06 10:35:40 -04:00
|
|
|
|
2017-11-27 11:30:46 -05:00
|
|
|
if (areValidationErrors(req, res)) return
|
|
|
|
if (!await checkUserNameOrEmailDoesNotAlreadyExist(req.body.username, req.body.email, res)) return
|
|
|
|
|
|
|
|
return next()
|
2017-09-15 06:17:08 -04:00
|
|
|
}
|
|
|
|
]
|
2016-08-04 16:32:36 -04:00
|
|
|
|
2017-09-15 06:17:08 -04:00
|
|
|
const usersRemoveValidator = [
|
|
|
|
param('id').isInt().not().isEmpty().withMessage('Should have a valid id'),
|
2016-08-04 16:32:36 -04:00
|
|
|
|
2017-11-27 11:30:46 -05:00
|
|
|
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
|
2017-09-15 06:17:08 -04:00
|
|
|
logger.debug('Checking usersRemove parameters', { parameters: req.params })
|
2016-08-04 16:32:36 -04:00
|
|
|
|
2017-11-27 11:30:46 -05: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 06:17:08 -04:00
|
|
|
}
|
|
|
|
]
|
2017-09-05 15:29:39 -04:00
|
|
|
|
2017-09-15 06:17:08 -04: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'),
|
2017-10-27 10:55:03 -04:00
|
|
|
body('role').optional().custom(isUserRoleValid).withMessage('Should have a valid role'),
|
2017-09-05 15:29:39 -04:00
|
|
|
|
2017-11-27 11:30:46 -05:00
|
|
|
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
|
2017-09-15 06:17:08 -04:00
|
|
|
logger.debug('Checking usersUpdate parameters', { parameters: req.body })
|
2016-08-04 16:32:36 -04:00
|
|
|
|
2017-11-27 11:30:46 -05:00
|
|
|
if (areValidationErrors(req, res)) return
|
|
|
|
if (!await checkUserIdExist(req.params.id, res)) return
|
|
|
|
|
|
|
|
return next()
|
2017-09-15 06:17:08 -04:00
|
|
|
}
|
|
|
|
]
|
2016-08-04 16:32:36 -04:00
|
|
|
|
2017-09-15 06:17:08 -04: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'),
|
2017-12-19 04:45:49 -05:00
|
|
|
body('autoPlayVideo').optional().custom(isUserAutoPlayVideoValid).withMessage('Should have a valid automatically plays video attribute'),
|
2016-08-04 16:32:36 -04:00
|
|
|
|
2017-09-15 06:17:08 -04: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 15:29:39 -04:00
|
|
|
|
2017-11-27 11:30:46 -05:00
|
|
|
if (areValidationErrors(req, res)) return
|
|
|
|
|
|
|
|
return next()
|
2017-09-15 06:17:08 -04:00
|
|
|
}
|
|
|
|
]
|
2017-09-05 15:29:39 -04:00
|
|
|
|
2017-12-29 13:10:13 -05: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 05:10:40 -05:00
|
|
|
+ CONSTRAINTS_FIELDS.ACTORS.AVATAR.EXTNAME.join(', ')
|
2017-12-29 13:10:13 -05:00
|
|
|
),
|
|
|
|
|
|
|
|
(req: express.Request, res: express.Response, next: express.NextFunction) => {
|
2018-01-03 05:36:03 -05:00
|
|
|
logger.debug('Checking usersUpdateMyAvatarValidator parameters', { files: req.files })
|
2017-12-29 13:10:13 -05:00
|
|
|
|
|
|
|
if (areValidationErrors(req, res)) return
|
|
|
|
|
2018-01-03 05:10:40 -05: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 13:10:13 -05:00
|
|
|
return next()
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
2017-09-15 06:17:08 -04:00
|
|
|
const usersGetValidator = [
|
|
|
|
param('id').isInt().not().isEmpty().withMessage('Should have a valid id'),
|
2017-03-08 15:35:43 -05:00
|
|
|
|
2017-11-27 11:30:46 -05: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 06:17:08 -04:00
|
|
|
}
|
|
|
|
]
|
2017-03-08 15:35:43 -05:00
|
|
|
|
2017-09-15 06:17:08 -04:00
|
|
|
const usersVideoRatingValidator = [
|
2017-10-24 13:41:09 -04:00
|
|
|
param('videoId').custom(isIdOrUUIDValid).not().isEmpty().withMessage('Should have a valid video id'),
|
2017-07-11 10:01:56 -04:00
|
|
|
|
2017-11-27 11:30:46 -05:00
|
|
|
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
|
2017-09-15 06:17:08 -04:00
|
|
|
logger.debug('Checking usersVideoRating parameters', { parameters: req.params })
|
2017-07-11 10:01:56 -04:00
|
|
|
|
2017-11-27 11:30:46 -05:00
|
|
|
if (areValidationErrors(req, res)) return
|
|
|
|
if (!await isVideoExist(req.params.videoId, res)) return
|
|
|
|
|
|
|
|
return next()
|
2017-09-15 06:17:08 -04:00
|
|
|
}
|
|
|
|
]
|
|
|
|
|
|
|
|
const ensureUserRegistrationAllowed = [
|
2017-11-27 11:30:46 -05: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 06:17:08 -04:00
|
|
|
}
|
|
|
|
]
|
2017-07-25 14:17:28 -04:00
|
|
|
|
2016-08-04 16:32:36 -04:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2017-05-15 16:22:03 -04:00
|
|
|
export {
|
|
|
|
usersAddValidator,
|
2017-09-06 10:35:40 -04:00
|
|
|
usersRegisterValidator,
|
2017-05-15 16:22:03 -04:00
|
|
|
usersRemoveValidator,
|
|
|
|
usersUpdateValidator,
|
2017-09-05 15:29:39 -04:00
|
|
|
usersUpdateMeValidator,
|
2017-07-25 14:17:28 -04:00
|
|
|
usersVideoRatingValidator,
|
2017-09-05 15:29:39 -04:00
|
|
|
ensureUserRegistrationAllowed,
|
2017-12-29 13:10:13 -05:00
|
|
|
usersGetValidator,
|
|
|
|
usersUpdateMyAvatarValidator
|
2017-09-05 15:29:39 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2017-11-27 11:30:46 -05:00
|
|
|
async function checkUserIdExist (id: number, res: express.Response) {
|
2017-12-12 11:53:50 -05:00
|
|
|
const user = await UserModel.loadById(id)
|
2017-11-27 11:30:46 -05:00
|
|
|
|
|
|
|
if (!user) {
|
|
|
|
res.status(404)
|
|
|
|
.send({ error: 'User not found' })
|
|
|
|
.end()
|
|
|
|
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
res.locals.user = user
|
|
|
|
return true
|
2017-05-15 16:22:03 -04:00
|
|
|
}
|
2017-09-06 10:35:40 -04:00
|
|
|
|
2017-11-27 11:30:46 -05:00
|
|
|
async function checkUserNameOrEmailDoesNotAlreadyExist (username: string, email: string, res: express.Response) {
|
2017-12-12 11:53:50 -05:00
|
|
|
const user = await UserModel.loadByUsernameOrEmail(username, email)
|
2017-11-27 11:30:46 -05:00
|
|
|
|
|
|
|
if (user) {
|
|
|
|
res.status(409)
|
|
|
|
.send({ error: 'User with this username of email already exists.' })
|
|
|
|
.end()
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
return true
|
2017-09-06 10:35:40 -04:00
|
|
|
}
|