2016-02-07 05:23:23 -05:00
|
|
|
'use strict'
|
|
|
|
|
2016-03-16 17:29:27 -04:00
|
|
|
const checkErrors = require('./utils').checkErrors
|
2016-11-16 14:22:17 -05:00
|
|
|
const constants = require('../../initializers/constants')
|
2017-01-27 05:55:31 -05:00
|
|
|
const db = require('../../initializers/database')
|
2016-03-16 17:29:27 -04:00
|
|
|
const friends = require('../../lib/friends')
|
|
|
|
const logger = require('../../helpers/logger')
|
2016-11-16 14:22:17 -05:00
|
|
|
const utils = require('../../helpers/utils')
|
2016-02-07 05:23:23 -05:00
|
|
|
|
2016-07-01 10:16:40 -04:00
|
|
|
const validatorsPod = {
|
2016-10-02 06:19:02 -04:00
|
|
|
makeFriends,
|
|
|
|
podsAdd
|
2016-02-07 05:23:23 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
function makeFriends (req, res, next) {
|
2016-11-16 14:22:17 -05:00
|
|
|
// Force https if the administrator wants to make friends
|
|
|
|
if (utils.isTestInstance() === false && constants.CONFIG.WEBSERVER.SCHEME === 'http') {
|
|
|
|
return res.status(400).send('Cannot make friends with a non HTTPS webserver.')
|
|
|
|
}
|
|
|
|
|
2016-11-14 14:03:04 -05:00
|
|
|
req.checkBody('hosts', 'Should have an array of unique hosts').isEachUniqueHostValid()
|
2016-08-20 10:59:25 -04:00
|
|
|
|
|
|
|
logger.debug('Checking makeFriends parameters', { parameters: req.body })
|
|
|
|
|
2016-08-21 04:08:40 -04:00
|
|
|
checkErrors(req, res, function () {
|
|
|
|
friends.hasFriends(function (err, hasFriends) {
|
|
|
|
if (err) {
|
|
|
|
logger.error('Cannot know if we have friends.', { error: err })
|
|
|
|
res.sendStatus(500)
|
|
|
|
}
|
|
|
|
|
|
|
|
if (hasFriends === true) {
|
|
|
|
// We need to quit our friends before make new ones
|
2017-01-27 05:55:31 -05:00
|
|
|
return res.sendStatus(409)
|
2016-08-21 04:08:40 -04:00
|
|
|
}
|
2017-01-27 05:55:31 -05:00
|
|
|
|
|
|
|
return next()
|
2016-08-21 04:08:40 -04:00
|
|
|
})
|
2016-02-07 05:23:23 -05:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
function podsAdd (req, res, next) {
|
2017-02-16 13:19:56 -05:00
|
|
|
req.checkBody('host', 'Should have a host').isHostValid()
|
|
|
|
req.checkBody('email', 'Should have an email').isEmail()
|
2016-06-18 10:13:54 -04:00
|
|
|
req.checkBody('publicKey', 'Should have a public key').notEmpty()
|
2017-01-27 05:55:31 -05:00
|
|
|
logger.debug('Checking podsAdd parameters', { parameters: req.body })
|
2016-06-18 10:13:54 -04:00
|
|
|
|
2017-01-27 05:55:31 -05:00
|
|
|
checkErrors(req, res, function () {
|
|
|
|
db.Pod.loadByHost(req.body.host, function (err, pod) {
|
|
|
|
if (err) {
|
|
|
|
logger.error('Cannot load pod by host.', { error: err })
|
|
|
|
res.sendStatus(500)
|
|
|
|
}
|
2016-02-07 05:23:23 -05:00
|
|
|
|
2017-01-27 05:55:31 -05:00
|
|
|
// Pod with this host already exists
|
|
|
|
if (pod) {
|
|
|
|
return res.sendStatus(409)
|
|
|
|
}
|
2016-02-07 05:23:23 -05:00
|
|
|
|
2017-01-27 05:55:31 -05:00
|
|
|
return next()
|
|
|
|
})
|
|
|
|
})
|
2016-02-07 05:23:23 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2016-07-01 10:16:40 -04:00
|
|
|
module.exports = validatorsPod
|