2016-02-07 11:23:23 +01:00
|
|
|
'use strict'
|
2015-06-09 17:41:40 +02:00
|
|
|
|
2016-07-18 17:17:52 +02:00
|
|
|
const each = require('async/each')
|
2016-03-16 22:29:27 +01:00
|
|
|
const express = require('express')
|
2016-06-24 17:42:51 +02:00
|
|
|
const mongoose = require('mongoose')
|
2016-07-18 17:17:52 +02:00
|
|
|
const waterfall = require('async/waterfall')
|
2016-03-16 22:29:27 +01:00
|
|
|
|
|
|
|
const logger = require('../../../helpers/logger')
|
|
|
|
const friends = require('../../../lib/friends')
|
2016-05-13 16:31:14 +02:00
|
|
|
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-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()
|
2016-06-30 22:39:08 +02:00
|
|
|
const Pod = mongoose.model('Pod')
|
2016-06-24 17:42:51 +02:00
|
|
|
const Video = mongoose.model('Video')
|
2015-06-09 17:41:40 +02:00
|
|
|
|
2016-06-18 16:13:54 +02:00
|
|
|
router.get('/', listPodsUrl)
|
2016-07-01 16:16:40 +02:00
|
|
|
router.post('/', validators.podsAdd, addPods)
|
2016-08-04 22:32:36 +02:00
|
|
|
router.get('/makefriends',
|
|
|
|
oAuth.authenticate,
|
|
|
|
admin.ensureIsAdmin,
|
|
|
|
validators.makeFriends,
|
|
|
|
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-06-18 16:13:54 +02:00
|
|
|
router.post('/remove', signatureValidator, 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-06-30 22:39:08 +02:00
|
|
|
const pod = new Pod(informations)
|
|
|
|
pod.save(function (err, podCreated) {
|
|
|
|
// 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) {
|
|
|
|
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) {
|
|
|
|
friends.getMyCertificate(function (err, cert) {
|
|
|
|
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-06-18 16:13:54 +02:00
|
|
|
function listPodsUrl (req, res, next) {
|
2016-06-30 22:39:08 +02:00
|
|
|
Pod.listOnlyUrls(function (err, podsUrlList) {
|
2016-02-07 11:23:23 +01:00
|
|
|
if (err) return next(err)
|
2016-01-23 18:31:58 +01:00
|
|
|
|
2016-06-18 16:13:54 +02:00
|
|
|
res.json(podsUrlList)
|
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) {
|
|
|
|
friends.makeFriends(function (err) {
|
|
|
|
if (err) return next(err)
|
2016-01-23 18:31:58 +01:00
|
|
|
|
2016-03-14 13:50:19 +01: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-03-16 22:29:27 +01:00
|
|
|
const url = req.body.signature.url
|
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) {
|
|
|
|
Pod.loadByUrl(url, callback)
|
|
|
|
},
|
|
|
|
|
|
|
|
function removePod (pod, callback) {
|
|
|
|
pod.remove(function (err) {
|
|
|
|
// Be sure we only return one argument in the callback
|
2016-05-13 21:34:36 +02:00
|
|
|
return callback(err)
|
|
|
|
})
|
|
|
|
},
|
|
|
|
|
|
|
|
function (callback) {
|
2016-06-24 17:42:51 +02:00
|
|
|
Video.listByUrls([ url ], function (err, videosList) {
|
2016-05-13 21:34:36 +02:00
|
|
|
if (err) {
|
|
|
|
logger.error('Cannot list videos from url.', { error: err })
|
|
|
|
return callback(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return callback(null, videosList)
|
|
|
|
})
|
|
|
|
},
|
2016-02-05 19:02:05 +01:00
|
|
|
|
2016-05-13 21:34:36 +02:00
|
|
|
function removeTheRemoteVideos (videosList, callback) {
|
2016-07-18 17:17:52 +02:00
|
|
|
each(videosList, function (video, callbackEach) {
|
2016-06-24 17:42:51 +02:00
|
|
|
video.remove(callbackEach)
|
|
|
|
}, 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
|
|
|
})
|
|
|
|
}
|