PeerTube/server/core/lib/job-queue/handlers/activitypub-http-unicast.ts

40 lines
1.3 KiB
TypeScript
Raw Normal View History

2022-08-08 10:42:08 +02:00
import { Job } from 'bullmq'
import { ActivitypubHttpUnicastPayload } from '@peertube/peertube-models'
import { buildGlobalHTTPHeaders } from '@server/helpers/activity-pub-utils.js'
import { buildSignedRequestOptions, computeBody } from '@server/lib/activitypub/send/index.js'
import { logger } from '../../../helpers/logger.js'
import { doRequest } from '../../../helpers/requests.js'
import { ActorFollowHealthCache } from '../../actor-follow-health-cache.js'
2021-08-27 14:32:44 +02:00
async function processActivityPubHttpUnicast (job: Job) {
2022-08-08 15:48:17 +02:00
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 = {
2021-03-08 14:24:11 +01:00
method: 'POST' as 'POST',
json: body,
2018-05-09 09:08:22 +02:00
httpSignature: httpSignatureOptions,
headers: buildGlobalHTTPHeaders(body)
}
try {
2021-03-08 14:24:11 +01:00
await doRequest(uri, options)
ActorFollowHealthCache.Instance.updateActorFollowsHealth([ uri ], [])
} catch (err) {
ActorFollowHealthCache.Instance.updateActorFollowsHealth([], [ uri ])
throw err
}
}
// ---------------------------------------------------------------------------
export {
processActivityPubHttpUnicast
}