2016-02-07 11:23:23 +01:00
|
|
|
'use strict'
|
2015-06-09 17:41:40 +02:00
|
|
|
|
2016-05-13 21:34:36 +02:00
|
|
|
const async = require('async')
|
2016-03-16 22:29:27 +01:00
|
|
|
const express = require('express')
|
|
|
|
|
|
|
|
const logger = require('../../../helpers/logger')
|
|
|
|
const friends = require('../../../lib/friends')
|
2016-05-13 16:31:14 +02:00
|
|
|
const middlewares = require('../../../middlewares')
|
2016-03-16 22:29:27 +01:00
|
|
|
const Pods = require('../../../models/pods')
|
2016-05-13 16:31:14 +02:00
|
|
|
const oAuth2 = middlewares.oauth2
|
|
|
|
const reqValidator = middlewares.reqValidators.pods
|
2016-06-18 16:13:54 +02:00
|
|
|
const signatureValidator = middlewares.reqValidators.remote.signature
|
2016-05-10 21:19:24 +02:00
|
|
|
const videos = require('../../../lib/videos')
|
2016-03-16 22:29:27 +01:00
|
|
|
const Videos = require('../../../models/videos')
|
|
|
|
|
|
|
|
const router = express.Router()
|
2015-06-09 17:41:40 +02:00
|
|
|
|
2016-06-18 16:13:54 +02:00
|
|
|
router.get('/', listPodsUrl)
|
2016-05-13 16:13:00 +02:00
|
|
|
router.post('/', reqValidator.podsAdd, addPods)
|
2016-05-13 16:31:14 +02:00
|
|
|
router.get('/makefriends', oAuth2.authenticate, reqValidator.makeFriends, makeFriends)
|
|
|
|
router.get('/quitfriends', oAuth2.authenticate, 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-05-13 21:34:36 +02:00
|
|
|
async.waterfall([
|
|
|
|
function addPod (callback) {
|
2016-06-18 16:13:54 +02:00
|
|
|
Pods.add(informations, callback)
|
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) {
|
|
|
|
Pods.listAllUrls(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-05-13 21:34:36 +02: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 19:02:05 +01:00
|
|
|
|
2016-05-13 21:34:36 +02:00
|
|
|
function removeTheRemoteVideos (videosList, callback) {
|
2016-05-11 21:19:34 +02:00
|
|
|
videos.removeRemoteVideos(videosList, function (err) {
|
2016-05-10 21:19:24 +02:00
|
|
|
if (err) {
|
|
|
|
logger.error('Cannot remove remote videos.', { error: err })
|
2016-05-19 20:28:17 +02:00
|
|
|
return callback(err)
|
2016-05-10 21:19:24 +02:00
|
|
|
}
|
|
|
|
|
2016-05-13 21:34:36 +02:00
|
|
|
return callback(null)
|
2016-05-10 21:19:24 +02:00
|
|
|
})
|
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
|
|
|
})
|
|
|
|
}
|