1
0
Fork 0
peertube/server/lib/activitypub/process/process-update.ts

102 lines
4.0 KiB
TypeScript
Raw Normal View History

import * as Bluebird from 'bluebird'
2017-12-12 16:53:50 +00:00
import { ActivityUpdate } from '../../../../shared/models/activitypub'
import { logger, resetSequelizeInstance, retryTransactionWrapper } from '../../../helpers'
import { sequelizeTypescript } from '../../../initializers'
2017-12-14 16:38:41 +00:00
import { ActorModel } from '../../../models/activitypub/actor'
2017-12-12 16:53:50 +00:00
import { TagModel } from '../../../models/video/tag'
import { VideoModel } from '../../../models/video/video'
import { VideoFileModel } from '../../../models/video/video-file'
2017-12-14 16:38:41 +00:00
import { getOrCreateActorAndServerAndModel } from '../actor'
import { videoActivityObjectToDBAttributes, videoFileActivityUrlToDBAttributes } from './misc'
2017-11-10 13:34:45 +00:00
async function processUpdateActivity (activity: ActivityUpdate) {
2017-12-14 16:38:41 +00:00
const actor = await getOrCreateActorAndServerAndModel(activity.actor)
2017-11-09 16:51:58 +00:00
if (activity.object.type === 'Video') {
2017-12-14 16:38:41 +00:00
return processUpdateVideo(actor, activity)
2017-11-09 16:51:58 +00:00
}
2017-11-10 13:34:45 +00:00
2017-11-21 12:58:08 +00:00
return
2017-11-09 16:51:58 +00:00
}
// ---------------------------------------------------------------------------
export {
processUpdateActivity
}
// ---------------------------------------------------------------------------
2017-12-14 16:38:41 +00:00
function processUpdateVideo (actor: ActorModel, activity: ActivityUpdate) {
2017-11-10 13:34:45 +00:00
const options = {
2017-12-14 16:38:41 +00:00
arguments: [ actor, activity ],
2017-11-10 13:34:45 +00:00
errorMessage: 'Cannot update the remote video with many retries'
}
2017-11-09 16:51:58 +00:00
2017-11-10 13:34:45 +00:00
return retryTransactionWrapper(updateRemoteVideo, options)
2017-11-09 16:51:58 +00:00
}
2017-12-14 16:38:41 +00:00
async function updateRemoteVideo (actor: ActorModel, activity: ActivityUpdate) {
const videoAttributesToUpdate = activity.object
2017-11-10 13:34:45 +00:00
logger.debug('Updating remote video "%s".', videoAttributesToUpdate.uuid)
2017-12-12 16:53:50 +00:00
let videoInstance: VideoModel
2017-11-10 13:34:45 +00:00
let videoFieldsSave: object
try {
2017-12-12 16:53:50 +00:00
await sequelizeTypescript.transaction(async t => {
2017-11-10 13:34:45 +00:00
const sequelizeOptions = {
transaction: t
}
2017-12-12 16:53:50 +00:00
const videoInstance = await VideoModel.loadByUrlAndPopulateAccount(videoAttributesToUpdate.id, t)
2017-11-10 13:34:45 +00:00
if (!videoInstance) throw new Error('Video ' + videoAttributesToUpdate.id + ' not found.')
2017-12-14 16:38:41 +00:00
const videoChannel = videoInstance.VideoChannel
if (videoChannel.Account.Actor.id !== actor.id) {
throw new Error('Account ' + actor.url + ' does not own video channel ' + videoChannel.Actor.url)
2017-11-10 13:34:45 +00:00
}
2017-12-14 16:38:41 +00:00
const videoData = await videoActivityObjectToDBAttributes(videoChannel, videoAttributesToUpdate, activity.to, activity.cc)
2017-11-10 13:34:45 +00:00
videoInstance.set('name', videoData.name)
videoInstance.set('category', videoData.category)
videoInstance.set('licence', videoData.licence)
videoInstance.set('language', videoData.language)
videoInstance.set('nsfw', videoData.nsfw)
2017-12-14 16:38:41 +00:00
videoInstance.set('privacy', videoData.privacy)
2017-11-10 13:34:45 +00:00
videoInstance.set('description', videoData.description)
videoInstance.set('duration', videoData.duration)
videoInstance.set('createdAt', videoData.createdAt)
videoInstance.set('updatedAt', videoData.updatedAt)
videoInstance.set('views', videoData.views)
await videoInstance.save(sequelizeOptions)
// Remove old video files
const videoFileDestroyTasks: Bluebird<void>[] = []
for (const videoFile of videoInstance.VideoFiles) {
videoFileDestroyTasks.push(videoFile.destroy(sequelizeOptions))
}
await Promise.all(videoFileDestroyTasks)
2017-11-17 14:52:26 +00:00
const videoFileAttributes = videoFileActivityUrlToDBAttributes(videoInstance, videoAttributesToUpdate)
2017-12-12 16:53:50 +00:00
const tasks: Bluebird<any>[] = videoFileAttributes.map(f => VideoFileModel.create(f))
2017-11-10 13:34:45 +00:00
await Promise.all(tasks)
const tags = videoAttributesToUpdate.tag.map(t => t.name)
2017-12-12 16:53:50 +00:00
const tagInstances = await TagModel.findOrCreateTags(tags, t)
await videoInstance.$set('Tags', tagInstances, sequelizeOptions)
2017-11-10 13:34:45 +00:00
})
logger.info('Remote video with uuid %s updated', videoAttributesToUpdate.uuid)
} catch (err) {
if (videoInstance !== undefined && videoFieldsSave !== undefined) {
resetSequelizeInstance(videoInstance, videoFieldsSave)
}
// This is just a debug because we will retry the insert
logger.debug('Cannot update the remote video.', err)
throw err
}
}