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

                                                             
                                                                       
 
                                                                   









                                                                              
                                                                               

                                  


                                                                                                 
                                                                        
 
                                                     




                             
                                                                    
                  

                     
      
                                                                            
 

                                                
                                    

                                                                       
     

    
import { ActivityLike } from '../../../../shared/models/activitypub'
import { retryTransactionWrapper } from '../../../helpers/database-utils'
import { sequelizeTypescript } from '../../../initializers'
import { AccountVideoRateModel } from '../../../models/account/account-video-rate'
import { ActorModel } from '../../../models/activitypub/actor'
import { getOrCreateActorAndServerAndModel } from '../actor'
import { forwardVideoRelatedActivity } from '../send/utils'
import { getOrCreateVideoAndAccountAndChannel } from '../videos'

async function processLikeActivity (activity: ActivityLike) {
  const actor = await getOrCreateActorAndServerAndModel(activity.actor)

  return retryTransactionWrapper(processLikeVideo, actor, activity)
}

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

export {
  processLikeActivity
}

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

async function processLikeVideo (byActor: ActorModel, activity: ActivityLike) {
  const videoUrl = activity.object

  const byAccount = byActor.Account
  if (!byAccount) throw new Error('Cannot create like with the non account actor ' + byActor.url)

  const { video } = await getOrCreateVideoAndAccountAndChannel(videoUrl)

  return sequelizeTypescript.transaction(async t => {
    const rate = {
      type: 'like' as 'like',
      videoId: video.id,
      accountId: byAccount.id
    }
    const [ , created ] = await AccountVideoRateModel.findOrCreate({
      where: rate,
      defaults: rate,
      transaction: t
    })
    if (created === true) await video.increment('likes', { transaction: t })

    if (video.isOwned() && created === true) {
      // Don't resend the activity to the sender
      const exceptions = [ byActor ]

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