2016-06-18 16:13:54 +02:00
|
|
|
'use strict'
|
|
|
|
|
2016-07-18 17:17:52 +02:00
|
|
|
const each = require('async/each')
|
|
|
|
const eachSeries = require('async/eachSeries')
|
2016-06-18 16:13:54 +02:00
|
|
|
const express = require('express')
|
2016-12-11 21:50:51 +01:00
|
|
|
const waterfall = require('async/waterfall')
|
2016-06-18 16:13:54 +02:00
|
|
|
|
2016-12-11 21:50:51 +01:00
|
|
|
const db = require('../../initializers/database')
|
2016-10-21 12:16:28 +02:00
|
|
|
const middlewares = require('../../middlewares')
|
2016-06-18 16:13:54 +02:00
|
|
|
const secureMiddleware = middlewares.secure
|
2016-07-01 16:16:40 +02:00
|
|
|
const validators = middlewares.validators.remote
|
2016-10-21 12:16:28 +02:00
|
|
|
const logger = require('../../helpers/logger')
|
2016-06-18 16:13:54 +02:00
|
|
|
|
|
|
|
const router = express.Router()
|
|
|
|
|
|
|
|
router.post('/videos',
|
2016-07-01 16:16:40 +02:00
|
|
|
validators.signature,
|
2016-10-01 09:09:07 +02:00
|
|
|
secureMiddleware.checkSignature,
|
2016-07-01 16:16:40 +02:00
|
|
|
validators.remoteVideos,
|
2016-06-18 16:13:54 +02:00
|
|
|
remoteVideos
|
|
|
|
)
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
module.exports = router
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
function remoteVideos (req, res, next) {
|
|
|
|
const requests = req.body.data
|
2016-11-14 20:03:04 +01:00
|
|
|
const fromHost = req.body.signature.host
|
2016-06-18 16:13:54 +02:00
|
|
|
|
|
|
|
// 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) {
|
2016-06-24 17:42:51 +02:00
|
|
|
const videoData = request.data
|
2016-06-18 16:13:54 +02:00
|
|
|
|
|
|
|
if (request.type === 'add') {
|
2016-11-27 11:09:05 +01:00
|
|
|
addRemoteVideo(videoData, fromHost, callbackEach)
|
2016-06-18 16:13:54 +02:00
|
|
|
} else if (request.type === 'remove') {
|
2016-11-14 20:03:04 +01:00
|
|
|
removeRemoteVideo(videoData, fromHost, callbackEach)
|
2016-07-05 21:36:01 +02:00
|
|
|
} else {
|
|
|
|
logger.error('Unkown remote request type %s.', request.type)
|
2016-06-18 16:13:54 +02:00
|
|
|
}
|
2016-06-24 17:42:51 +02:00
|
|
|
}, function (err) {
|
|
|
|
if (err) logger.error('Error managing remote videos.', { error: err })
|
2016-06-18 16:13:54 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
// We don't need to keep the other pod waiting
|
|
|
|
return res.type('json').status(204).end()
|
|
|
|
}
|
|
|
|
|
2016-12-24 16:59:17 +01:00
|
|
|
function addRemoteVideo (videoToCreateData, fromHost, finalCallback) {
|
2016-11-22 22:41:50 +01:00
|
|
|
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)
|
|
|
|
})
|
|
|
|
},
|
|
|
|
|
|
|
|
function findOrCreatePod (t, callback) {
|
2016-12-11 21:50:51 +01:00
|
|
|
const query = {
|
|
|
|
where: {
|
|
|
|
host: fromHost
|
|
|
|
},
|
|
|
|
defaults: {
|
|
|
|
host: fromHost
|
2016-12-24 16:59:17 +01:00
|
|
|
},
|
|
|
|
transaction: t
|
2016-12-11 21:50:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
db.Pod.findOrCreate(query).asCallback(function (err, result) {
|
|
|
|
// [ instance, wasCreated ]
|
2016-12-24 16:59:17 +01:00
|
|
|
return callback(err, t, result[0])
|
2016-12-11 21:50:51 +01:00
|
|
|
})
|
|
|
|
},
|
|
|
|
|
2016-12-24 16:59:17 +01:00
|
|
|
function findOrCreateAuthor (t, pod, callback) {
|
2016-12-11 21:50:51 +01:00
|
|
|
const username = videoToCreateData.author
|
|
|
|
|
|
|
|
const query = {
|
|
|
|
where: {
|
|
|
|
name: username,
|
|
|
|
podId: pod.id
|
|
|
|
},
|
|
|
|
defaults: {
|
|
|
|
name: username,
|
|
|
|
podId: pod.id
|
2016-12-24 16:59:17 +01:00
|
|
|
},
|
|
|
|
transaction: t
|
2016-12-11 21:50:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
db.Author.findOrCreate(query).asCallback(function (err, result) {
|
|
|
|
// [ instance, wasCreated ]
|
2016-12-24 16:59:17 +01:00
|
|
|
return callback(err, t, result[0])
|
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
|
|
|
|
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 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,
|
2016-12-25 12:06:08 +01:00
|
|
|
duration: videoToCreateData.duration,
|
|
|
|
createdAt: videoToCreateData.createdAt
|
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) {
|
2016-12-11 21:50:51 +01: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 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()
|
|
|
|
})
|
2016-06-18 16:13:54 +02:00
|
|
|
}
|
|
|
|
|
2016-11-14 20:03:04 +01:00
|
|
|
function removeRemoteVideo (videoToRemoveData, fromHost, callback) {
|
2016-12-11 21:50:51 +01:00
|
|
|
// TODO: use bulkDestroy?
|
|
|
|
|
2016-06-18 16:13:54 +02:00
|
|
|
// We need the list because we have to remove some other stuffs (thumbnail etc)
|
2016-12-11 21:50:51 +01:00
|
|
|
db.Video.listByHostAndRemoteId(fromHost, videoToRemoveData.remoteId, function (err, videosList) {
|
2016-06-18 16:13:54 +02:00
|
|
|
if (err) {
|
2016-12-11 21:50:51 +01:00
|
|
|
logger.error('Cannot list videos from host and remote id.', { error: err.message })
|
2016-06-24 17:42:51 +02:00
|
|
|
return callback(err)
|
2016-06-18 16:13:54 +02:00
|
|
|
}
|
|
|
|
|
2016-07-05 21:36:01 +02:00
|
|
|
if (videosList.length === 0) {
|
2016-12-11 21:50:51 +01:00
|
|
|
logger.error('No remote video was found for this pod.', { remoteId: videoToRemoveData.remoteId, podHost: fromHost })
|
2016-07-05 21:36:01 +02:00
|
|
|
}
|
|
|
|
|
2016-07-18 17:17:52 +02:00
|
|
|
each(videosList, function (video, callbackEach) {
|
2016-12-11 21:50:51 +01:00
|
|
|
logger.debug('Removing remote video %s.', video.remoteId)
|
2016-07-05 21:36:01 +02:00
|
|
|
|
2016-12-11 21:50:51 +01:00
|
|
|
video.destroy().asCallback(callbackEach)
|
2016-06-24 17:42:51 +02:00
|
|
|
}, callback)
|
2016-06-18 16:13:54 +02:00
|
|
|
})
|
|
|
|
}
|