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