PeerTube/server/controllers/api/remote/videos.js

238 lines
6.9 KiB
JavaScript
Raw Normal View History

'use strict'
2016-07-18 17:17:52 +02:00
const eachSeries = require('async/eachSeries')
const express = require('express')
2016-12-11 21:50:51 +01:00
const waterfall = require('async/waterfall')
const db = require('../../../initializers/database')
const middlewares = require('../../../middlewares')
const secureMiddleware = middlewares.secure
2016-07-01 16:16:40 +02:00
const validators = middlewares.validators.remote
const logger = require('../../../helpers/logger')
const router = express.Router()
router.post('/',
2016-07-01 16:16:40 +02:00
validators.signature,
secureMiddleware.checkSignature,
2016-07-01 16:16:40 +02:00
validators.remoteVideos,
remoteVideos
)
// ---------------------------------------------------------------------------
module.exports = router
// ---------------------------------------------------------------------------
function remoteVideos (req, res, next) {
const requests = req.body.data
2016-12-29 18:02:03 +01:00
const fromPod = res.locals.secure.pod
// We need to process in the same order to keep consistency
// TODO: optimization
2016-07-18 17:17:52 +02:00
eachSeries(requests, function (request, callbackEach) {
const videoData = request.data
switch (request.type) {
case 'add':
addRemoteVideo(videoData, fromPod, callbackEach)
break
case 'update':
updateRemoteVideo(videoData, fromPod, callbackEach)
break
case 'remove':
removeRemoteVideo(videoData, fromPod, callbackEach)
break
default:
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-29 18:02:03 +01:00
function addRemoteVideo (videoToCreateData, fromPod, finalCallback) {
logger.debug('Adding remote video "%s".', videoToCreateData.name)
2016-07-05 21:36:01 +02:00
2016-12-11 21:50:51 +01:00
waterfall([
2016-12-24 16:59:17 +01:00
function startTransaction (callback) {
db.sequelize.transaction().asCallback(function (err, t) {
return callback(err, t)
})
},
2016-12-29 18:02:03 +01:00
function findOrCreateAuthor (t, callback) {
const name = videoToCreateData.author
const podId = fromPod.id
// This author is from another pod so we do not associate a user
const userId = null
2016-12-11 21:50:51 +01:00
2016-12-29 18:02:03 +01:00
db.Author.findOrCreateAuthor(name, podId, userId, t, function (err, authorInstance) {
return callback(err, t, authorInstance)
2016-12-11 21:50:51 +01:00
})
},
2016-12-24 16:59:17 +01:00
function findOrCreateTags (t, author, callback) {
const tags = videoToCreateData.tags
2016-12-29 18:02:03 +01:00
db.Tag.findOrCreateTags(tags, t, function (err, tagInstances) {
2016-12-24 16:59:17 +01:00
return callback(err, t, author, tagInstances)
})
},
function createVideoObject (t, author, tagInstances, callback) {
2016-12-11 21:50:51 +01: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,
updatedAt: videoToCreateData.updatedAt
2016-12-11 21:50:51 +01:00
}
const video = db.Video.build(videoData)
2016-12-24 16:59:17 +01:00
return callback(null, t, tagInstances, video)
2016-12-11 21:50:51 +01:00
},
2016-12-24 16:59:17 +01:00
function generateThumbnail (t, tagInstances, video, callback) {
db.Video.generateThumbnailFromData(video, videoToCreateData.thumbnailData, function (err) {
2016-12-11 21:50:51 +01:00
if (err) {
logger.error('Cannot generate thumbnail from data.', { error: err })
2016-12-11 21:50:51 +01:00
return callback(err)
}
2016-12-24 16:59:17 +01:00
return callback(err, t, tagInstances, video)
2016-12-11 21:50:51 +01:00
})
},
2016-12-24 16:59:17 +01: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 21:16:41 +01:00
}
2016-12-24 16:59:17 +01: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 updateRemoteVideo (videoAttributesToUpdate, fromPod, finalCallback) {
logger.debug('Updating remote video "%s".', videoAttributesToUpdate.name)
2016-12-11 21:50:51 +01:00
waterfall([
function startTransaction (callback) {
db.sequelize.transaction().asCallback(function (err, t) {
return callback(err, t)
})
},
function findVideo (t, callback) {
db.Video.loadByHostAndRemoteId(fromPod.host, videoAttributesToUpdate.remoteId, function (err, videoInstance) {
if (err || !videoInstance) {
logger.error('Cannot load video from host and remote id.', { error: err.message })
return callback(err)
}
return callback(null, t, videoInstance)
})
},
function findOrCreateTags (t, videoInstance, callback) {
const tags = videoAttributesToUpdate.tags
db.Tag.findOrCreateTags(tags, t, function (err, tagInstances) {
return callback(err, t, videoInstance, tagInstances)
})
},
function updateVideoIntoDB (t, videoInstance, tagInstances, callback) {
const options = { transaction: t }
videoInstance.set('name', videoAttributesToUpdate.name)
videoInstance.set('description', videoAttributesToUpdate.description)
videoInstance.set('infoHash', videoAttributesToUpdate.infoHash)
videoInstance.set('duration', videoAttributesToUpdate.duration)
videoInstance.set('createdAt', videoAttributesToUpdate.createdAt)
videoInstance.set('updatedAt', videoAttributesToUpdate.updatedAt)
videoInstance.set('extname', videoAttributesToUpdate.extname)
videoInstance.save(options).asCallback(function (err) {
return callback(err, t, videoInstance, tagInstances)
})
},
function associateTagsToVideo (t, videoInstance, tagInstances, callback) {
const options = { transaction: t }
videoInstance.setTags(tagInstances, options).asCallback(function (err) {
return callback(err, t)
})
}
], function (err, t) {
if (err) {
logger.error('Cannot update the remote video.')
// Abort transaction?
if (t) t.rollback()
return finalCallback(err)
2016-07-05 21:36:01 +02:00
}
// Commit transaction
t.commit()
return finalCallback()
})
}
function removeRemoteVideo (videoToRemoveData, fromPod, callback) {
// We need the instance because we have to remove some other stuffs (thumbnail etc)
db.Video.loadByHostAndRemoteId(fromPod.host, videoToRemoveData.remoteId, function (err, video) {
if (err || !video) {
logger.error('Cannot load video from host and remote id.', { error: err.message })
return callback(err)
}
2016-07-05 21:36:01 +02:00
logger.debug('Removing remote video %s.', video.remoteId)
video.destroy().asCallback(callback)
})
}