2016-06-18 10:13:54 -04:00
|
|
|
'use strict'
|
|
|
|
|
2016-07-18 11:17:52 -04:00
|
|
|
const eachSeries = require('async/eachSeries')
|
2016-06-18 10:13:54 -04:00
|
|
|
const express = require('express')
|
2016-12-11 15:50:51 -05:00
|
|
|
const waterfall = require('async/waterfall')
|
2016-06-18 10:13:54 -04:00
|
|
|
|
2016-12-30 06:53:41 -05:00
|
|
|
const db = require('../../../initializers/database')
|
|
|
|
const middlewares = require('../../../middlewares')
|
2016-06-18 10:13:54 -04:00
|
|
|
const secureMiddleware = middlewares.secure
|
2017-01-04 14:59:23 -05:00
|
|
|
const videosValidators = middlewares.validators.remote.videos
|
|
|
|
const signatureValidators = middlewares.validators.remote.signature
|
2016-12-30 06:53:41 -05:00
|
|
|
const logger = require('../../../helpers/logger')
|
2017-01-06 17:24:47 -05:00
|
|
|
const utils = require('../../../helpers/utils')
|
2016-06-18 10:13:54 -04:00
|
|
|
|
|
|
|
const router = express.Router()
|
|
|
|
|
2016-12-30 06:53:41 -05:00
|
|
|
router.post('/',
|
2017-01-04 14:59:23 -05:00
|
|
|
signatureValidators.signature,
|
2016-10-01 03:09:07 -04:00
|
|
|
secureMiddleware.checkSignature,
|
2017-01-04 14:59:23 -05:00
|
|
|
videosValidators.remoteVideos,
|
2016-06-18 10:13:54 -04:00
|
|
|
remoteVideos
|
|
|
|
)
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
module.exports = router
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
function remoteVideos (req, res, next) {
|
|
|
|
const requests = req.body.data
|
2016-12-29 12:02:03 -05:00
|
|
|
const fromPod = res.locals.secure.pod
|
2016-06-18 10:13:54 -04:00
|
|
|
|
|
|
|
// We need to process in the same order to keep consistency
|
|
|
|
// TODO: optimization
|
2016-07-18 11:17:52 -04:00
|
|
|
eachSeries(requests, function (request, callbackEach) {
|
2017-01-04 14:59:23 -05:00
|
|
|
const data = request.data
|
2016-06-18 10:13:54 -04:00
|
|
|
|
2016-12-30 05:27:42 -05:00
|
|
|
switch (request.type) {
|
|
|
|
case 'add':
|
2017-01-06 17:24:47 -05:00
|
|
|
addRemoteVideoRetryWrapper(data, fromPod, callbackEach)
|
2016-12-30 05:27:42 -05:00
|
|
|
break
|
|
|
|
|
|
|
|
case 'update':
|
2017-01-06 17:24:47 -05:00
|
|
|
updateRemoteVideoRetryWrapper(data, fromPod, callbackEach)
|
2016-12-30 05:27:42 -05:00
|
|
|
break
|
|
|
|
|
|
|
|
case 'remove':
|
2017-01-04 14:59:23 -05:00
|
|
|
removeRemoteVideo(data, fromPod, callbackEach)
|
|
|
|
break
|
|
|
|
|
|
|
|
case 'report-abuse':
|
|
|
|
reportAbuseRemoteVideo(data, fromPod, callbackEach)
|
2016-12-30 05:27:42 -05:00
|
|
|
break
|
|
|
|
|
|
|
|
default:
|
|
|
|
logger.error('Unkown remote request type %s.', request.type)
|
2016-06-18 10:13:54 -04:00
|
|
|
}
|
2016-06-24 11:42:51 -04:00
|
|
|
}, function (err) {
|
|
|
|
if (err) logger.error('Error managing remote videos.', { error: err })
|
2016-06-18 10:13:54 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
// We don't need to keep the other pod waiting
|
|
|
|
return res.type('json').status(204).end()
|
|
|
|
}
|
|
|
|
|
2017-01-06 17:24:47 -05:00
|
|
|
// Handle retries on fail
|
|
|
|
function addRemoteVideoRetryWrapper (videoToCreateData, fromPod, finalCallback) {
|
|
|
|
utils.transactionRetryer(
|
|
|
|
function (callback) {
|
|
|
|
return addRemoteVideo(videoToCreateData, fromPod, callback)
|
|
|
|
},
|
|
|
|
function (err) {
|
|
|
|
if (err) {
|
|
|
|
logger.error('Cannot insert the remote video with many retries.', { error: err })
|
|
|
|
return finalCallback(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return finalCallback()
|
|
|
|
}
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2016-12-29 12:02:03 -05:00
|
|
|
function addRemoteVideo (videoToCreateData, fromPod, finalCallback) {
|
2017-01-06 17:24:47 -05:00
|
|
|
logger.debug('Adding remote video "%s".', videoToCreateData.remoteId)
|
2016-07-05 15:36:01 -04:00
|
|
|
|
2016-12-11 15:50:51 -05:00
|
|
|
waterfall([
|
|
|
|
|
2016-12-24 10:59:17 -05:00
|
|
|
function startTransaction (callback) {
|
2017-01-06 17:24:47 -05:00
|
|
|
db.sequelize.transaction({ isolationLevel: 'SERIALIZABLE' }).asCallback(function (err, t) {
|
2016-12-24 10:59:17 -05:00
|
|
|
return callback(err, t)
|
|
|
|
})
|
|
|
|
},
|
|
|
|
|
2016-12-29 12:02:03 -05: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 15:50:51 -05:00
|
|
|
|
2016-12-29 12:02:03 -05:00
|
|
|
db.Author.findOrCreateAuthor(name, podId, userId, t, function (err, authorInstance) {
|
|
|
|
return callback(err, t, authorInstance)
|
2016-12-11 15:50:51 -05:00
|
|
|
})
|
|
|
|
},
|
|
|
|
|
2016-12-24 10:59:17 -05:00
|
|
|
function findOrCreateTags (t, author, callback) {
|
|
|
|
const tags = videoToCreateData.tags
|
|
|
|
|
2016-12-29 12:02:03 -05:00
|
|
|
db.Tag.findOrCreateTags(tags, t, function (err, tagInstances) {
|
2016-12-24 10:59:17 -05:00
|
|
|
return callback(err, t, author, tagInstances)
|
|
|
|
})
|
|
|
|
},
|
|
|
|
|
|
|
|
function createVideoObject (t, author, tagInstances, callback) {
|
2016-12-11 15:50:51 -05:00
|
|
|
const videoData = {
|
|
|
|
name: videoToCreateData.name,
|
|
|
|
remoteId: videoToCreateData.remoteId,
|
|
|
|
extname: videoToCreateData.extname,
|
|
|
|
infoHash: videoToCreateData.infoHash,
|
|
|
|
description: videoToCreateData.description,
|
|
|
|
authorId: author.id,
|
2016-12-25 06:06:08 -05:00
|
|
|
duration: videoToCreateData.duration,
|
2016-12-30 05:45:00 -05:00
|
|
|
createdAt: videoToCreateData.createdAt,
|
2017-01-06 17:24:47 -05:00
|
|
|
// FIXME: updatedAt does not seems to be considered by Sequelize
|
2016-12-30 05:45:00 -05:00
|
|
|
updatedAt: videoToCreateData.updatedAt
|
2016-12-11 15:50:51 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
const video = db.Video.build(videoData)
|
|
|
|
|
2016-12-24 10:59:17 -05:00
|
|
|
return callback(null, t, tagInstances, video)
|
2016-12-11 15:50:51 -05:00
|
|
|
},
|
|
|
|
|
2016-12-24 10:59:17 -05:00
|
|
|
function generateThumbnail (t, tagInstances, video, callback) {
|
2016-12-29 06:13:19 -05:00
|
|
|
db.Video.generateThumbnailFromData(video, videoToCreateData.thumbnailData, function (err) {
|
2016-12-11 15:50:51 -05:00
|
|
|
if (err) {
|
2016-12-29 06:13:19 -05:00
|
|
|
logger.error('Cannot generate thumbnail from data.', { error: err })
|
2016-12-11 15:50:51 -05:00
|
|
|
return callback(err)
|
|
|
|
}
|
|
|
|
|
2016-12-24 10:59:17 -05:00
|
|
|
return callback(err, t, tagInstances, video)
|
2016-12-11 15:50:51 -05:00
|
|
|
})
|
|
|
|
},
|
|
|
|
|
2016-12-24 10:59:17 -05: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 15:16:41 -05:00
|
|
|
}
|
|
|
|
|
2016-12-24 10:59:17 -05:00
|
|
|
], function (err, t) {
|
|
|
|
if (err) {
|
2017-01-06 17:24:47 -05:00
|
|
|
// This is just a debug because we will retry the insert
|
|
|
|
logger.debug('Cannot insert the remote video.', { error: err })
|
2016-12-24 10:59:17 -05:00
|
|
|
|
|
|
|
// Abort transaction?
|
|
|
|
if (t) t.rollback()
|
|
|
|
|
|
|
|
return finalCallback(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Commit transaction
|
2017-01-11 10:22:50 -05:00
|
|
|
t.commit().asCallback(function (err) {
|
|
|
|
if (err) return finalCallback(err)
|
2016-12-24 10:59:17 -05:00
|
|
|
|
2017-01-11 10:22:50 -05:00
|
|
|
logger.info('Remote video %s inserted.', videoToCreateData.videoToCreateData.name)
|
|
|
|
return finalCallback(null)
|
|
|
|
})
|
2016-12-24 10:59:17 -05:00
|
|
|
})
|
2016-06-18 10:13:54 -04:00
|
|
|
}
|
|
|
|
|
2017-01-06 17:24:47 -05:00
|
|
|
// Handle retries on fail
|
|
|
|
function updateRemoteVideoRetryWrapper (videoAttributesToUpdate, fromPod, finalCallback) {
|
|
|
|
utils.transactionRetryer(
|
|
|
|
function (callback) {
|
|
|
|
return updateRemoteVideo(videoAttributesToUpdate, fromPod, callback)
|
|
|
|
},
|
|
|
|
function (err) {
|
|
|
|
if (err) {
|
|
|
|
logger.error('Cannot update the remote video with many retries.', { error: err })
|
|
|
|
return finalCallback(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return finalCallback()
|
|
|
|
}
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2016-12-30 05:27:42 -05:00
|
|
|
function updateRemoteVideo (videoAttributesToUpdate, fromPod, finalCallback) {
|
2017-01-06 17:24:47 -05:00
|
|
|
logger.debug('Updating remote video "%s".', videoAttributesToUpdate.remoteId)
|
2016-12-11 15:50:51 -05:00
|
|
|
|
2016-12-30 05:27:42 -05:00
|
|
|
waterfall([
|
|
|
|
|
|
|
|
function startTransaction (callback) {
|
|
|
|
db.sequelize.transaction().asCallback(function (err, t) {
|
|
|
|
return callback(err, t)
|
|
|
|
})
|
|
|
|
},
|
|
|
|
|
|
|
|
function findVideo (t, callback) {
|
2017-01-04 14:59:23 -05:00
|
|
|
fetchVideo(fromPod.host, videoAttributesToUpdate.remoteId, function (err, videoInstance) {
|
|
|
|
return callback(err, t, videoInstance)
|
2016-12-30 05:27:42 -05:00
|
|
|
})
|
|
|
|
},
|
|
|
|
|
|
|
|
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)
|
2016-12-30 05:45:00 -05:00
|
|
|
videoInstance.set('updatedAt', videoAttributesToUpdate.updatedAt)
|
2016-12-30 05:27:42 -05:00
|
|
|
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)
|
|
|
|
})
|
2016-06-18 10:13:54 -04:00
|
|
|
}
|
|
|
|
|
2016-12-30 05:27:42 -05:00
|
|
|
], function (err, t) {
|
|
|
|
if (err) {
|
2017-01-06 17:24:47 -05:00
|
|
|
// This is just a debug because we will retry the insert
|
|
|
|
logger.debug('Cannot update the remote video.', { error: err })
|
2016-12-30 05:27:42 -05:00
|
|
|
|
|
|
|
// Abort transaction?
|
|
|
|
if (t) t.rollback()
|
|
|
|
|
|
|
|
return finalCallback(err)
|
2016-07-05 15:36:01 -04:00
|
|
|
}
|
|
|
|
|
2017-01-11 10:22:50 -05:00
|
|
|
// Commit transaction
|
|
|
|
t.commit().asCallback(function (err) {
|
|
|
|
if (err) return finalCallback(err)
|
2016-12-30 05:27:42 -05:00
|
|
|
|
2017-01-11 10:22:50 -05:00
|
|
|
logger.info('Remote video %s updated', videoAttributesToUpdate.name)
|
|
|
|
return finalCallback(null)
|
|
|
|
})
|
2016-12-30 05:27:42 -05:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
function removeRemoteVideo (videoToRemoveData, fromPod, callback) {
|
|
|
|
// We need the instance because we have to remove some other stuffs (thumbnail etc)
|
2017-01-04 14:59:23 -05:00
|
|
|
fetchVideo(fromPod.host, videoToRemoveData.remoteId, function (err, video) {
|
|
|
|
if (err) return callback(err)
|
|
|
|
|
|
|
|
logger.debug('Removing remote video %s.', video.remoteId)
|
|
|
|
video.destroy().asCallback(callback)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
function reportAbuseRemoteVideo (reportData, fromPod, callback) {
|
|
|
|
db.Video.load(reportData.videoRemoteId, function (err, video) {
|
2016-12-30 05:27:42 -05:00
|
|
|
if (err || !video) {
|
2017-01-04 14:59:23 -05:00
|
|
|
if (!err) err = new Error('video not found')
|
|
|
|
|
2017-01-06 17:24:47 -05:00
|
|
|
logger.error('Cannot load video from id.', { error: err, id: reportData.videoRemoteId })
|
2016-12-30 05:27:42 -05:00
|
|
|
return callback(err)
|
|
|
|
}
|
2016-07-05 15:36:01 -04:00
|
|
|
|
2017-01-04 14:59:23 -05:00
|
|
|
logger.debug('Reporting remote abuse for video %s.', video.id)
|
|
|
|
|
|
|
|
const videoAbuseData = {
|
|
|
|
reporterUsername: reportData.reporterUsername,
|
|
|
|
reason: reportData.reportReason,
|
|
|
|
reporterPodId: fromPod.id,
|
|
|
|
videoId: video.id
|
|
|
|
}
|
|
|
|
|
|
|
|
db.VideoAbuse.create(videoAbuseData).asCallback(callback)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
function fetchVideo (podHost, remoteId, callback) {
|
|
|
|
db.Video.loadByHostAndRemoteId(podHost, remoteId, function (err, video) {
|
|
|
|
if (err || !video) {
|
|
|
|
if (!err) err = new Error('video not found')
|
|
|
|
|
2017-01-06 17:24:47 -05:00
|
|
|
logger.error('Cannot load video from host and remote id.', { error: err, podHost, remoteId })
|
2017-01-04 14:59:23 -05:00
|
|
|
return callback(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return callback(null, video)
|
2016-06-18 10:13:54 -04:00
|
|
|
})
|
|
|
|
}
|