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

                                                                                    
                                                                                    
 
                                               









                                                                              
                                                                                   
                                                                                      

                                                                


                                    
 
                                        
   
 
import { ActivityAccept } from '../../../../shared/models/activitypub'
import { ActorFollowModel } from '../../../models/activitypub/actor-follow'
import { addFetchOutboxJob } from '../actor'
import { APProcessorOptions } from '../../../typings/activitypub-processor.model'
import { MActorDefault, MActorSignature } from '../../../typings/models'

async function processAcceptActivity (options: APProcessorOptions<ActivityAccept>) {
  const { byActor: targetActor, inboxActor } = options
  if (inboxActor === undefined) throw new Error('Need to accept on explicit inbox.')

  return processAccept(inboxActor, targetActor)
}

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

export {
  processAcceptActivity
}

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

async function processAccept (actor: MActorDefault, targetActor: MActorSignature) {
  const follow = await ActorFollowModel.loadByActorAndTarget(actor.id, targetActor.id)
  if (!follow) throw new Error('Cannot find associated follow.')

  if (follow.state !== 'accepted') {
    follow.set('state', 'accepted')
    await follow.save()

    await addFetchOutboxJob(targetActor)
  }
}