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

155 lines
6.0 KiB
TypeScript
Raw Normal View History

2018-09-11 16:27:07 +02:00
import { ActivityUpdate, CacheFileObject, VideoTorrentObject } from '../../../../shared/models/activitypub'
2018-01-03 16:38:50 +01:00
import { ActivityPubActor } from '../../../../shared/models/activitypub/activitypub-actor'
2018-08-14 15:28:30 +02:00
import { resetSequelizeInstance, retryTransactionWrapper } from '../../../helpers/database-utils'
2017-12-28 11:16:08 +01:00
import { logger } from '../../../helpers/logger'
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'
import { VideoChannelModel } from '../../../models/video/video-channel'
import { fetchAvatarIfExists, updateActorAvatarInstance, updateActorInstance } from '../actor'
import { getOrCreateVideoAndAccountAndChannel, getOrCreateVideoChannelFromVideoObject, updateVideoFromAP } from '../videos'
import { sanitizeAndCheckVideoTorrentObject } from '../../../helpers/custom-validators/activitypub/videos'
2018-09-11 16:27:07 +02:00
import { isCacheFileObjectValid } from '../../../helpers/custom-validators/activitypub/cache-file'
2018-10-02 14:39:35 +02:00
import { createOrUpdateCacheFile } from '../cache-file'
import { forwardVideoRelatedActivity } from '../send/utils'
2019-02-26 10:55:40 +01:00
import { PlaylistObject } from '../../../../shared/models/activitypub/objects/playlist-object'
import { createOrUpdateVideoPlaylist } from '../playlist'
2017-11-10 14:34:45 +01:00
async function processUpdateActivity (activity: ActivityUpdate, byActor: ActorModel) {
const objectType = activity.object.type
2017-11-09 17:51:58 +01:00
if (objectType === 'Video') {
return retryTransactionWrapper(processUpdateVideo, byActor, activity)
2018-09-11 16:27:07 +02:00
}
if (objectType === 'Person' || objectType === 'Application' || objectType === 'Group') {
// We need more attributes
const byActorFull = await ActorModel.loadByUrlAndPopulateAccountAndChannel(byActor.url)
return retryTransactionWrapper(processUpdateActor, byActorFull, activity)
2017-11-09 17:51:58 +01:00
}
2017-11-10 14:34:45 +01:00
2018-09-11 16:27:07 +02:00
if (objectType === 'CacheFile') {
// We need more attributes
const byActorFull = await ActorModel.loadByUrlAndPopulateAccountAndChannel(byActor.url)
return retryTransactionWrapper(processUpdateCacheFile, byActorFull, activity)
2018-09-11 16:27:07 +02:00
}
2019-02-26 10:55:40 +01:00
if (objectType === 'Playlist') {
return retryTransactionWrapper(processUpdatePlaylist, byActor, activity)
}
return undefined
2017-11-09 17:51:58 +01:00
}
// ---------------------------------------------------------------------------
export {
processUpdateActivity
}
// ---------------------------------------------------------------------------
2018-06-13 14:27:40 +02:00
async function processUpdateVideo (actor: ActorModel, activity: ActivityUpdate) {
const videoObject = activity.object as VideoTorrentObject
2017-12-14 17:38:41 +01:00
if (sanitizeAndCheckVideoTorrentObject(videoObject) === false) {
logger.debug('Video sent by update is not valid.', { videoObject })
return undefined
}
2018-12-04 15:12:54 +01:00
const { video } = await getOrCreateVideoAndAccountAndChannel({ videoObject: videoObject.id, allowRefresh: false })
2018-08-23 17:58:39 +02:00
const channelActor = await getOrCreateVideoChannelFromVideoObject(videoObject)
2018-01-10 17:18:12 +01:00
2018-09-19 11:41:21 +02:00
const updateOptions = {
video,
videoObject,
account: actor.Account,
channel: channelActor.VideoChannel,
overrideTo: activity.to
}
return updateVideoFromAP(updateOptions)
2018-09-11 16:27:07 +02:00
}
async function processUpdateCacheFile (byActor: ActorModel, activity: ActivityUpdate) {
const cacheFileObject = activity.object as CacheFileObject
if (!isCacheFileObjectValid(cacheFileObject)) {
logger.debug('Cache file object sent by update is not valid.', { cacheFileObject })
2018-09-11 16:27:07 +02:00
return undefined
}
const { video } = await getOrCreateVideoAndAccountAndChannel({ videoObject: cacheFileObject.object })
await sequelizeTypescript.transaction(async t => {
2018-10-02 14:39:35 +02:00
await createOrUpdateCacheFile(cacheFileObject, video, byActor, t)
})
2018-09-11 16:27:07 +02:00
if (video.isOwned()) {
// Don't resend the activity to the sender
const exceptions = [ byActor ]
await forwardVideoRelatedActivity(activity, undefined, exceptions, video)
}
2017-11-10 14:34:45 +01:00
}
2018-01-03 16:38:50 +01:00
2018-06-13 14:27:40 +02:00
async function processUpdateActor (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 })
2019-04-18 11:28:17 +02:00
accountOrChannelInstance.name = actorAttributesToUpdate.name || actorAttributesToUpdate.preferredUsername
accountOrChannelInstance.description = actorAttributesToUpdate.summary
if (accountOrChannelInstance instanceof VideoChannelModel) accountOrChannelInstance.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
2018-03-26 15:54:13 +02:00
logger.debug('Cannot update the remote account.', { err })
2018-01-03 16:38:50 +01:00
throw err
}
}
2019-02-26 10:55:40 +01:00
async function processUpdatePlaylist (byActor: ActorModel, activity: ActivityUpdate) {
const playlistObject = activity.object as PlaylistObject
const byAccount = byActor.Account
if (!byAccount) throw new Error('Cannot update video playlist with the non account actor ' + byActor.url)
await createOrUpdateVideoPlaylist(playlistObject, byAccount, activity.to)
}