2022-08-08 03:42:08 -05:00
|
|
|
import { Job } from 'bullmq'
|
2022-03-23 10:14:33 -05:00
|
|
|
import { buildGlobalHeaders, buildSignedRequestOptions, computeBody } from '@server/lib/activitypub/send'
|
2021-03-03 03:10:55 -06:00
|
|
|
import { ActivitypubHttpUnicastPayload } from '@shared/models'
|
2018-01-25 08:05:18 -06:00
|
|
|
import { logger } from '../../../helpers/logger'
|
|
|
|
import { doRequest } from '../../../helpers/requests'
|
2021-10-13 04:47:32 -05:00
|
|
|
import { ActorFollowHealthCache } from '../../actor-follow-health-cache'
|
2018-01-25 08:05:18 -06:00
|
|
|
|
2021-08-27 07:32:44 -05:00
|
|
|
async function processActivityPubHttpUnicast (job: Job) {
|
2022-08-08 08:48:17 -05:00
|
|
|
logger.info('Processing ActivityPub unicast in job %s.', job.id)
|
2018-01-25 08:05:18 -06:00
|
|
|
|
|
|
|
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 07:24:11 -06:00
|
|
|
method: 'POST' as 'POST',
|
2018-01-25 08:05:18 -06:00
|
|
|
json: body,
|
2018-05-09 02:08:22 -05:00
|
|
|
httpSignature: httpSignatureOptions,
|
2018-10-10 01:51:58 -05:00
|
|
|
headers: buildGlobalHeaders(body)
|
2018-01-25 08:05:18 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
2021-03-08 07:24:11 -06:00
|
|
|
await doRequest(uri, options)
|
2021-10-13 04:47:32 -05:00
|
|
|
ActorFollowHealthCache.Instance.updateActorFollowsHealth([ uri ], [])
|
2018-01-25 08:05:18 -06:00
|
|
|
} catch (err) {
|
2021-10-13 04:47:32 -05:00
|
|
|
ActorFollowHealthCache.Instance.updateActorFollowsHealth([], [ uri ])
|
2018-01-25 08:05:18 -06:00
|
|
|
|
|
|
|
throw err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
|
|
|
processActivityPubHttpUnicast
|
|
|
|
}
|