aboutsummaryrefslogblamecommitdiffhomepage
path: root/server/lib/activitypub/process/process-announce.ts
blob: cc88b5423702f0be03dfd8d563b054e3b07c95e2 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                                        
                                                                         
                                                           
                                                              
                                                                   
                                                           
                                                                
 
                                                                                                 
                                                                             






                                                                              


                                                                              
                                                                                           
                                                                                              
 
                                                                                          
 
                                                     
                      

                   
                                 

                        

     
                                                              


                        





                                                
                                           

                                                                       




                    
import { ActivityAnnounce } from '../../../../shared/models/activitypub'
import { retryTransactionWrapper } from '../../../helpers/database-utils'
import { sequelizeTypescript } from '../../../initializers'
import { ActorModel } from '../../../models/activitypub/actor'
import { VideoShareModel } from '../../../models/video/video-share'
import { forwardVideoRelatedActivity } from '../send/utils'
import { getOrCreateVideoAndAccountAndChannel } from '../videos'

async function processAnnounceActivity (activity: ActivityAnnounce, actorAnnouncer: ActorModel) {
  return retryTransactionWrapper(processVideoShare, actorAnnouncer, activity)
}

// ---------------------------------------------------------------------------

export {
  processAnnounceActivity
}

// ---------------------------------------------------------------------------

async function processVideoShare (actorAnnouncer: ActorModel, activity: ActivityAnnounce) {
  const objectUri = typeof activity.object === 'string' ? activity.object : activity.object.id

  const { video } = await getOrCreateVideoAndAccountAndChannel({ videoObject: objectUri })

  return sequelizeTypescript.transaction(async t => {
    // Add share entry

    const share = {
      actorId: actorAnnouncer.id,
      videoId: video.id,
      url: activity.id
    }

    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
      const exceptions = [ actorAnnouncer ]

      await forwardVideoRelatedActivity(activity, t, exceptions, video)
    }

    return undefined
  })
}