PeerTube/server/lib/activitypub/send/send-delete.ts

54 lines
1.7 KiB
TypeScript
Raw Normal View History

2017-11-20 09:43:39 +01:00
import { Transaction } from 'sequelize'
import { ActivityDelete } from '../../../../shared/models/activitypub/activity'
import { database as db } from '../../../initializers'
import { AccountInstance, VideoChannelInstance, VideoInstance } from '../../../models'
import { broadcastToFollowers } from './misc'
async function sendDeleteVideoChannel (videoChannel: VideoChannelInstance, t: Transaction) {
const byAccount = videoChannel.Account
const data = deleteActivityData(videoChannel.url, byAccount)
2017-11-20 09:43:39 +01:00
const accountsInvolved = await db.VideoChannelShare.loadAccountsByShare(videoChannel.id, t)
2017-11-20 09:43:39 +01:00
accountsInvolved.push(byAccount)
return broadcastToFollowers(data, byAccount, accountsInvolved, t)
}
async function sendDeleteVideo (video: VideoInstance, t: Transaction) {
const byAccount = video.VideoChannel.Account
const data = deleteActivityData(video.url, byAccount)
2017-11-20 09:43:39 +01:00
const accountsInvolved = await db.VideoShare.loadAccountsByShare(video.id, t)
2017-11-20 09:43:39 +01:00
accountsInvolved.push(byAccount)
return broadcastToFollowers(data, byAccount, accountsInvolved, t)
}
async function sendDeleteAccount (account: AccountInstance, t: Transaction) {
2017-11-30 13:16:23 +01:00
const data = deleteActivityData(account.url, account)
2017-11-20 09:43:39 +01:00
return broadcastToFollowers(data, account, [ account ], t)
}
// ---------------------------------------------------------------------------
export {
sendDeleteVideoChannel,
sendDeleteVideo,
sendDeleteAccount
}
// ---------------------------------------------------------------------------
function deleteActivityData (url: string, byAccount: AccountInstance) {
2017-11-20 09:43:39 +01:00
const activity: ActivityDelete = {
type: 'Delete',
id: url,
actor: byAccount.url
}
return activity
}