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

46 lines
1.5 KiB
TypeScript
Raw Normal View History

2021-08-27 08:32:44 -04:00
import { map } from 'bluebird'
2022-08-08 04:42:08 -04:00
import { Job } from 'bullmq'
2022-03-23 11:14:33 -04:00
import { buildGlobalHeaders, buildSignedRequestOptions, computeBody } from '@server/lib/activitypub/send'
import { ActorFollowHealthCache } from '@server/lib/actor-follow-health-cache'
2021-03-03 04:10:55 -05:00
import { ActivitypubHttpBroadcastPayload } from '@shared/models'
2017-12-28 05:16:08 -05:00
import { logger } from '../../../helpers/logger'
import { doRequest } from '../../../helpers/requests'
2021-06-14 12:06:58 -04:00
import { BROADCAST_CONCURRENCY } from '../../../initializers/constants'
2021-08-27 08:32:44 -04:00
async function processActivityPubHttpBroadcast (job: Job) {
2022-08-08 09:48:17 -04:00
logger.info('Processing ActivityPub broadcast in job %s.', job.id)
const payload = job.data as ActivitypubHttpBroadcastPayload
2017-11-17 05:35:10 -05:00
const body = await computeBody(payload)
2017-12-19 04:34:56 -05:00
const httpSignatureOptions = await buildSignedRequestOptions(payload)
2017-11-17 05:35:10 -05:00
const options = {
2021-03-08 08:24:11 -05:00
method: 'POST' as 'POST',
2017-12-19 04:34:56 -05:00
json: body,
2018-05-09 03:08:22 -04:00
httpSignature: httpSignatureOptions,
2018-10-10 02:51:58 -04:00
headers: buildGlobalHeaders(body)
2017-11-17 05:35:10 -05:00
}
const badUrls: string[] = []
const goodUrls: string[] = []
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 10:04:49 -04:00
}, { concurrency: BROADCAST_CONCURRENCY })
return ActorFollowHealthCache.Instance.updateActorFollowsHealth(goodUrls, badUrls)
2017-11-17 05:35:10 -05:00
}
// ---------------------------------------------------------------------------
export {
processActivityPubHttpBroadcast
2017-11-17 05:35:10 -05:00
}