PeerTube/server/controllers/api/remote.js

216 lines
5.8 KiB
JavaScript
Raw Normal View History

'use strict'
2016-07-18 15:17:52 +00:00
const each = require('async/each')
const eachSeries = require('async/eachSeries')
const express = require('express')
2016-12-11 20:50:51 +00:00
const waterfall = require('async/waterfall')
2016-12-11 20:50:51 +00:00
const db = require('../../initializers/database')
const middlewares = require('../../middlewares')
const secureMiddleware = middlewares.secure
2016-07-01 14:16:40 +00:00
const validators = middlewares.validators.remote
const logger = require('../../helpers/logger')
const router = express.Router()
router.post('/videos',
2016-07-01 14:16:40 +00:00
validators.signature,
secureMiddleware.checkSignature,
2016-07-01 14:16:40 +00:00
validators.remoteVideos,
remoteVideos
)
// ---------------------------------------------------------------------------
module.exports = router
// ---------------------------------------------------------------------------
function remoteVideos (req, res, next) {
const requests = req.body.data
const fromHost = req.body.signature.host
// We need to process in the same order to keep consistency
// TODO: optimization
2016-07-18 15:17:52 +00:00
eachSeries(requests, function (request, callbackEach) {
const videoData = request.data
if (request.type === 'add') {
addRemoteVideo(videoData, fromHost, callbackEach)
} else if (request.type === 'remove') {
removeRemoteVideo(videoData, fromHost, callbackEach)
2016-07-05 19:36:01 +00:00
} else {
logger.error('Unkown remote request type %s.', request.type)
}
}, function (err) {
if (err) logger.error('Error managing remote videos.', { error: err })
})
// We don't need to keep the other pod waiting
return res.type('json').status(204).end()
}
2016-12-24 15:59:17 +00:00
function addRemoteVideo (videoToCreateData, fromHost, finalCallback) {
logger.debug('Adding remote video "%s".', videoToCreateData.name)
2016-07-05 19:36:01 +00:00
2016-12-11 20:50:51 +00:00
waterfall([
2016-12-24 15:59:17 +00:00
function startTransaction (callback) {
db.sequelize.transaction().asCallback(function (err, t) {
return callback(err, t)
})
},
function findOrCreatePod (t, callback) {
2016-12-11 20:50:51 +00:00
const query = {
where: {
host: fromHost
},
defaults: {
host: fromHost
2016-12-24 15:59:17 +00:00
},
transaction: t
2016-12-11 20:50:51 +00:00
}
db.Pod.findOrCreate(query).asCallback(function (err, result) {
// [ instance, wasCreated ]
2016-12-24 15:59:17 +00:00
return callback(err, t, result[0])
2016-12-11 20:50:51 +00:00
})
},
2016-12-24 15:59:17 +00:00
function findOrCreateAuthor (t, pod, callback) {
2016-12-11 20:50:51 +00:00
const username = videoToCreateData.author
const query = {
where: {
name: username,
podId: pod.id,
userId: null
2016-12-11 20:50:51 +00:00
},
defaults: {
name: username,
podId: pod.id,
userId: null
2016-12-24 15:59:17 +00:00
},
transaction: t
2016-12-11 20:50:51 +00:00
}
db.Author.findOrCreate(query).asCallback(function (err, result) {
// [ instance, wasCreated ]
2016-12-24 15:59:17 +00:00
return callback(err, t, result[0])
2016-12-11 20:50:51 +00:00
})
},
2016-12-24 15:59:17 +00:00
function findOrCreateTags (t, author, callback) {
const tags = videoToCreateData.tags
const tagInstances = []
each(tags, function (tag, callbackEach) {
const query = {
where: {
name: tag
},
defaults: {
name: tag
},
transaction: t
}
db.Tag.findOrCreate(query).asCallback(function (err, res) {
if (err) return callbackEach(err)
// res = [ tag, isCreated ]
const tag = res[0]
tagInstances.push(tag)
return callbackEach()
})
}, function (err) {
return callback(err, t, author, tagInstances)
})
},
function createVideoObject (t, author, tagInstances, callback) {
2016-12-11 20:50:51 +00:00
const videoData = {
name: videoToCreateData.name,
remoteId: videoToCreateData.remoteId,
extname: videoToCreateData.extname,
infoHash: videoToCreateData.infoHash,
description: videoToCreateData.description,
authorId: author.id,
duration: videoToCreateData.duration,
createdAt: videoToCreateData.createdAt
2016-12-11 20:50:51 +00:00
}
const video = db.Video.build(videoData)
2016-12-24 15:59:17 +00:00
return callback(null, t, tagInstances, video)
2016-12-11 20:50:51 +00:00
},
2016-12-24 15:59:17 +00:00
function generateThumbnail (t, tagInstances, video, callback) {
2016-12-11 20:50:51 +00:00
db.Video.generateThumbnailFromBase64(video, videoToCreateData.thumbnailBase64, function (err) {
if (err) {
logger.error('Cannot generate thumbnail from base 64 data.', { error: err })
return callback(err)
}
2016-12-24 15:59:17 +00:00
return callback(err, t, tagInstances, video)
2016-12-11 20:50:51 +00:00
})
},
2016-12-24 15:59:17 +00:00
function insertVideoIntoDB (t, tagInstances, video, callback) {
const options = {
transaction: t
}
video.save(options).asCallback(function (err, videoCreated) {
return callback(err, t, tagInstances, videoCreated)
})
},
function associateTagsToVideo (t, tagInstances, video, callback) {
const options = { transaction: t }
video.setTags(tagInstances, options).asCallback(function (err) {
return callback(err, t)
})
2016-11-16 20:16:41 +00:00
}
2016-12-24 15:59:17 +00:00
], function (err, t) {
if (err) {
logger.error('Cannot insert the remote video.')
// Abort transaction?
if (t) t.rollback()
return finalCallback(err)
}
// Commit transaction
t.commit()
return finalCallback()
})
}
function removeRemoteVideo (videoToRemoveData, fromHost, callback) {
2016-12-11 20:50:51 +00:00
// TODO: use bulkDestroy?
// We need the list because we have to remove some other stuffs (thumbnail etc)
2016-12-11 20:50:51 +00:00
db.Video.listByHostAndRemoteId(fromHost, videoToRemoveData.remoteId, function (err, videosList) {
if (err) {
2016-12-11 20:50:51 +00:00
logger.error('Cannot list videos from host and remote id.', { error: err.message })
return callback(err)
}
2016-07-05 19:36:01 +00:00
if (videosList.length === 0) {
2016-12-11 20:50:51 +00:00
logger.error('No remote video was found for this pod.', { remoteId: videoToRemoveData.remoteId, podHost: fromHost })
2016-07-05 19:36:01 +00:00
}
2016-07-18 15:17:52 +00:00
each(videosList, function (video, callbackEach) {
2016-12-11 20:50:51 +00:00
logger.debug('Removing remote video %s.', video.remoteId)
2016-07-05 19:36:01 +00:00
2016-12-11 20:50:51 +00:00
video.destroy().asCallback(callbackEach)
}, callback)
})
}