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

524 lines
16 KiB
TypeScript
Raw Normal View History

2017-06-05 19:53:49 +00:00
import * as express from 'express'
2017-06-10 20:15:25 +00:00
import * as Sequelize from 'sequelize'
2017-05-15 20:22:03 +00:00
import { eachSeries, waterfall } from 'async'
2017-05-22 18:58:25 +00:00
import { database as db } from '../../../initializers/database'
2017-05-15 20:22:03 +00:00
import {
REQUEST_ENDPOINT_ACTIONS,
REQUEST_ENDPOINTS,
REQUEST_VIDEO_EVENT_TYPES,
REQUEST_VIDEO_QADU_TYPES
} from '../../../initializers'
import {
checkSignature,
signatureValidator,
remoteVideosValidator,
remoteQaduVideosValidator,
remoteEventsVideosValidator
} from '../../../middlewares'
import {
logger,
commitTransaction,
retryTransactionWrapper,
rollbackTransaction,
startSerializableTransaction
} from '../../../helpers'
import { quickAndDirtyUpdatesVideoToFriends } from '../../../lib'
2017-06-10 20:15:25 +00:00
import { PodInstance, VideoInstance } from '../../../models'
2017-05-15 20:22:03 +00:00
const ENDPOINT_ACTIONS = REQUEST_ENDPOINT_ACTIONS[REQUEST_ENDPOINTS.VIDEOS]
// Functions to call when processing a remote request
const functionsHash = {}
functionsHash[ENDPOINT_ACTIONS.ADD] = addRemoteVideoRetryWrapper
functionsHash[ENDPOINT_ACTIONS.UPDATE] = updateRemoteVideoRetryWrapper
functionsHash[ENDPOINT_ACTIONS.REMOVE] = removeRemoteVideo
functionsHash[ENDPOINT_ACTIONS.REPORT_ABUSE] = reportAbuseRemoteVideo
2017-05-15 20:22:03 +00:00
const remoteVideosRouter = express.Router()
2017-05-15 20:22:03 +00:00
remoteVideosRouter.post('/',
signatureValidator,
checkSignature,
remoteVideosValidator,
remoteVideos
)
2017-05-15 20:22:03 +00:00
remoteVideosRouter.post('/qadu',
signatureValidator,
checkSignature,
remoteQaduVideosValidator,
remoteVideosQadu
)
2017-05-15 20:22:03 +00:00
remoteVideosRouter.post('/events',
signatureValidator,
checkSignature,
remoteEventsVideosValidator,
2017-02-26 17:57:33 +00:00
remoteVideosEvents
)
// ---------------------------------------------------------------------------
2017-05-15 20:22:03 +00:00
export {
remoteVideosRouter
}
// ---------------------------------------------------------------------------
2017-06-10 20:15:25 +00:00
function remoteVideos (req: express.Request, res: express.Response, next: express.NextFunction) {
const requests = req.body.data
2016-12-29 17:02:03 +00:00
const fromPod = res.locals.secure.pod
// We need to process in the same order to keep consistency
// TODO: optimization
2017-05-15 20:22:03 +00:00
eachSeries(requests, function (request: any, callbackEach) {
2017-01-04 19:59:23 +00:00
const data = request.data
// Get the function we need to call in order to process the request
const fun = functionsHash[request.type]
if (fun === undefined) {
logger.error('Unkown remote request type %s.', request.type)
return callbackEach(null)
}
fun.call(this, data, fromPod, callbackEach)
}, 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()
}
2017-06-10 20:15:25 +00:00
function remoteVideosQadu (req: express.Request, res: express.Response, next: express.NextFunction) {
const requests = req.body.data
const fromPod = res.locals.secure.pod
2017-05-15 20:22:03 +00:00
eachSeries(requests, function (request: any, callbackEach) {
const videoData = request.data
quickAndDirtyUpdateVideoRetryWrapper(videoData, fromPod, callbackEach)
}, function (err) {
if (err) logger.error('Error managing remote videos.', { error: err })
})
return res.type('json').status(204).end()
}
2017-06-10 20:15:25 +00:00
function remoteVideosEvents (req: express.Request, res: express.Response, next: express.NextFunction) {
2017-02-26 17:57:33 +00:00
const requests = req.body.data
const fromPod = res.locals.secure.pod
2017-05-15 20:22:03 +00:00
eachSeries(requests, function (request: any, callbackEach) {
2017-02-26 17:57:33 +00:00
const eventData = request.data
processVideosEventsRetryWrapper(eventData, fromPod, callbackEach)
}, function (err) {
if (err) logger.error('Error managing remote videos.', { error: err })
})
return res.type('json').status(204).end()
}
2017-06-10 20:15:25 +00:00
function processVideosEventsRetryWrapper (eventData: any, fromPod: PodInstance, finalCallback: (err: Error) => void) {
2017-02-26 17:57:33 +00:00
const options = {
arguments: [ eventData, fromPod ],
errorMessage: 'Cannot process videos events with many retries.'
}
2017-05-15 20:22:03 +00:00
retryTransactionWrapper(processVideosEvents, options, finalCallback)
2017-02-26 17:57:33 +00:00
}
2017-06-10 20:15:25 +00:00
function processVideosEvents (eventData: any, fromPod: PodInstance, finalCallback: (err: Error) => void) {
2017-02-26 17:57:33 +00:00
waterfall([
2017-05-15 20:22:03 +00:00
startSerializableTransaction,
2017-02-26 17:57:33 +00:00
function findVideo (t, callback) {
fetchOwnedVideo(eventData.remoteId, function (err, videoInstance) {
return callback(err, t, videoInstance)
})
},
function updateVideoIntoDB (t, videoInstance, callback) {
const options = { transaction: t }
let columnToUpdate
2017-03-08 20:35:43 +00:00
let qaduType
2017-02-26 17:57:33 +00:00
switch (eventData.eventType) {
2017-05-15 20:22:03 +00:00
case REQUEST_VIDEO_EVENT_TYPES.VIEWS:
2017-02-26 17:57:33 +00:00
columnToUpdate = 'views'
2017-05-15 20:22:03 +00:00
qaduType = REQUEST_VIDEO_QADU_TYPES.VIEWS
2017-02-26 17:57:33 +00:00
break
2017-05-15 20:22:03 +00:00
case REQUEST_VIDEO_EVENT_TYPES.LIKES:
2017-02-26 17:57:33 +00:00
columnToUpdate = 'likes'
2017-05-15 20:22:03 +00:00
qaduType = REQUEST_VIDEO_QADU_TYPES.LIKES
2017-02-26 17:57:33 +00:00
break
2017-05-15 20:22:03 +00:00
case REQUEST_VIDEO_EVENT_TYPES.DISLIKES:
2017-02-26 17:57:33 +00:00
columnToUpdate = 'dislikes'
2017-05-15 20:22:03 +00:00
qaduType = REQUEST_VIDEO_QADU_TYPES.DISLIKES
2017-02-26 17:57:33 +00:00
break
default:
return callback(new Error('Unknown video event type.'))
}
const query = {}
query[columnToUpdate] = eventData.count
videoInstance.increment(query, options).asCallback(function (err) {
2017-03-08 20:35:43 +00:00
return callback(err, t, videoInstance, qaduType)
})
},
function sendQaduToFriends (t, videoInstance, qaduType, callback) {
const qadusParams = [
{
videoId: videoInstance.id,
type: qaduType
}
]
2017-05-15 20:22:03 +00:00
quickAndDirtyUpdatesVideoToFriends(qadusParams, t, function (err) {
2017-02-26 17:57:33 +00:00
return callback(err, t)
})
},
2017-05-15 20:22:03 +00:00
commitTransaction
2017-02-26 17:57:33 +00:00
2017-06-10 20:15:25 +00:00
], function (err: Error, t: Sequelize.Transaction) {
2017-02-26 17:57:33 +00:00
if (err) {
logger.debug('Cannot process a video event.', { error: err })
2017-05-15 20:22:03 +00:00
return rollbackTransaction(err, t, finalCallback)
2017-02-26 17:57:33 +00:00
}
logger.info('Remote video event processed for video %s.', eventData.remoteId)
return finalCallback(null)
})
}
2017-06-10 20:15:25 +00:00
function quickAndDirtyUpdateVideoRetryWrapper (videoData: any, fromPod: PodInstance, finalCallback: (err: Error) => void) {
const options = {
arguments: [ videoData, fromPod ],
errorMessage: 'Cannot update quick and dirty the remote video with many retries.'
}
2017-05-15 20:22:03 +00:00
retryTransactionWrapper(quickAndDirtyUpdateVideo, options, finalCallback)
}
2017-06-10 20:15:25 +00:00
function quickAndDirtyUpdateVideo (videoData: any, fromPod: PodInstance, finalCallback: (err: Error) => void) {
2017-03-19 08:16:33 +00:00
let videoName
waterfall([
2017-05-15 20:22:03 +00:00
startSerializableTransaction,
function findVideo (t, callback) {
2017-02-26 17:57:33 +00:00
fetchRemoteVideo(fromPod.host, videoData.remoteId, function (err, videoInstance) {
return callback(err, t, videoInstance)
})
},
function updateVideoIntoDB (t, videoInstance, callback) {
const options = { transaction: t }
2017-03-19 08:16:33 +00:00
videoName = videoInstance.name
if (videoData.views) {
videoInstance.set('views', videoData.views)
}
if (videoData.likes) {
videoInstance.set('likes', videoData.likes)
}
if (videoData.dislikes) {
videoInstance.set('dislikes', videoData.dislikes)
}
videoInstance.save(options).asCallback(function (err) {
return callback(err, t)
})
},
2017-05-15 20:22:03 +00:00
commitTransaction
2017-06-10 20:15:25 +00:00
], function (err: Error, t: Sequelize.Transaction) {
if (err) {
logger.debug('Cannot quick and dirty update the remote video.', { error: err })
2017-05-15 20:22:03 +00:00
return rollbackTransaction(err, t, finalCallback)
}
2017-03-19 08:16:33 +00:00
logger.info('Remote video %s quick and dirty updated', videoName)
return finalCallback(null)
})
}
// Handle retries on fail
2017-06-10 20:15:25 +00:00
function addRemoteVideoRetryWrapper (videoToCreateData: any, fromPod: PodInstance, finalCallback: (err: Error) => void) {
const options = {
arguments: [ videoToCreateData, fromPod ],
errorMessage: 'Cannot insert the remote video with many retries.'
}
2017-05-15 20:22:03 +00:00
retryTransactionWrapper(addRemoteVideo, options, finalCallback)
}
2017-06-10 20:15:25 +00:00
function addRemoteVideo (videoToCreateData: any, fromPod: PodInstance, finalCallback: (err: Error) => void) {
logger.debug('Adding remote video "%s".', videoToCreateData.remoteId)
2016-07-05 19:36:01 +00:00
2016-12-11 20:50:51 +00:00
waterfall([
2017-05-15 20:22:03 +00:00
startSerializableTransaction,
2016-12-24 15:59:17 +00:00
function assertRemoteIdAndHostUnique (t, callback) {
db.Video.loadByHostAndRemoteId(fromPod.host, videoToCreateData.remoteId, function (err, video) {
if (err) return callback(err)
if (video) return callback(new Error('RemoteId and host pair is not unique.'))
return callback(null, t)
})
},
2016-12-29 17:02:03 +00: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 20:50:51 +00:00
2016-12-29 17:02:03 +00:00
db.Author.findOrCreateAuthor(name, podId, userId, t, function (err, authorInstance) {
return callback(err, t, authorInstance)
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
2016-12-29 17:02:03 +00:00
db.Tag.findOrCreateTags(tags, t, function (err, tagInstances) {
2016-12-24 15:59:17 +00:00
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,
2017-03-22 20:15:55 +00:00
category: videoToCreateData.category,
2017-03-27 18:53:11 +00:00
licence: videoToCreateData.licence,
2017-04-07 10:13:37 +00:00
language: videoToCreateData.language,
2017-03-28 19:19:46 +00:00
nsfw: videoToCreateData.nsfw,
2016-12-11 20:50:51 +00:00
description: videoToCreateData.description,
authorId: author.id,
duration: videoToCreateData.duration,
createdAt: videoToCreateData.createdAt,
// FIXME: updatedAt does not seems to be considered by Sequelize
2017-03-08 20:35:43 +00:00
updatedAt: videoToCreateData.updatedAt,
views: videoToCreateData.views,
likes: videoToCreateData.likes,
dislikes: videoToCreateData.dislikes
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) {
db.Video.generateThumbnailFromData(video, videoToCreateData.thumbnailData, function (err) {
2016-12-11 20:50:51 +00:00
if (err) {
logger.error('Cannot generate thumbnail from data.', { error: err })
2016-12-11 20:50:51 +00:00
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
}
2016-12-24 15:59:17 +00:00
video.setTags(tagInstances, options).asCallback(function (err) {
return callback(err, t)
})
2017-01-17 19:38:45 +00:00
},
2017-05-15 20:22:03 +00:00
commitTransaction
2016-11-16 20:16:41 +00:00
2017-06-10 20:15:25 +00:00
], function (err: Error, t: Sequelize.Transaction) {
2016-12-24 15:59:17 +00:00
if (err) {
// This is just a debug because we will retry the insert
logger.debug('Cannot insert the remote video.', { error: err })
2017-05-15 20:22:03 +00:00
return rollbackTransaction(err, t, finalCallback)
2016-12-24 15:59:17 +00:00
}
2017-01-17 19:38:45 +00:00
logger.info('Remote video %s inserted.', videoToCreateData.name)
return finalCallback(null)
2016-12-24 15:59:17 +00:00
})
}
// Handle retries on fail
2017-06-10 20:15:25 +00:00
function updateRemoteVideoRetryWrapper (videoAttributesToUpdate: any, fromPod: PodInstance, finalCallback: (err: Error) => void) {
const options = {
2017-01-15 21:22:41 +00:00
arguments: [ videoAttributesToUpdate, fromPod ],
errorMessage: 'Cannot update the remote video with many retries'
}
2017-05-15 20:22:03 +00:00
retryTransactionWrapper(updateRemoteVideo, options, finalCallback)
}
2017-06-10 20:15:25 +00:00
function updateRemoteVideo (videoAttributesToUpdate: any, fromPod: PodInstance, finalCallback: (err: Error) => void) {
logger.debug('Updating remote video "%s".', videoAttributesToUpdate.remoteId)
2016-12-11 20:50:51 +00:00
waterfall([
2017-05-15 20:22:03 +00:00
startSerializableTransaction,
function findVideo (t, callback) {
2017-02-26 17:57:33 +00:00
fetchRemoteVideo(fromPod.host, videoAttributesToUpdate.remoteId, function (err, videoInstance) {
2017-01-04 19:59:23 +00:00
return callback(err, 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)
2017-03-22 20:15:55 +00:00
videoInstance.set('category', videoAttributesToUpdate.category)
2017-03-27 18:53:11 +00:00
videoInstance.set('licence', videoAttributesToUpdate.licence)
2017-04-07 10:13:37 +00:00
videoInstance.set('language', videoAttributesToUpdate.language)
2017-03-28 19:19:46 +00:00
videoInstance.set('nsfw', videoAttributesToUpdate.nsfw)
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)
2017-03-08 20:35:43 +00:00
videoInstance.set('views', videoAttributesToUpdate.views)
videoInstance.set('likes', videoAttributesToUpdate.likes)
videoInstance.set('dislikes', videoAttributesToUpdate.dislikes)
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)
})
2017-01-17 19:38:45 +00:00
},
2017-05-15 20:22:03 +00:00
commitTransaction
2017-06-10 20:15:25 +00:00
], function (err: Error, t: Sequelize.Transaction) {
if (err) {
// This is just a debug because we will retry the insert
logger.debug('Cannot update the remote video.', { error: err })
2017-05-15 20:22:03 +00:00
return rollbackTransaction(err, t, finalCallback)
2016-07-05 19:36:01 +00:00
}
2017-01-17 19:38:45 +00:00
logger.info('Remote video %s updated', videoAttributesToUpdate.name)
return finalCallback(null)
})
}
2017-06-10 20:15:25 +00:00
function removeRemoteVideo (videoToRemoveData: any, fromPod: PodInstance, callback: (err: Error) => void) {
// We need the instance because we have to remove some other stuffs (thumbnail etc)
2017-02-26 17:57:33 +00:00
fetchRemoteVideo(fromPod.host, videoToRemoveData.remoteId, function (err, video) {
// Do not return the error, continue the process
if (err) return callback(null)
2017-01-04 19:59:23 +00:00
logger.debug('Removing remote video %s.', video.remoteId)
video.destroy().asCallback(function (err) {
// Do not return the error, continue the process
if (err) {
logger.error('Cannot remove remote video with id %s.', videoToRemoveData.remoteId, { error: err })
}
return callback(null)
})
2017-01-04 19:59:23 +00:00
})
}
2017-06-10 20:15:25 +00:00
function reportAbuseRemoteVideo (reportData: any, fromPod: PodInstance, callback: (err: Error) => void) {
2017-02-26 17:57:33 +00:00
fetchOwnedVideo(reportData.videoRemoteId, function (err, video) {
if (err || !video) {
2017-01-04 19:59:23 +00:00
if (!err) err = new Error('video not found')
logger.error('Cannot load video from id.', { error: err, id: reportData.videoRemoteId })
// Do not return the error, continue the process
return callback(null)
}
2016-07-05 19:36:01 +00:00
2017-01-04 19:59:23 +00: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(function (err) {
if (err) {
logger.error('Cannot create remote abuse video.', { error: err })
}
return callback(null)
})
2017-01-04 19:59:23 +00:00
})
}
2017-06-10 20:15:25 +00:00
function fetchOwnedVideo (id: string, callback: (err: Error, video?: VideoInstance) => void) {
2017-02-26 17:57:33 +00:00
db.Video.load(id, function (err, video) {
if (err || !video) {
if (!err) err = new Error('video not found')
logger.error('Cannot load owned video from id.', { error: err, id })
return callback(err)
}
return callback(null, video)
})
}
2017-06-10 20:15:25 +00:00
function fetchRemoteVideo (podHost: string, remoteId: string, callback: (err: Error, video?: VideoInstance) => void) {
2017-01-04 19:59:23 +00:00
db.Video.loadByHostAndRemoteId(podHost, remoteId, function (err, video) {
if (err || !video) {
if (!err) err = new Error('video not found')
logger.error('Cannot load video from host and remote id.', { error: err, podHost, remoteId })
2017-01-04 19:59:23 +00:00
return callback(err)
}
return callback(null, video)
})
}