PeerTube/server/middlewares/validators/users.ts

85 lines
2.6 KiB
TypeScript
Raw Normal View History

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 { logger } from '../../helpers'
2017-05-15 22:22:03 +02:00
function usersAddValidator (req, res, next) {
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()
logger.debug('Checking usersAdd parameters', { parameters: req.body })
checkErrors(req, res, function () {
2017-02-18 09:29:59 +01:00
db.User.loadByUsernameOrEmail(req.body.username, req.body.email, function (err, user) {
if (err) {
logger.error('Error in usersAdd request validator.', { error: err })
return res.sendStatus(500)
}
if (user) return res.status(409).send('User already exists.')
next()
})
})
}
2017-05-15 22:22:03 +02:00
function usersRemoveValidator (req, res, next) {
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 })
checkErrors(req, res, function () {
2016-12-11 21:50:51 +01:00
db.User.loadById(req.params.id, function (err, user) {
if (err) {
logger.error('Error in usersRemove request validator.', { error: err })
return res.sendStatus(500)
}
if (!user) return res.status(404).send('User not found')
2016-10-07 15:32:09 +02:00
if (user.username === 'root') return res.status(400).send('Cannot remove the root user')
next()
})
})
}
2017-05-15 22:22:03 +02:00
function usersUpdateValidator (req, res, next) {
2016-12-11 21:50:51 +01:00
req.checkParams('id', 'Should have a valid id').notEmpty().isInt()
// Add old password verification
2017-04-03 21:24:36 +02:00
req.checkBody('password', 'Should have a valid password').optional().isUserPasswordValid()
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-05-15 22:22:03 +02:00
function usersVideoRatingValidator (req, res, next) {
2017-03-08 21:35:43 +01:00
req.checkParams('videoId', 'Should have a valid video id').notEmpty().isUUID(4)
logger.debug('Checking usersVideoRating parameters', { parameters: req.params })
checkErrors(req, res, function () {
db.Video.load(req.params.videoId, function (err, video) {
if (err) {
logger.error('Error in user request validator.', { error: err })
return res.sendStatus(500)
}
if (!video) return res.status(404).send('Video not found')
next()
})
})
}
// ---------------------------------------------------------------------------
2017-05-15 22:22:03 +02:00
export {
usersAddValidator,
usersRemoveValidator,
usersUpdateValidator,
usersVideoRatingValidator
}