Use async waterfall in pods controller for better readability
This commit is contained in:
parent
807df9e668
commit
1cad0f395f
|
@ -1,5 +1,6 @@
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
const async = require('async')
|
||||||
const express = require('express')
|
const express = require('express')
|
||||||
|
|
||||||
const logger = require('../../../helpers/logger')
|
const logger = require('../../../helpers/logger')
|
||||||
|
@ -30,29 +31,48 @@ module.exports = router
|
||||||
|
|
||||||
function addPods (req, res, next) {
|
function addPods (req, res, next) {
|
||||||
const informations = req.body.data
|
const informations = req.body.data
|
||||||
Pods.add(informations, function (err) {
|
|
||||||
if (err) return next(err)
|
|
||||||
|
|
||||||
// Create the remote videos from the new pod
|
async.waterfall([
|
||||||
videos.createRemoteVideos(informations.videos, function (err) {
|
function addPod (callback) {
|
||||||
if (err) logger.error('Cannot create remote videos.', { error: err })
|
Pods.add(informations, function (err) {
|
||||||
})
|
return callback(err)
|
||||||
|
})
|
||||||
|
},
|
||||||
|
|
||||||
friends.getMyCertificate(function (err, cert) {
|
function createVideosOfThisPod (callback) {
|
||||||
if (err) {
|
// Create the remote videos from the new pod
|
||||||
logger.error('Cannot read cert file.')
|
videos.createRemoteVideos(informations.videos, function (err) {
|
||||||
return next(err)
|
if (err) logger.error('Cannot create remote videos.', { error: err })
|
||||||
}
|
|
||||||
|
|
||||||
|
return callback(err)
|
||||||
|
})
|
||||||
|
},
|
||||||
|
|
||||||
|
function fetchMyCertificate (callback) {
|
||||||
|
friends.getMyCertificate(function (err, cert) {
|
||||||
|
if (err) {
|
||||||
|
logger.error('Cannot read cert file.')
|
||||||
|
return callback(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
return callback(null, cert)
|
||||||
|
})
|
||||||
|
},
|
||||||
|
|
||||||
|
function getListOfMyVideos (cert, callback) {
|
||||||
Videos.listOwned(function (err, videosList) {
|
Videos.listOwned(function (err, videosList) {
|
||||||
if (err) {
|
if (err) {
|
||||||
logger.error('Cannot get the list of owned videos.')
|
logger.error('Cannot get the list of owned videos.')
|
||||||
return next(err)
|
return callback(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
res.json({ cert: cert, videos: videosList })
|
return callback(null, cert, videosList)
|
||||||
})
|
})
|
||||||
})
|
}
|
||||||
|
], function (err, cert, videosList) {
|
||||||
|
if (err) return next(err)
|
||||||
|
|
||||||
|
return res.json({ cert: cert, videos: videosList })
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -74,24 +94,39 @@ function makeFriends (req, res, next) {
|
||||||
|
|
||||||
function removePods (req, res, next) {
|
function removePods (req, res, next) {
|
||||||
const url = req.body.signature.url
|
const url = req.body.signature.url
|
||||||
Pods.remove(url, function (err) {
|
|
||||||
if (err) return next(err)
|
|
||||||
|
|
||||||
Videos.listFromUrl(url, function (err, videosList) {
|
async.waterfall([
|
||||||
if (err) {
|
function (callback) {
|
||||||
logger.error('Cannot list videos from url.', { error: err })
|
Pods.remove(url, function (err) {
|
||||||
next(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)
|
||||||
|
})
|
||||||
|
},
|
||||||
|
|
||||||
|
function removeTheRemoteVideos (videosList, callback) {
|
||||||
videos.removeRemoteVideos(videosList, function (err) {
|
videos.removeRemoteVideos(videosList, function (err) {
|
||||||
if (err) {
|
if (err) {
|
||||||
logger.error('Cannot remove remote videos.', { error: err })
|
logger.error('Cannot remove remote videos.', { error: err })
|
||||||
next(err)
|
callback(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
res.type('json').status(204).end()
|
return callback(null)
|
||||||
})
|
})
|
||||||
})
|
}
|
||||||
|
], function (err) {
|
||||||
|
if (err) return next(err)
|
||||||
|
|
||||||
|
return res.type('json').status(204).end()
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue