2016-08-04 16:32:36 -04:00
|
|
|
'use strict'
|
|
|
|
|
|
|
|
const mongoose = require('mongoose')
|
|
|
|
|
|
|
|
const checkErrors = require('./utils').checkErrors
|
|
|
|
const logger = require('../../helpers/logger')
|
|
|
|
|
|
|
|
const User = mongoose.model('User')
|
|
|
|
|
|
|
|
const validatorsUsers = {
|
2016-10-02 06:19:02 -04:00
|
|
|
usersAdd,
|
|
|
|
usersRemove,
|
|
|
|
usersUpdate
|
2016-08-04 16:32:36 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
function usersAdd (req, res, next) {
|
|
|
|
req.checkBody('username', 'Should have a valid username').isUserUsernameValid()
|
|
|
|
req.checkBody('password', 'Should have a valid password').isUserPasswordValid()
|
|
|
|
|
|
|
|
logger.debug('Checking usersAdd parameters', { parameters: req.body })
|
|
|
|
|
2016-08-23 11:42:56 -04:00
|
|
|
checkErrors(req, res, function () {
|
|
|
|
User.loadByUsername(req.body.username, 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()
|
|
|
|
})
|
|
|
|
})
|
2016-08-04 16:32:36 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
function usersRemove (req, res, next) {
|
2016-08-09 15:44:45 -04:00
|
|
|
req.checkParams('id', 'Should have a valid id').notEmpty().isMongoId()
|
2016-08-04 16:32:36 -04:00
|
|
|
|
|
|
|
logger.debug('Checking usersRemove parameters', { parameters: req.params })
|
|
|
|
|
|
|
|
checkErrors(req, res, function () {
|
2016-08-09 15:44:45 -04:00
|
|
|
User.loadById(req.params.id, function (err, user) {
|
2016-08-04 16:32:36 -04:00
|
|
|
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 09:32:09 -04:00
|
|
|
if (user.username === 'root') return res.status(400).send('Cannot remove the root user')
|
|
|
|
|
2016-08-04 16:32:36 -04:00
|
|
|
next()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
function usersUpdate (req, res, next) {
|
2016-08-09 15:44:45 -04:00
|
|
|
req.checkParams('id', 'Should have a valid id').notEmpty().isMongoId()
|
2016-08-04 16:32:36 -04:00
|
|
|
// Add old password verification
|
|
|
|
req.checkBody('password', 'Should have a valid password').isUserPasswordValid()
|
|
|
|
|
|
|
|
logger.debug('Checking usersUpdate parameters', { parameters: req.body })
|
|
|
|
|
|
|
|
checkErrors(req, res, next)
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
module.exports = validatorsUsers
|