2018-07-10 17:02:20 +02:00
|
|
|
import * as Bull from 'bull'
|
2018-04-18 16:04:49 +02:00
|
|
|
import * as Bluebird from 'bluebird'
|
2017-12-28 11:16:08 +01:00
|
|
|
import { logger } from '../../../helpers/logger'
|
|
|
|
import { doRequest } from '../../../helpers/requests'
|
2018-01-11 09:35:50 +01:00
|
|
|
import { ActorFollowModel } from '../../../models/activitypub/actor-follow'
|
2018-01-25 15:05:18 +01:00
|
|
|
import { buildSignedRequestOptions, computeBody } from './utils/activitypub-http-utils'
|
2018-05-09 09:08:22 +02:00
|
|
|
import { BROADCAST_CONCURRENCY, JOB_REQUEST_TIMEOUT } from '../../../initializers'
|
2017-11-17 11:35:10 +01:00
|
|
|
|
2018-01-25 15:05:18 +01:00
|
|
|
export type ActivitypubHttpBroadcastPayload = {
|
|
|
|
uris: string[]
|
|
|
|
signatureActorId?: number
|
|
|
|
body: any
|
|
|
|
}
|
|
|
|
|
2018-07-10 17:02:20 +02:00
|
|
|
async function processActivityPubHttpBroadcast (job: Bull.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 = {
|
|
|
|
method: 'POST',
|
|
|
|
uri: '',
|
2017-12-19 10:34:56 +01:00
|
|
|
json: body,
|
2018-05-09 09:08:22 +02:00
|
|
|
httpSignature: httpSignatureOptions,
|
|
|
|
timeout: JOB_REQUEST_TIMEOUT
|
2017-11-17 11:35:10 +01:00
|
|
|
}
|
|
|
|
|
2018-01-11 09:35:50 +01:00
|
|
|
const badUrls: string[] = []
|
|
|
|
const goodUrls: string[] = []
|
|
|
|
|
2018-04-18 16:04:49 +02:00
|
|
|
await Bluebird.map(payload.uris, uri => {
|
|
|
|
return doRequest(Object.assign({}, options, { uri }))
|
|
|
|
.then(() => goodUrls.push(uri))
|
|
|
|
.catch(() => badUrls.push(uri))
|
|
|
|
}, { concurrency: BROADCAST_CONCURRENCY })
|
2018-01-11 09:35:50 +01:00
|
|
|
|
2018-03-15 14:31:08 +01:00
|
|
|
return ActorFollowModel.updateActorFollowsScore(goodUrls, badUrls, undefined)
|
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
|
|
|
}
|