2021-08-27 14:32:44 +02:00
|
|
|
import { Job } from 'bull'
|
2021-03-03 10:10:55 +01:00
|
|
|
import { ActivitypubHttpUnicastPayload } from '@shared/models'
|
2018-01-25 15:05:18 +01:00
|
|
|
import { logger } from '../../../helpers/logger'
|
|
|
|
import { doRequest } from '../../../helpers/requests'
|
2021-10-13 11:47:32 +02:00
|
|
|
import { ActorFollowHealthCache } from '../../actor-follow-health-cache'
|
2021-03-03 10:10:55 +01:00
|
|
|
import { buildGlobalHeaders, buildSignedRequestOptions, computeBody } from './utils/activitypub-http-utils'
|
2018-01-25 15:05:18 +01:00
|
|
|
|
2021-08-27 14:32:44 +02:00
|
|
|
async function processActivityPubHttpUnicast (job: Job) {
|
2018-01-25 15:05:18 +01:00
|
|
|
logger.info('Processing ActivityPub unicast in job %d.', job.id)
|
|
|
|
|
|
|
|
const payload = job.data as ActivitypubHttpUnicastPayload
|
|
|
|
const uri = payload.uri
|
|
|
|
|
|
|
|
const body = await computeBody(payload)
|
|
|
|
const httpSignatureOptions = await buildSignedRequestOptions(payload)
|
|
|
|
|
|
|
|
const options = {
|
2021-03-08 14:24:11 +01:00
|
|
|
method: 'POST' as 'POST',
|
2018-01-25 15:05:18 +01:00
|
|
|
json: body,
|
2018-05-09 09:08:22 +02:00
|
|
|
httpSignature: httpSignatureOptions,
|
2018-10-10 08:51:58 +02:00
|
|
|
headers: buildGlobalHeaders(body)
|
2018-01-25 15:05:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
2021-03-08 14:24:11 +01:00
|
|
|
await doRequest(uri, options)
|
2021-10-13 11:47:32 +02:00
|
|
|
ActorFollowHealthCache.Instance.updateActorFollowsHealth([ uri ], [])
|
2018-01-25 15:05:18 +01:00
|
|
|
} catch (err) {
|
2021-10-13 11:47:32 +02:00
|
|
|
ActorFollowHealthCache.Instance.updateActorFollowsHealth([], [ uri ])
|
2018-01-25 15:05:18 +01:00
|
|
|
|
|
|
|
throw err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
|
|
|
processActivityPubHttpUnicast
|
|
|
|
}
|