PeerTube/server/controllers/api/pods.js

134 lines
3.1 KiB
JavaScript
Raw Normal View History

'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')
const logger = require('../../helpers/logger')
2017-01-04 20:59:23 +01:00
const utils = require('../../helpers/utils')
const friends = require('../../lib/friends')
const middlewares = require('../../middlewares')
const admin = middlewares.admin
const oAuth = middlewares.oauth
const podsMiddleware = middlewares.pods
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
router.get('/', listPods)
router.post('/',
validators.podsAdd,
podsMiddleware.setBodyHostPort,
addPods
)
router.post('/makefriends',
oAuth.authenticate,
admin.ensureIsAdmin,
validators.makeFriends,
podsMiddleware.setBodyHostsPort,
makeFriends
)
router.get('/quitfriends',
oAuth.authenticate,
admin.ensureIsAdmin,
quitFriends
)
// Post because this is a secured request
router.post('/remove',
2017-01-04 20:59:23 +01:00
signatureValidator.signature,
checkSignature,
removePods
)
2016-01-31 11:23:52 +01:00
// ---------------------------------------------------------------------------
2016-01-31 11:23:52 +01:00
module.exports = router
2016-01-31 11:23:52 +01:00
// ---------------------------------------------------------------------------
2015-06-09 17:41:40 +02:00
function addPods (req, res, next) {
const informations = req.body
2015-06-09 17:41:40 +02:00
2016-07-18 17:17:52 +02:00
waterfall([
function addPod (callback) {
2016-12-11 21:50:51 +01:00
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) {
2016-12-11 21:50:51 +01:00
friends.sendOwnedVideosToPod(podCreated.id)
callback(null)
},
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
return callback(null, cert)
})
}
], function (err, cert) {
if (err) return next(err)
return res.json({ cert: cert })
})
}
2015-06-09 17:41:40 +02:00
function listPods (req, res, next) {
2016-12-11 21:50:51 +01:00
db.Pod.list(function (err, podsList) {
if (err) return next(err)
2017-01-04 20:59:23 +01:00
res.json(utils.getFormatedObjects(podsList, podsList.length))
})
}
function makeFriends (req, res, next) {
const hosts = req.body.hosts
friends.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 removePods (req, res, next) {
const host = req.body.signature.host
2015-06-09 17:41:40 +02:00
2016-07-18 17:17:52 +02:00
waterfall([
function loadPod (callback) {
2016-12-11 21:50:51 +01:00
db.Pod.loadByHost(host, callback)
},
function deletePod (pod, callback) {
2016-12-11 21:50:51 +01:00
pod.destroy().asCallback(callback)
}
], function (err) {
if (err) return next(err)
return res.type('json').status(204).end()
})
}
2015-06-09 17:41:40 +02: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()
})
}