PeerTube/server/middlewares/validators/users.ts

149 lines
4.9 KiB
TypeScript
Raw Normal View History

2017-06-10 22:15:25 +02:00
import 'express-validator'
import * as express from 'express'
import * as Promise from 'bluebird'
import * as validator from 'validator'
2017-06-10 22:15:25 +02:00
2017-05-22 20:58:25 +02:00
import { database as db } from '../../initializers/database'
2017-05-15 22:22:03 +02:00
import { checkErrors } from './utils'
import { isSignupAllowed, logger } from '../../helpers'
import { VideoInstance } from '../../models'
2017-06-10 22:15:25 +02:00
function usersAddValidator (req: express.Request, res: express.Response, next: express.NextFunction) {
req.checkBody('username', 'Should have a valid username').isUserUsernameValid()
req.checkBody('password', 'Should have a valid password').isUserPasswordValid()
2017-02-18 09:29:59 +01:00
req.checkBody('email', 'Should have a valid email').isEmail()
2017-09-04 20:07:54 +02:00
req.checkBody('videoQuota', 'Should have a valid user quota').isUserVideoQuotaValid()
logger.debug('Checking usersAdd parameters', { parameters: req.body })
2017-07-11 17:04:57 +02:00
checkErrors(req, res, () => {
db.User.loadByUsernameOrEmail(req.body.username, req.body.email)
.then(user => {
if (user) return res.status(409).send('User already exists.')
next()
})
.catch(err => {
2017-07-07 18:26:12 +02:00
logger.error('Error in usersAdd request validator.', err)
return res.sendStatus(500)
})
})
}
2017-06-10 22:15:25 +02:00
function usersRemoveValidator (req: express.Request, res: express.Response, next: express.NextFunction) {
2016-12-11 21:50:51 +01:00
req.checkParams('id', 'Should have a valid id').notEmpty().isInt()
logger.debug('Checking usersRemove parameters', { parameters: req.params })
2017-07-11 17:04:57 +02:00
checkErrors(req, res, () => {
db.User.loadById(req.params.id)
.then(user => {
if (!user) return res.status(404).send('User not found')
if (user.username === 'root') return res.status(400).send('Cannot remove the root user')
2016-10-07 15:32:09 +02:00
next()
})
.catch(err => {
2017-07-07 18:26:12 +02:00
logger.error('Error in usersRemove request validator.', err)
return res.sendStatus(500)
})
})
}
2017-06-10 22:15:25 +02:00
function usersUpdateValidator (req: express.Request, res: express.Response, next: express.NextFunction) {
2016-12-11 21:50:51 +01:00
req.checkParams('id', 'Should have a valid id').notEmpty().isInt()
2017-09-05 21:29:39 +02:00
req.checkBody('email', 'Should have a valid email attribute').optional().isEmail()
req.checkBody('videoQuota', 'Should have a valid user quota').optional().isUserVideoQuotaValid()
logger.debug('Checking usersUpdate parameters', { parameters: req.body })
checkErrors(req, res, () => {
checkUserExists(req.params.id, res, next)
})
}
function usersUpdateMeValidator (req: express.Request, res: express.Response, next: express.NextFunction) {
// Add old password verification
2017-04-03 21:24:36 +02:00
req.checkBody('password', 'Should have a valid password').optional().isUserPasswordValid()
2017-09-05 21:29:39 +02:00
req.checkBody('email', 'Should have a valid email attribute').optional().isEmail()
2017-04-03 21:24:36 +02:00
req.checkBody('displayNSFW', 'Should have a valid display Not Safe For Work attribute').optional().isUserDisplayNSFWValid()
logger.debug('Checking usersUpdate parameters', { parameters: req.body })
checkErrors(req, res, next)
}
2017-09-05 21:29:39 +02:00
function usersGetValidator (req: express.Request, res: express.Response, next: express.NextFunction) {
req.checkParams('id', 'Should have a valid id').notEmpty().isInt()
checkErrors(req, res, () => {
checkUserExists(req.params.id, res, next)
})
}
2017-06-10 22:15:25 +02:00
function usersVideoRatingValidator (req: express.Request, res: express.Response, next: express.NextFunction) {
req.checkParams('videoId', 'Should have a valid video id').notEmpty().isVideoIdOrUUIDValid()
2017-03-08 21:35:43 +01:00
logger.debug('Checking usersVideoRating parameters', { parameters: req.params })
2017-07-11 17:04:57 +02:00
checkErrors(req, res, () => {
let videoPromise: Promise<VideoInstance>
if (validator.isUUID(req.params.videoId)) {
videoPromise = db.Video.loadByUUID(req.params.videoId)
} else {
videoPromise = db.Video.load(req.params.videoId)
}
videoPromise
.then(video => {
if (!video) return res.status(404).send('Video not found')
next()
})
.catch(err => {
2017-07-07 18:26:12 +02:00
logger.error('Error in user request validator.', err)
2017-03-08 21:35:43 +01:00
return res.sendStatus(500)
})
2017-03-08 21:35:43 +01:00
})
}
function ensureUserRegistrationAllowed (req: express.Request, res: express.Response, next: express.NextFunction) {
isSignupAllowed().then(allowed => {
if (allowed === false) {
return res.status(403).send('User registration is not enabled or user limit is reached.')
}
return next()
})
}
// ---------------------------------------------------------------------------
2017-05-15 22:22:03 +02:00
export {
usersAddValidator,
usersRemoveValidator,
usersUpdateValidator,
2017-09-05 21:29:39 +02:00
usersUpdateMeValidator,
usersVideoRatingValidator,
2017-09-05 21:29:39 +02:00
ensureUserRegistrationAllowed,
usersGetValidator
}
// ---------------------------------------------------------------------------
function checkUserExists (id: number, res: express.Response, callback: () => void) {
db.User.loadById(id)
.then(user => {
if (!user) return res.status(404).send('User not found')
res.locals.user = user
callback()
})
.catch(err => {
logger.error('Error in user request validator.', err)
return res.sendStatus(500)
})
2017-05-15 22:22:03 +02:00
}