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

149 lines
5.4 KiB
TypeScript
Raw Normal View History

2018-05-11 15:10:13 +02:00
import { ActivityAnnounce, ActivityFollow, ActivityLike, ActivityUndo } from '../../../../shared/models/activitypub'
2017-12-12 17:53:50 +01:00
import { DislikeObject } from '../../../../shared/models/activitypub/objects'
import { getActorUrl } from '../../../helpers/activitypub'
2017-12-28 11:16:08 +01:00
import { retryTransactionWrapper } from '../../../helpers/database-utils'
import { logger } from '../../../helpers/logger'
2017-12-12 17:53:50 +01:00
import { sequelizeTypescript } from '../../../initializers'
import { AccountModel } from '../../../models/account/account'
import { AccountVideoRateModel } from '../../../models/account/account-video-rate'
2017-12-14 17:38:41 +01:00
import { ActorModel } from '../../../models/activitypub/actor'
import { ActorFollowModel } from '../../../models/activitypub/actor-follow'
2018-05-25 11:32:36 +02:00
import { forwardActivity } from '../send/utils'
2018-01-10 17:18:12 +01:00
import { getOrCreateAccountAndVideoAndChannel } from '../videos'
2018-05-11 15:10:13 +02:00
import { VideoShareModel } from '../../../models/video/video-share'
2017-11-20 09:43:39 +01:00
async function processUndoActivity (activity: ActivityUndo) {
const activityToUndo = activity.object
const actorUrl = getActorUrl(activity.actor)
2017-11-23 14:19:55 +01:00
if (activityToUndo.type === 'Like') {
return processUndoLike(actorUrl, activity)
2017-11-23 14:19:55 +01:00
} else if (activityToUndo.type === 'Create' && activityToUndo.object.type === 'Dislike') {
return processUndoDislike(actorUrl, activity)
2017-11-23 14:19:55 +01:00
} else if (activityToUndo.type === 'Follow') {
return processUndoFollow(actorUrl, activityToUndo)
2018-05-11 15:10:13 +02:00
} else if (activityToUndo.type === 'Announce') {
return processUndoAnnounce(actorUrl, activityToUndo)
2017-11-20 09:43:39 +01:00
}
logger.warn('Unknown activity object type %s -> %s when undo activity.', activityToUndo.type, { activity: activity.id })
return undefined
}
// ---------------------------------------------------------------------------
export {
processUndoActivity
}
// ---------------------------------------------------------------------------
2017-11-23 14:19:55 +01:00
2017-12-14 17:38:41 +01:00
function processUndoLike (actorUrl: string, activity: ActivityUndo) {
2017-11-23 14:19:55 +01:00
const options = {
2017-12-14 17:38:41 +01:00
arguments: [ actorUrl, activity ],
2017-11-23 14:19:55 +01:00
errorMessage: 'Cannot undo like with many retries.'
}
return retryTransactionWrapper(undoLike, options)
}
2018-01-10 17:18:12 +01:00
async function undoLike (actorUrl: string, activity: ActivityUndo) {
const likeActivity = activity.object as ActivityLike
2018-01-10 17:18:12 +01:00
const { video } = await getOrCreateAccountAndVideoAndChannel(likeActivity.object)
2017-12-12 17:53:50 +01:00
return sequelizeTypescript.transaction(async t => {
2017-12-14 17:38:41 +01:00
const byAccount = await AccountModel.loadByUrl(actorUrl, t)
if (!byAccount) throw new Error('Unknown account ' + actorUrl)
2017-11-23 14:19:55 +01:00
2017-12-12 17:53:50 +01:00
const rate = await AccountVideoRateModel.load(byAccount.id, video.id, t)
2017-11-23 14:19:55 +01:00
if (!rate) throw new Error(`Unknown rate by account ${byAccount.id} for video ${video.id}.`)
await rate.destroy({ transaction: t })
await video.decrement('likes', { transaction: t })
2017-11-23 14:19:55 +01:00
if (video.isOwned()) {
// Don't resend the activity to the sender
2017-12-14 17:38:41 +01:00
const exceptions = [ byAccount.Actor ]
await forwardActivity(activity, t, exceptions)
}
2017-11-23 14:19:55 +01:00
})
}
2017-12-14 17:38:41 +01:00
function processUndoDislike (actorUrl: string, activity: ActivityUndo) {
2017-11-23 14:19:55 +01:00
const options = {
2017-12-14 17:38:41 +01:00
arguments: [ actorUrl, activity ],
2017-11-23 14:19:55 +01:00
errorMessage: 'Cannot undo dislike with many retries.'
}
return retryTransactionWrapper(undoDislike, options)
}
2018-01-10 17:18:12 +01:00
async function undoDislike (actorUrl: string, activity: ActivityUndo) {
const dislike = activity.object.object as DislikeObject
2018-01-10 17:18:12 +01:00
const { video } = await getOrCreateAccountAndVideoAndChannel(dislike.object)
2017-12-12 17:53:50 +01:00
return sequelizeTypescript.transaction(async t => {
2017-12-14 17:38:41 +01:00
const byAccount = await AccountModel.loadByUrl(actorUrl, t)
if (!byAccount) throw new Error('Unknown account ' + actorUrl)
2017-11-23 14:19:55 +01:00
2017-12-12 17:53:50 +01:00
const rate = await AccountVideoRateModel.load(byAccount.id, video.id, t)
2017-11-23 14:19:55 +01:00
if (!rate) throw new Error(`Unknown rate by account ${byAccount.id} for video ${video.id}.`)
await rate.destroy({ transaction: t })
await video.decrement('dislikes', { transaction: t })
2017-11-23 14:19:55 +01:00
if (video.isOwned()) {
// Don't resend the activity to the sender
2017-12-14 17:38:41 +01:00
const exceptions = [ byAccount.Actor ]
await forwardActivity(activity, t, exceptions)
}
2017-11-23 14:19:55 +01:00
})
}
2017-12-14 17:38:41 +01:00
function processUndoFollow (actorUrl: string, followActivity: ActivityFollow) {
2017-11-23 14:19:55 +01:00
const options = {
2017-12-14 17:38:41 +01:00
arguments: [ actorUrl, followActivity ],
2017-11-23 14:19:55 +01:00
errorMessage: 'Cannot undo follow with many retries.'
}
return retryTransactionWrapper(undoFollow, options)
}
2017-12-14 17:38:41 +01:00
function undoFollow (actorUrl: string, followActivity: ActivityFollow) {
2017-12-12 17:53:50 +01:00
return sequelizeTypescript.transaction(async t => {
2017-12-14 17:38:41 +01:00
const follower = await ActorModel.loadByUrl(actorUrl, t)
const following = await ActorModel.loadByUrl(followActivity.object, t)
const actorFollow = await ActorFollowModel.loadByActorAndTarget(follower.id, following.id, t)
2017-11-23 14:19:55 +01:00
2017-12-14 17:38:41 +01:00
if (!actorFollow) throw new Error(`'Unknown actor follow ${follower.id} -> ${following.id}.`)
2017-11-23 14:19:55 +01:00
2017-12-14 17:38:41 +01:00
await actorFollow.destroy({ transaction: t })
2017-11-23 14:19:55 +01:00
return undefined
})
}
2018-05-11 15:10:13 +02:00
function processUndoAnnounce (actorUrl: string, announceActivity: ActivityAnnounce) {
const options = {
arguments: [ actorUrl, announceActivity ],
errorMessage: 'Cannot undo announce with many retries.'
}
return retryTransactionWrapper(undoAnnounce, options)
}
function undoAnnounce (actorUrl: string, announceActivity: ActivityAnnounce) {
return sequelizeTypescript.transaction(async t => {
const share = await VideoShareModel.loadByUrl(announceActivity.id, t)
if (!share) throw new Error(`'Unknown video share ${announceActivity.id}.`)
await share.destroy({ transaction: t })
return undefined
})
}