2017-12-12 17:53:50 +01:00
|
|
|
import { ActivityDelete } from '../../../../shared/models/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'
|
2017-12-14 17:38:41 +01:00
|
|
|
import { ActorModel } from '../../../models/activitypub/actor'
|
2017-12-12 17:53:50 +01:00
|
|
|
import { VideoModel } from '../../../models/video/video'
|
|
|
|
import { VideoChannelModel } from '../../../models/video/video-channel'
|
2018-01-04 11:19:16 +01:00
|
|
|
import { VideoCommentModel } from '../../../models/video/video-comment'
|
2018-10-02 11:33:18 +02:00
|
|
|
import { forwardVideoRelatedActivity } from '../send/utils'
|
2017-11-13 17:39:41 +01:00
|
|
|
|
2018-09-19 14:44:20 +02:00
|
|
|
async function processDeleteActivity (activity: ActivityDelete, byActor: ActorModel) {
|
2018-01-04 17:50:30 +01:00
|
|
|
const objectUrl = typeof activity.object === 'string' ? activity.object : activity.object.id
|
2017-11-13 17:39:41 +01:00
|
|
|
|
2018-01-18 10:53:54 +01:00
|
|
|
if (activity.actor === objectUrl) {
|
2018-09-19 14:44:20 +02:00
|
|
|
// We need more attributes (all the account and channel)
|
|
|
|
const byActorFull = await ActorModel.loadByUrlAndPopulateAccountAndChannel(byActor.url)
|
2018-01-18 10:53:54 +01:00
|
|
|
|
2018-09-19 14:44:20 +02:00
|
|
|
if (byActorFull.type === 'Person') {
|
|
|
|
if (!byActorFull.Account) throw new Error('Actor ' + byActorFull.url + ' is a person but we cannot find it in database.')
|
2017-11-13 17:39:41 +01:00
|
|
|
|
2018-09-19 14:44:20 +02:00
|
|
|
byActorFull.Account.Actor = await byActorFull.Account.$get('Actor') as ActorModel
|
|
|
|
return retryTransactionWrapper(processDeleteAccount, byActorFull.Account)
|
|
|
|
} else if (byActorFull.type === 'Group') {
|
|
|
|
if (!byActorFull.VideoChannel) throw new Error('Actor ' + byActorFull.url + ' is a group but we cannot find it in database.')
|
2017-12-14 17:38:41 +01:00
|
|
|
|
2018-09-19 14:44:20 +02:00
|
|
|
byActorFull.VideoChannel.Actor = await byActorFull.VideoChannel.$get('Actor') as ActorModel
|
|
|
|
return retryTransactionWrapper(processDeleteVideoChannel, byActorFull.VideoChannel)
|
2017-11-13 17:39:41 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2018-01-04 17:50:30 +01:00
|
|
|
const videoCommentInstance = await VideoCommentModel.loadByUrlAndPopulateAccount(objectUrl)
|
2018-01-04 11:19:16 +01:00
|
|
|
if (videoCommentInstance) {
|
2018-09-19 14:44:20 +02:00
|
|
|
return retryTransactionWrapper(processDeleteVideoComment, byActor, videoCommentInstance, activity)
|
2018-01-04 11:19:16 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2018-01-04 17:50:30 +01:00
|
|
|
const videoInstance = await VideoModel.loadByUrlAndPopulateAccount(objectUrl)
|
2018-01-04 11:19:16 +01:00
|
|
|
if (videoInstance) {
|
2018-09-14 16:51:35 +02:00
|
|
|
if (videoInstance.isOwned()) throw new Error(`Remote instance cannot delete owned video ${videoInstance.url}.`)
|
|
|
|
|
2018-09-19 14:44:20 +02:00
|
|
|
return retryTransactionWrapper(processDeleteVideo, byActor, videoInstance)
|
2017-11-13 17:39:41 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-13 14:55:18 +02:00
|
|
|
return undefined
|
2017-11-13 17:39:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
|
|
|
processDeleteActivity
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2017-12-14 17:38:41 +01:00
|
|
|
async function processDeleteVideo (actor: ActorModel, videoToDelete: VideoModel) {
|
2017-11-13 17:39:41 +01:00
|
|
|
logger.debug('Removing remote video "%s".', videoToDelete.uuid)
|
|
|
|
|
2017-12-12 17:53:50 +01:00
|
|
|
await sequelizeTypescript.transaction(async t => {
|
2017-12-14 17:38:41 +01:00
|
|
|
if (videoToDelete.VideoChannel.Account.Actor.id !== actor.id) {
|
|
|
|
throw new Error('Account ' + actor.url + ' does not own video channel ' + videoToDelete.VideoChannel.Actor.url)
|
2017-11-13 17:39:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
await videoToDelete.destroy({ transaction: t })
|
|
|
|
})
|
|
|
|
|
|
|
|
logger.info('Remote video with uuid %s removed.', videoToDelete.uuid)
|
|
|
|
}
|
|
|
|
|
2017-12-14 17:38:41 +01:00
|
|
|
async function processDeleteAccount (accountToRemove: AccountModel) {
|
|
|
|
logger.debug('Removing remote account "%s".', accountToRemove.Actor.uuid)
|
2017-11-13 17:39:41 +01:00
|
|
|
|
2017-12-12 17:53:50 +01:00
|
|
|
await sequelizeTypescript.transaction(async t => {
|
2017-12-14 17:38:41 +01:00
|
|
|
await accountToRemove.destroy({ transaction: t })
|
2017-11-13 17:39:41 +01:00
|
|
|
})
|
|
|
|
|
2017-12-14 17:38:41 +01:00
|
|
|
logger.info('Remote account with uuid %s removed.', accountToRemove.Actor.uuid)
|
2017-11-13 17:39:41 +01:00
|
|
|
}
|
|
|
|
|
2017-12-14 17:38:41 +01:00
|
|
|
async function processDeleteVideoChannel (videoChannelToRemove: VideoChannelModel) {
|
|
|
|
logger.debug('Removing remote video channel "%s".', videoChannelToRemove.Actor.uuid)
|
2017-11-13 17:39:41 +01:00
|
|
|
|
2017-12-12 17:53:50 +01:00
|
|
|
await sequelizeTypescript.transaction(async t => {
|
2017-12-14 17:38:41 +01:00
|
|
|
await videoChannelToRemove.destroy({ transaction: t })
|
2017-11-13 17:39:41 +01:00
|
|
|
})
|
|
|
|
|
2017-12-14 17:38:41 +01:00
|
|
|
logger.info('Remote video channel with uuid %s removed.', videoChannelToRemove.Actor.uuid)
|
2017-11-13 17:39:41 +01:00
|
|
|
}
|
2018-01-04 11:19:16 +01:00
|
|
|
|
2018-06-13 14:27:40 +02:00
|
|
|
function processDeleteVideoComment (byActor: ActorModel, videoComment: VideoCommentModel, activity: ActivityDelete) {
|
2018-01-04 11:19:16 +01:00
|
|
|
logger.debug('Removing remote video comment "%s".', videoComment.url)
|
|
|
|
|
|
|
|
return sequelizeTypescript.transaction(async t => {
|
2018-09-19 15:47:55 +02:00
|
|
|
if (videoComment.Account.id !== byActor.Account.id) {
|
|
|
|
throw new Error('Account ' + byActor.url + ' does not own video comment ' + videoComment.url)
|
|
|
|
}
|
|
|
|
|
2018-01-04 11:19:16 +01:00
|
|
|
await videoComment.destroy({ transaction: t })
|
|
|
|
|
2018-03-27 10:26:52 +02:00
|
|
|
if (videoComment.Video.isOwned()) {
|
|
|
|
// Don't resend the activity to the sender
|
|
|
|
const exceptions = [ byActor ]
|
2018-10-02 11:33:18 +02:00
|
|
|
await forwardVideoRelatedActivity(activity, t, exceptions, videoComment.Video)
|
2018-03-27 10:26:52 +02:00
|
|
|
}
|
|
|
|
|
2018-01-04 11:19:16 +01:00
|
|
|
logger.info('Remote video comment %s removed.', videoComment.url)
|
|
|
|
})
|
|
|
|
}
|