2016-02-07 11:23:23 +01:00
|
|
|
'use strict'
|
2015-06-09 17:41:40 +02:00
|
|
|
|
2016-03-16 22:29:27 +01:00
|
|
|
const express = require('express')
|
2016-06-24 17:42:51 +02:00
|
|
|
const mongoose = require('mongoose')
|
2016-07-18 17:17:52 +02:00
|
|
|
const waterfall = require('async/waterfall')
|
2016-03-16 22:29:27 +01:00
|
|
|
|
2016-10-21 12:16:28 +02:00
|
|
|
const logger = require('../../helpers/logger')
|
|
|
|
const friends = require('../../lib/friends')
|
|
|
|
const middlewares = require('../../middlewares')
|
2016-08-04 22:32:36 +02:00
|
|
|
const admin = middlewares.admin
|
2016-07-01 16:03:53 +02:00
|
|
|
const oAuth = middlewares.oauth
|
2016-10-01 14:23:50 +02:00
|
|
|
const podsMiddleware = middlewares.pods
|
2016-10-01 09:09:07 +02:00
|
|
|
const checkSignature = middlewares.secure.checkSignature
|
2016-07-01 16:16:40 +02:00
|
|
|
const validators = middlewares.validators.pods
|
|
|
|
const signatureValidator = middlewares.validators.remote.signature
|
2016-03-16 22:29:27 +01:00
|
|
|
|
|
|
|
const router = express.Router()
|
2016-06-30 22:39:08 +02:00
|
|
|
const Pod = mongoose.model('Pod')
|
2015-06-09 17:41:40 +02:00
|
|
|
|
2016-08-26 18:55:10 +02:00
|
|
|
router.get('/', listPods)
|
2016-10-01 14:23:50 +02:00
|
|
|
router.post('/',
|
|
|
|
validators.podsAdd,
|
2016-11-14 20:03:04 +01:00
|
|
|
podsMiddleware.setBodyHostPort,
|
2016-10-01 14:23:50 +02:00
|
|
|
addPods
|
|
|
|
)
|
2016-08-20 16:59:25 +02:00
|
|
|
router.post('/makefriends',
|
2016-08-04 22:32:36 +02:00
|
|
|
oAuth.authenticate,
|
|
|
|
admin.ensureIsAdmin,
|
|
|
|
validators.makeFriends,
|
2016-11-14 20:03:04 +01:00
|
|
|
podsMiddleware.setBodyHostsPort,
|
2016-08-04 22:32:36 +02:00
|
|
|
makeFriends
|
|
|
|
)
|
|
|
|
router.get('/quitfriends',
|
|
|
|
oAuth.authenticate,
|
|
|
|
admin.ensureIsAdmin,
|
|
|
|
quitFriends
|
|
|
|
)
|
2016-02-07 11:23:23 +01:00
|
|
|
// Post because this is a secured request
|
2016-10-01 09:09:07 +02:00
|
|
|
router.post('/remove',
|
|
|
|
signatureValidator,
|
|
|
|
checkSignature,
|
|
|
|
removePods
|
|
|
|
)
|
2016-01-31 11:23:52 +01:00
|
|
|
|
2016-02-07 11:23:23 +01:00
|
|
|
// ---------------------------------------------------------------------------
|
2016-01-31 11:23:52 +01:00
|
|
|
|
2016-02-07 11:23:23 +01:00
|
|
|
module.exports = router
|
2016-01-31 11:23:52 +01:00
|
|
|
|
2016-02-07 11:23:23 +01:00
|
|
|
// ---------------------------------------------------------------------------
|
2015-06-09 17:41:40 +02:00
|
|
|
|
2016-02-07 11:23:23 +01:00
|
|
|
function addPods (req, res, next) {
|
2016-06-18 16:13:54 +02:00
|
|
|
const informations = req.body
|
2015-06-09 17:41:40 +02:00
|
|
|
|
2016-07-18 17:17:52 +02:00
|
|
|
waterfall([
|
2016-05-13 21:34:36 +02:00
|
|
|
function addPod (callback) {
|
2016-06-30 22:39:08 +02:00
|
|
|
const pod = new Pod(informations)
|
|
|
|
pod.save(function (err, podCreated) {
|
|
|
|
// Be sure about the number of parameters for the callback
|
|
|
|
return callback(err, podCreated)
|
|
|
|
})
|
2016-05-13 21:34:36 +02:00
|
|
|
},
|
|
|
|
|
2016-06-18 16:13:54 +02:00
|
|
|
function sendMyVideos (podCreated, callback) {
|
|
|
|
friends.sendOwnedVideosToPod(podCreated._id)
|
2016-05-13 21:34:36 +02:00
|
|
|
|
2016-06-18 16:13:54 +02:00
|
|
|
callback(null)
|
2016-05-13 21:34:36 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
function fetchMyCertificate (callback) {
|
|
|
|
friends.getMyCertificate(function (err, cert) {
|
|
|
|
if (err) {
|
|
|
|
logger.error('Cannot read cert file.')
|
|
|
|
return callback(err)
|
|
|
|
}
|
2016-02-04 21:10:33 +01:00
|
|
|
|
2016-05-13 21:34:36 +02:00
|
|
|
return callback(null, cert)
|
|
|
|
})
|
|
|
|
}
|
2016-06-18 16:13:54 +02:00
|
|
|
], function (err, cert) {
|
2016-05-13 21:34:36 +02:00
|
|
|
if (err) return next(err)
|
|
|
|
|
2016-06-18 16:13:54 +02:00
|
|
|
return res.json({ cert: cert })
|
2016-02-07 11:23:23 +01:00
|
|
|
})
|
|
|
|
}
|
2015-06-09 17:41:40 +02:00
|
|
|
|
2016-08-26 18:55:10 +02:00
|
|
|
function listPods (req, res, next) {
|
2016-11-14 20:03:04 +01:00
|
|
|
Pod.list(function (err, podsList) {
|
2016-02-07 11:23:23 +01:00
|
|
|
if (err) return next(err)
|
2016-01-23 18:31:58 +01:00
|
|
|
|
2016-11-14 20:03:04 +01:00
|
|
|
res.json(getFormatedPods(podsList))
|
2016-02-07 11:23:23 +01:00
|
|
|
})
|
|
|
|
}
|
2016-01-23 18:31:58 +01:00
|
|
|
|
2016-02-07 11:23:23 +01:00
|
|
|
function makeFriends (req, res, next) {
|
2016-11-14 20:03:04 +01:00
|
|
|
const hosts = req.body.hosts
|
2016-08-20 16:59:25 +02:00
|
|
|
|
2016-11-14 20:03:04 +01:00
|
|
|
friends.makeFriends(hosts, function (err) {
|
2016-08-23 14:48:59 +02:00
|
|
|
if (err) {
|
|
|
|
logger.error('Could not make friends.', { error: err })
|
|
|
|
return
|
|
|
|
}
|
2016-01-23 18:31:58 +01:00
|
|
|
|
2016-08-23 14:48:59 +02:00
|
|
|
logger.info('Made friends!')
|
2016-02-07 11:23:23 +01:00
|
|
|
})
|
2016-08-23 14:48:59 +02:00
|
|
|
|
|
|
|
res.type('json').status(204).end()
|
2016-02-07 11:23:23 +01:00
|
|
|
}
|
2016-01-23 18:31:58 +01:00
|
|
|
|
2016-02-07 11:23:23 +01:00
|
|
|
function removePods (req, res, next) {
|
2016-11-14 20:03:04 +01:00
|
|
|
const host = req.body.signature.host
|
2015-06-09 17:41:40 +02:00
|
|
|
|
2016-07-18 17:17:52 +02:00
|
|
|
waterfall([
|
2016-06-30 22:39:08 +02:00
|
|
|
function loadPod (callback) {
|
2016-11-14 20:03:04 +01:00
|
|
|
Pod.loadByHost(host, callback)
|
2016-06-30 22:39:08 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
function removePod (pod, callback) {
|
2016-10-21 11:20:45 +02:00
|
|
|
pod.remove(callback)
|
2016-05-13 21:34:36 +02:00
|
|
|
}
|
|
|
|
], function (err) {
|
|
|
|
if (err) return next(err)
|
|
|
|
|
|
|
|
return res.type('json').status(204).end()
|
2016-02-07 11:23:23 +01:00
|
|
|
})
|
|
|
|
}
|
2015-06-09 17:41:40 +02:00
|
|
|
|
2016-02-07 11:23:23 +01:00
|
|
|
function quitFriends (req, res, next) {
|
|
|
|
friends.quitFriends(function (err) {
|
|
|
|
if (err) return next(err)
|
2015-06-09 17:41:40 +02:00
|
|
|
|
2016-03-14 13:50:19 +01:00
|
|
|
res.type('json').status(204).end()
|
2016-02-07 11:23:23 +01:00
|
|
|
})
|
|
|
|
}
|
2016-08-26 18:55:10 +02:00
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
function getFormatedPods (pods) {
|
|
|
|
const formatedPods = []
|
|
|
|
|
|
|
|
pods.forEach(function (pod) {
|
|
|
|
formatedPods.push(pod.toFormatedJSON())
|
|
|
|
})
|
|
|
|
|
|
|
|
return formatedPods
|
|
|
|
}
|