1
0
Fork 0
peertube/server/core/lib/job-queue/handlers/activitypub-http-unicast.ts

39 lines
1.3 KiB
TypeScript

import { Job } from 'bullmq'
import { ActivitypubHttpUnicastPayload } from '@peertube/peertube-models'
import { buildGlobalHTTPHeaders, buildSignedRequestOptions, computeBody } from '@server/lib/activitypub/send/http.js'
import { logger } from '../../../helpers/logger.js'
import { doRequest } from '../../../helpers/requests.js'
import { ActorFollowHealthCache } from '../../actor-follow-health-cache.js'
async function processActivityPubHttpUnicast (job: Job) {
logger.info('Processing ActivityPub unicast in job %s.', job.id)
const payload = job.data as ActivitypubHttpUnicastPayload
const uri = payload.uri
const body = await computeBody(payload)
const httpSignatureOptions = await buildSignedRequestOptions({ signatureActorId: payload.signatureActorId, hasPayload: true })
const options = {
method: 'POST' as 'POST',
json: body,
httpSignature: httpSignatureOptions,
headers: await buildGlobalHTTPHeaders(body)
}
try {
await doRequest(uri, options)
ActorFollowHealthCache.Instance.updateActorFollowsHealth([ uri ], [])
} catch (err) {
ActorFollowHealthCache.Instance.updateActorFollowsHealth([], [ uri ])
throw err
}
}
// ---------------------------------------------------------------------------
export {
processActivityPubHttpUnicast
}