2021-08-27 14:32:44 +02:00
|
|
|
import { map } from 'bluebird'
|
|
|
|
import { Job } from 'bull'
|
2022-03-23 16:14:33 +01:00
|
|
|
import { buildGlobalHeaders, buildSignedRequestOptions, computeBody } from '@server/lib/activitypub/send'
|
2021-10-13 11:47:32 +02:00
|
|
|
import { ActorFollowHealthCache } from '@server/lib/actor-follow-health-cache'
|
2021-03-03 10:10:55 +01:00
|
|
|
import { ActivitypubHttpBroadcastPayload } from '@shared/models'
|
2017-12-28 11:16:08 +01:00
|
|
|
import { logger } from '../../../helpers/logger'
|
|
|
|
import { doRequest } from '../../../helpers/requests'
|
2021-06-14 18:06:58 +02:00
|
|
|
import { BROADCAST_CONCURRENCY } from '../../../initializers/constants'
|
2018-01-25 15:05:18 +01:00
|
|
|
|
2021-08-27 14:32:44 +02:00
|
|
|
async function processActivityPubHttpBroadcast (job: Job) {
|
2018-01-25 15:05:18 +01:00
|
|
|
logger.info('Processing ActivityPub broadcast in job %d.', job.id)
|
|
|
|
|
|
|
|
const payload = job.data as ActivitypubHttpBroadcastPayload
|
2017-11-17 11:35:10 +01:00
|
|
|
|
2017-11-24 13:41:10 +01:00
|
|
|
const body = await computeBody(payload)
|
2017-12-19 10:34:56 +01:00
|
|
|
const httpSignatureOptions = await buildSignedRequestOptions(payload)
|
2017-11-17 11:35:10 +01:00
|
|
|
|
|
|
|
const options = {
|
2021-03-08 14:24:11 +01:00
|
|
|
method: 'POST' as 'POST',
|
2017-12-19 10:34:56 +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)
|
2017-11-17 11:35:10 +01:00
|
|
|
}
|
|
|
|
|
2018-01-11 09:35:50 +01:00
|
|
|
const badUrls: string[] = []
|
|
|
|
const goodUrls: string[] = []
|
|
|
|
|
2021-10-13 11:47:32 +02:00
|
|
|
await map(payload.uris, async uri => {
|
|
|
|
try {
|
|
|
|
await doRequest(uri, options)
|
|
|
|
goodUrls.push(uri)
|
|
|
|
} catch (err) {
|
|
|
|
logger.debug('HTTP broadcast to %s failed.', uri, { err })
|
|
|
|
badUrls.push(uri)
|
|
|
|
}
|
2018-04-18 16:04:49 +02:00
|
|
|
}, { concurrency: BROADCAST_CONCURRENCY })
|
2018-01-11 09:35:50 +01:00
|
|
|
|
2021-10-13 11:47:32 +02:00
|
|
|
return ActorFollowHealthCache.Instance.updateActorFollowsHealth(goodUrls, badUrls)
|
2017-11-17 11:35:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
2018-01-25 15:05:18 +01:00
|
|
|
processActivityPubHttpBroadcast
|
2017-11-17 11:35:10 +01:00
|
|
|
}
|