PeerTube/server/lib/activitypub/process/process-update.ts

183 lines
7.1 KiB
TypeScript
Raw Normal View History

import * as Bluebird from 'bluebird'
2017-12-12 17:53:50 +01:00
import { ActivityUpdate } from '../../../../shared/models/activitypub'
2018-01-03 16:38:50 +01:00
import { ActivityPubActor } from '../../../../shared/models/activitypub/activitypub-actor'
import { VideoTorrentObject } from '../../../../shared/models/activitypub/objects'
2017-12-28 11:16:08 +01:00
import { retryTransactionWrapper } from '../../../helpers/database-utils'
import { logger } from '../../../helpers/logger'
import { resetSequelizeInstance } from '../../../helpers/utils'
2017-12-12 17:53:50 +01:00
import { sequelizeTypescript } from '../../../initializers'
2018-01-03 16:38:50 +01:00
import { AccountModel } from '../../../models/account/account'
2017-12-14 17:38:41 +01:00
import { ActorModel } from '../../../models/activitypub/actor'
2017-12-12 17:53:50 +01:00
import { TagModel } from '../../../models/video/tag'
import { VideoChannelModel } from '../../../models/video/video-channel'
2017-12-12 17:53:50 +01:00
import { VideoFileModel } from '../../../models/video/video-file'
2018-01-04 14:04:02 +01:00
import { fetchAvatarIfExists, getOrCreateActorAndServerAndModel, updateActorAvatarInstance, updateActorInstance } from '../actor'
2018-02-14 15:33:49 +01:00
import {
generateThumbnailFromUrl,
getOrCreateAccountAndVideoAndChannel,
videoActivityObjectToDBAttributes,
2018-02-14 15:33:49 +01:00
videoFileActivityUrlToDBAttributes
} from '../videos'
2017-11-10 14:34:45 +01:00
async function processUpdateActivity (activity: ActivityUpdate) {
2017-12-14 17:38:41 +01:00
const actor = await getOrCreateActorAndServerAndModel(activity.actor)
const objectType = activity.object.type
2017-11-09 17:51:58 +01:00
if (objectType === 'Video') {
2017-12-14 17:38:41 +01:00
return processUpdateVideo(actor, activity)
} else if (objectType === 'Person' || objectType === 'Application' || objectType === 'Group') {
return processUpdateActor(actor, activity)
2017-11-09 17:51:58 +01:00
}
2017-11-10 14:34:45 +01:00
2017-11-21 13:58:08 +01:00
return
2017-11-09 17:51:58 +01:00
}
// ---------------------------------------------------------------------------
export {
processUpdateActivity
}
// ---------------------------------------------------------------------------
2017-12-14 17:38:41 +01:00
function processUpdateVideo (actor: ActorModel, activity: ActivityUpdate) {
2017-11-10 14:34:45 +01:00
const options = {
2017-12-14 17:38:41 +01:00
arguments: [ actor, activity ],
2017-11-10 14:34:45 +01:00
errorMessage: 'Cannot update the remote video with many retries'
}
2017-11-09 17:51:58 +01:00
2017-11-10 14:34:45 +01:00
return retryTransactionWrapper(updateRemoteVideo, options)
2017-11-09 17:51:58 +01:00
}
2017-12-14 17:38:41 +01:00
async function updateRemoteVideo (actor: ActorModel, activity: ActivityUpdate) {
2018-01-03 16:38:50 +01:00
const videoAttributesToUpdate = activity.object as VideoTorrentObject
2017-12-14 17:38:41 +01:00
2018-01-10 17:18:12 +01:00
const res = await getOrCreateAccountAndVideoAndChannel(videoAttributesToUpdate.id)
2017-11-10 14:34:45 +01:00
logger.debug('Updating remote video "%s".', videoAttributesToUpdate.uuid)
2018-01-10 17:18:12 +01:00
let videoInstance = res.video
2018-01-03 16:38:50 +01:00
let videoFieldsSave: any
2017-11-10 14:34:45 +01:00
try {
2017-12-12 17:53:50 +01:00
await sequelizeTypescript.transaction(async t => {
2017-11-10 14:34:45 +01:00
const sequelizeOptions = {
transaction: t
}
2018-01-03 16:38:50 +01:00
videoFieldsSave = videoInstance.toJSON()
2017-12-14 17:38:41 +01: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 14:34:45 +01:00
}
const videoData = await videoActivityObjectToDBAttributes(videoChannel, videoAttributesToUpdate, activity.to)
2017-11-10 14:34:45 +01:00
videoInstance.set('name', videoData.name)
2018-01-11 19:17:43 +01:00
videoInstance.set('uuid', videoData.uuid)
videoInstance.set('url', videoData.url)
2017-11-10 14:34:45 +01:00
videoInstance.set('category', videoData.category)
videoInstance.set('licence', videoData.licence)
videoInstance.set('language', videoData.language)
2018-01-11 19:17:43 +01:00
videoInstance.set('description', videoData.description)
videoInstance.set('support', videoData.support)
2017-11-10 14:34:45 +01:00
videoInstance.set('nsfw', videoData.nsfw)
2018-01-03 11:54:42 +01:00
videoInstance.set('commentsEnabled', videoData.commentsEnabled)
2017-11-10 14:34:45 +01:00
videoInstance.set('duration', videoData.duration)
videoInstance.set('createdAt', videoData.createdAt)
videoInstance.set('updatedAt', videoData.updatedAt)
videoInstance.set('views', videoData.views)
2018-01-11 19:17:43 +01:00
videoInstance.set('privacy', videoData.privacy)
2017-11-10 14:34:45 +01:00
await videoInstance.save(sequelizeOptions)
2018-02-14 15:33:49 +01:00
// Don't block on request
generateThumbnailFromUrl(videoInstance, videoAttributesToUpdate.icon)
.catch(err => logger.warn('Cannot generate thumbnail of %s.', videoAttributesToUpdate.id, err))
2017-11-10 14:34:45 +01:00
// 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 15:52:26 +01:00
const videoFileAttributes = videoFileActivityUrlToDBAttributes(videoInstance, videoAttributesToUpdate)
2018-01-24 10:25:56 +01:00
const tasks = videoFileAttributes.map(f => VideoFileModel.create(f))
2017-11-10 14:34:45 +01:00
await Promise.all(tasks)
const tags = videoAttributesToUpdate.tag.map(t => t.name)
2017-12-12 17:53:50 +01:00
const tagInstances = await TagModel.findOrCreateTags(tags, t)
await videoInstance.$set('Tags', tagInstances, sequelizeOptions)
2017-11-10 14:34:45 +01: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
}
}
2018-01-03 16:38:50 +01:00
function processUpdateActor (actor: ActorModel, activity: ActivityUpdate) {
2018-01-03 16:38:50 +01:00
const options = {
arguments: [ actor, activity ],
errorMessage: 'Cannot update the remote actor with many retries'
2018-01-03 16:38:50 +01:00
}
return retryTransactionWrapper(updateRemoteActor, options)
2018-01-03 16:38:50 +01:00
}
async function updateRemoteActor (actor: ActorModel, activity: ActivityUpdate) {
const actorAttributesToUpdate = activity.object as ActivityPubActor
2018-01-03 16:38:50 +01:00
logger.debug('Updating remote account "%s".', actorAttributesToUpdate.uuid)
let accountOrChannelInstance: AccountModel | VideoChannelModel
2018-01-03 16:38:50 +01:00
let actorFieldsSave: object
let accountOrChannelFieldsSave: object
2018-01-03 16:38:50 +01:00
// Fetch icon?
const avatarName = await fetchAvatarIfExists(actorAttributesToUpdate)
2018-01-03 16:38:50 +01:00
try {
await sequelizeTypescript.transaction(async t => {
2018-01-04 14:04:02 +01:00
actorFieldsSave = actor.toJSON()
2018-01-03 16:38:50 +01:00
if (actorAttributesToUpdate.type === 'Group') accountOrChannelInstance = actor.VideoChannel
else accountOrChannelInstance = actor.Account
accountOrChannelFieldsSave = accountOrChannelInstance.toJSON()
await updateActorInstance(actor, actorAttributesToUpdate)
2018-01-03 16:38:50 +01:00
2018-01-04 14:04:02 +01:00
if (avatarName !== undefined) {
await updateActorAvatarInstance(actor, avatarName, t)
2018-01-03 16:38:50 +01:00
}
await actor.save({ transaction: t })
accountOrChannelInstance.set('name', actorAttributesToUpdate.name || actorAttributesToUpdate.preferredUsername)
accountOrChannelInstance.set('description', actorAttributesToUpdate.summary)
accountOrChannelInstance.set('support', actorAttributesToUpdate.support)
await accountOrChannelInstance.save({ transaction: t })
2018-01-03 16:38:50 +01:00
})
logger.info('Remote account with uuid %s updated', actorAttributesToUpdate.uuid)
2018-01-03 16:38:50 +01:00
} catch (err) {
2018-01-04 14:04:02 +01:00
if (actor !== undefined && actorFieldsSave !== undefined) {
resetSequelizeInstance(actor, actorFieldsSave)
2018-01-03 16:38:50 +01:00
}
if (accountOrChannelInstance !== undefined && accountOrChannelFieldsSave !== undefined) {
resetSequelizeInstance(accountOrChannelInstance, accountOrChannelFieldsSave)
2018-01-03 16:38:50 +01:00
}
// This is just a debug because we will retry the insert
logger.debug('Cannot update the remote account.', err)
throw err
}
}