2016-02-07 11:23:23 +01:00
|
|
|
'use strict'
|
|
|
|
|
2016-03-16 22:29:27 +01:00
|
|
|
const checkErrors = require('./utils').checkErrors
|
2016-11-16 20:22:17 +01:00
|
|
|
const constants = require('../../initializers/constants')
|
2016-03-16 22:29:27 +01:00
|
|
|
const friends = require('../../lib/friends')
|
|
|
|
const logger = require('../../helpers/logger')
|
2016-11-16 20:22:17 +01:00
|
|
|
const utils = require('../../helpers/utils')
|
2016-02-07 11:23:23 +01:00
|
|
|
|
2016-07-01 16:16:40 +02:00
|
|
|
const validatorsPod = {
|
2016-10-02 12:19:02 +02:00
|
|
|
makeFriends,
|
|
|
|
podsAdd
|
2016-02-07 11:23:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function makeFriends (req, res, next) {
|
2016-11-16 20:22:17 +01: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 20:03:04 +01:00
|
|
|
req.checkBody('hosts', 'Should have an array of unique hosts').isEachUniqueHostValid()
|
2016-08-20 16:59:25 +02:00
|
|
|
|
|
|
|
logger.debug('Checking makeFriends parameters', { parameters: req.body })
|
|
|
|
|
2016-08-21 10:08:40 +02: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
|
|
|
|
res.sendStatus(409)
|
|
|
|
} else {
|
|
|
|
return next()
|
|
|
|
}
|
|
|
|
})
|
2016-02-07 11:23:23 +01:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
function podsAdd (req, res, next) {
|
2016-11-14 20:03:04 +01:00
|
|
|
req.checkBody('host', 'Should have an host').notEmpty().isURL()
|
2016-06-18 16:13:54 +02:00
|
|
|
req.checkBody('publicKey', 'Should have a public key').notEmpty()
|
|
|
|
|
|
|
|
// TODO: check we don't have it already
|
2016-02-07 11:23:23 +01:00
|
|
|
|
|
|
|
logger.debug('Checking podsAdd parameters', { parameters: req.body })
|
|
|
|
|
|
|
|
checkErrors(req, res, next)
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2016-07-01 16:16:40 +02:00
|
|
|
module.exports = validatorsPod
|