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

42 lines
1.4 KiB
TypeScript
Raw Normal View History

2018-04-18 14:04:49 +00:00
import * as Bluebird from 'bluebird'
2021-03-03 09:10:55 +00:00
import * as Bull from 'bull'
import { ActivitypubHttpBroadcastPayload } from '@shared/models'
2017-12-28 10:16:08 +00:00
import { logger } from '../../../helpers/logger'
import { doRequest } from '../../../helpers/requests'
2021-06-14 16:06:58 +00:00
import { BROADCAST_CONCURRENCY } from '../../../initializers/constants'
2019-03-19 13:23:17 +00:00
import { ActorFollowScoreCache } from '../../files-cache'
2021-03-03 09:10:55 +00:00
import { buildGlobalHeaders, buildSignedRequestOptions, computeBody } from './utils/activitypub-http-utils'
2018-07-10 15:02:20 +00:00
async function processActivityPubHttpBroadcast (job: Bull.Job) {
logger.info('Processing ActivityPub broadcast in job %d.', job.id)
const payload = job.data as ActivitypubHttpBroadcastPayload
2017-11-17 10:35:10 +00:00
const body = await computeBody(payload)
2017-12-19 09:34:56 +00:00
const httpSignatureOptions = await buildSignedRequestOptions(payload)
2017-11-17 10:35:10 +00:00
const options = {
2021-03-08 13:24:11 +00:00
method: 'POST' as 'POST',
2017-12-19 09:34:56 +00:00
json: body,
2018-05-09 07:08:22 +00:00
httpSignature: httpSignatureOptions,
2018-10-10 06:51:58 +00:00
headers: buildGlobalHeaders(body)
2017-11-17 10:35:10 +00:00
}
const badUrls: string[] = []
const goodUrls: string[] = []
2018-04-18 14:04:49 +00:00
await Bluebird.map(payload.uris, uri => {
2021-03-08 13:24:11 +00:00
return doRequest(uri, options)
2018-04-18 14:04:49 +00:00
.then(() => goodUrls.push(uri))
.catch(() => badUrls.push(uri))
}, { concurrency: BROADCAST_CONCURRENCY })
return ActorFollowScoreCache.Instance.updateActorFollowsScore(goodUrls, badUrls)
2017-11-17 10:35:10 +00:00
}
// ---------------------------------------------------------------------------
export {
processActivityPubHttpBroadcast
2017-11-17 10:35:10 +00:00
}