PeerTube/server/controllers/api/v1/pods.js

123 lines
3.0 KiB
JavaScript
Raw Normal View History

'use strict'
2015-06-09 10:41:40 -05:00
const async = require('async')
2016-03-16 16:29:27 -05:00
const express = require('express')
const logger = require('../../../helpers/logger')
const friends = require('../../../lib/friends')
const middlewares = require('../../../middlewares')
2016-03-16 16:29:27 -05:00
const Pods = require('../../../models/pods')
const oAuth2 = middlewares.oauth2
const reqValidator = middlewares.reqValidators.pods
const signatureValidator = middlewares.reqValidators.remote.signature
const videos = require('../../../lib/videos')
2016-03-16 16:29:27 -05:00
const Videos = require('../../../models/videos')
const router = express.Router()
2015-06-09 10:41:40 -05:00
router.get('/', listPodsUrl)
2016-05-13 09:13:00 -05:00
router.post('/', reqValidator.podsAdd, addPods)
router.get('/makefriends', oAuth2.authenticate, reqValidator.makeFriends, makeFriends)
router.get('/quitfriends', oAuth2.authenticate, quitFriends)
// Post because this is a secured request
router.post('/remove', signatureValidator, removePods)
2016-01-31 04:23:52 -06:00
// ---------------------------------------------------------------------------
2016-01-31 04:23:52 -06:00
module.exports = router
2016-01-31 04:23:52 -06:00
// ---------------------------------------------------------------------------
2015-06-09 10:41:40 -05:00
function addPods (req, res, next) {
const informations = req.body
2015-06-09 10:41:40 -05:00
async.waterfall([
function addPod (callback) {
Pods.add(informations, callback)
},
function sendMyVideos (podCreated, callback) {
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 14:10:33 -06:00
return callback(null, cert)
})
}
], function (err, cert) {
if (err) return next(err)
return res.json({ cert: cert })
})
}
2015-06-09 10:41:40 -05:00
function listPodsUrl (req, res, next) {
Pods.listAllUrls(function (err, podsUrlList) {
if (err) return next(err)
res.json(podsUrlList)
})
}
function makeFriends (req, res, next) {
friends.makeFriends(function (err) {
if (err) return next(err)
2016-03-14 07:50:19 -05:00
res.type('json').status(204).end()
})
}
function removePods (req, res, next) {
2016-03-16 16:29:27 -05:00
const url = req.body.signature.url
2015-06-09 10:41:40 -05:00
async.waterfall([
function (callback) {
Pods.remove(url, function (err) {
return callback(err)
})
},
function (callback) {
Videos.listFromUrl(url, function (err, videosList) {
if (err) {
logger.error('Cannot list videos from url.', { error: err })
return callback(err)
}
return callback(null, videosList)
})
},
2016-02-05 12:02:05 -06:00
function removeTheRemoteVideos (videosList, callback) {
videos.removeRemoteVideos(videosList, function (err) {
if (err) {
logger.error('Cannot remove remote videos.', { error: err })
2016-05-19 13:28:17 -05:00
return callback(err)
}
return callback(null)
})
}
], function (err) {
if (err) return next(err)
return res.type('json').status(204).end()
})
}
2015-06-09 10:41:40 -05: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()
})
}