1
0
Fork 0
peertube/server/lib/activitypub/process/process-announce.ts

57 lines
1.8 KiB
TypeScript
Raw Normal View History

2017-12-20 09:36:29 -05:00
import { ActivityAnnounce } from '../../../../shared/models/activitypub'
2017-12-28 05:16:08 -05:00
import { retryTransactionWrapper } from '../../../helpers/database-utils'
2017-12-12 11:53:50 -05:00
import { sequelizeTypescript } from '../../../initializers'
2017-12-14 11:38:41 -05:00
import { ActorModel } from '../../../models/activitypub/actor'
2017-12-12 11:53:50 -05:00
import { VideoModel } from '../../../models/video/video'
import { VideoShareModel } from '../../../models/video/video-share'
2017-12-14 11:38:41 -05:00
import { getOrCreateActorAndServerAndModel } from '../actor'
import { forwardVideoRelatedActivity } from '../send/utils'
2018-08-22 10:15:35 -04:00
import { getOrCreateVideoAndAccountAndChannel } from '../videos'
2017-11-15 11:56:21 -05:00
async function processAnnounceActivity (activity: ActivityAnnounce) {
2017-12-14 11:38:41 -05:00
const actorAnnouncer = await getOrCreateActorAndServerAndModel(activity.actor)
2017-11-15 11:56:21 -05:00
2018-06-13 08:27:40 -04:00
return retryTransactionWrapper(processVideoShare, actorAnnouncer, activity)
2017-11-15 11:56:21 -05:00
}
// ---------------------------------------------------------------------------
export {
processAnnounceActivity
}
// ---------------------------------------------------------------------------
2018-06-13 08:27:40 -04:00
async function processVideoShare (actorAnnouncer: ActorModel, activity: ActivityAnnounce) {
2018-01-26 06:02:18 -05:00
const objectUri = typeof activity.object === 'string' ? activity.object : activity.object.id
2018-01-10 11:18:12 -05:00
2018-09-19 05:16:23 -04:00
const { video } = await getOrCreateVideoAndAccountAndChannel({ videoObject: objectUri })
2017-12-12 11:53:50 -05:00
return sequelizeTypescript.transaction(async t => {
// Add share entry
const share = {
2017-12-14 11:38:41 -05:00
actorId: actorAnnouncer.id,
videoId: video.id,
url: activity.id
}
2017-12-12 11:53:50 -05:00
const [ , created ] = await VideoShareModel.findOrCreate({
where: {
url: activity.id
},
defaults: share,
transaction: t
})
if (video.isOwned() && created === true) {
// Don't resend the activity to the sender
2017-12-14 11:38:41 -05:00
const exceptions = [ actorAnnouncer ]
await forwardVideoRelatedActivity(activity, t, exceptions, video)
}
return undefined
})
}