2017-06-05 21:53:49 +02:00
|
|
|
import * as express from 'express'
|
2017-05-15 22:22:03 +02:00
|
|
|
import { waterfall } from 'async'
|
|
|
|
|
2017-05-22 20:58:25 +02:00
|
|
|
import { database as db } from '../../initializers/database'
|
2017-05-15 22:22:03 +02:00
|
|
|
import { CONFIG } from '../../initializers'
|
|
|
|
import {
|
|
|
|
logger,
|
|
|
|
getMyPublicCert,
|
|
|
|
getFormatedObjects
|
|
|
|
} from '../../helpers'
|
|
|
|
import {
|
|
|
|
sendOwnedVideosToPod,
|
|
|
|
makeFriends,
|
|
|
|
quitFriends
|
|
|
|
} from '../../lib'
|
|
|
|
import {
|
|
|
|
podsAddValidator,
|
|
|
|
authenticate,
|
|
|
|
ensureIsAdmin,
|
|
|
|
makeFriendsValidator,
|
|
|
|
setBodyHostPort,
|
|
|
|
setBodyHostsPort
|
|
|
|
} from '../../middlewares'
|
|
|
|
|
|
|
|
const podsRouter = express.Router()
|
|
|
|
|
|
|
|
podsRouter.get('/', listPods)
|
|
|
|
podsRouter.post('/',
|
|
|
|
setBodyHostPort, // We need to modify the host before running the validator!
|
|
|
|
podsAddValidator,
|
|
|
|
addPods
|
|
|
|
)
|
|
|
|
podsRouter.post('/makefriends',
|
|
|
|
authenticate,
|
|
|
|
ensureIsAdmin,
|
|
|
|
makeFriendsValidator,
|
|
|
|
setBodyHostsPort,
|
2017-05-22 20:58:25 +02:00
|
|
|
makeFriendsController
|
2017-05-15 22:22:03 +02:00
|
|
|
)
|
|
|
|
podsRouter.get('/quitfriends',
|
|
|
|
authenticate,
|
|
|
|
ensureIsAdmin,
|
2017-05-22 20:58:25 +02:00
|
|
|
quitFriendsController
|
2017-05-15 22:22:03 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
|
|
|
podsRouter
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
function addPods (req, res, next) {
|
|
|
|
const informations = req.body
|
|
|
|
|
|
|
|
waterfall([
|
|
|
|
function addPod (callback) {
|
|
|
|
const pod = db.Pod.build(informations)
|
|
|
|
pod.save().asCallback(function (err, podCreated) {
|
|
|
|
// Be sure about the number of parameters for the callback
|
|
|
|
return callback(err, podCreated)
|
|
|
|
})
|
|
|
|
},
|
|
|
|
|
|
|
|
function sendMyVideos (podCreated, callback) {
|
|
|
|
sendOwnedVideosToPod(podCreated.id)
|
|
|
|
|
|
|
|
callback(null)
|
|
|
|
},
|
|
|
|
|
|
|
|
function fetchMyCertificate (callback) {
|
|
|
|
getMyPublicCert(function (err, cert) {
|
|
|
|
if (err) {
|
|
|
|
logger.error('Cannot read cert file.')
|
|
|
|
return callback(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return callback(null, cert)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
], function (err, cert) {
|
|
|
|
if (err) return next(err)
|
|
|
|
|
|
|
|
return res.json({ cert: cert, email: CONFIG.ADMIN.EMAIL })
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
function listPods (req, res, next) {
|
|
|
|
db.Pod.list(function (err, podsList) {
|
|
|
|
if (err) return next(err)
|
|
|
|
|
|
|
|
res.json(getFormatedObjects(podsList, podsList.length))
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
function makeFriendsController (req, res, next) {
|
|
|
|
const hosts = req.body.hosts
|
|
|
|
|
|
|
|
makeFriends(hosts, function (err) {
|
|
|
|
if (err) {
|
|
|
|
logger.error('Could not make friends.', { error: err })
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
logger.info('Made friends!')
|
|
|
|
})
|
|
|
|
|
|
|
|
res.type('json').status(204).end()
|
|
|
|
}
|
|
|
|
|
|
|
|
function quitFriendsController (req, res, next) {
|
|
|
|
quitFriends(function (err) {
|
|
|
|
if (err) return next(err)
|
|
|
|
|
|
|
|
res.type('json').status(204).end()
|
|
|
|
})
|
|
|
|
}
|