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-07-18 17:17:52 +02:00
|
|
|
const waterfall = require('async/waterfall')
|
2016-03-16 22:29:27 +01:00
|
|
|
|
2016-12-11 21:50:51 +01:00
|
|
|
const db = require('../../initializers/database')
|
2016-10-21 12:16:28 +02:00
|
|
|
const logger = require('../../helpers/logger')
|
2017-01-17 21:42:47 +01:00
|
|
|
const peertubeCrypto = require('../../helpers/peertube-crypto')
|
2017-01-04 20:59:23 +01:00
|
|
|
const utils = require('../../helpers/utils')
|
2016-10-21 12:16:28 +02:00
|
|
|
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()
|
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('/',
|
2017-01-27 11:55:31 +01:00
|
|
|
podsMiddleware.setBodyHostPort, // We need to modify the host before running the validator!
|
2016-10-01 14:23:50 +02:00
|
|
|
validators.podsAdd,
|
|
|
|
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',
|
2017-01-04 20:59:23 +01:00
|
|
|
signatureValidator.signature,
|
2016-10-01 09:09:07 +02:00
|
|
|
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-12-11 21:50:51 +01:00
|
|
|
const pod = db.Pod.build(informations)
|
|
|
|
pod.save().asCallback(function (err, podCreated) {
|
2016-06-30 22:39:08 +02:00
|
|
|
// 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) {
|
2016-12-11 21:50:51 +01:00
|
|
|
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) {
|
2017-01-17 21:42:47 +01:00
|
|
|
peertubeCrypto.getMyPublicCert(function (err, cert) {
|
2016-05-13 21:34:36 +02:00
|
|
|
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-12-11 21:50:51 +01:00
|
|
|
db.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
|
|
|
|
2017-01-04 20:59:23 +01:00
|
|
|
res.json(utils.getFormatedObjects(podsList, podsList.length))
|
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-12-11 21:50:51 +01:00
|
|
|
db.Pod.loadByHost(host, callback)
|
2016-06-30 22:39:08 +02:00
|
|
|
},
|
|
|
|
|
2016-12-29 11:17:11 +01:00
|
|
|
function deletePod (pod, callback) {
|
2016-12-11 21:50:51 +01:00
|
|
|
pod.destroy().asCallback(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
|
|
|
})
|
|
|
|
}
|