2018-01-25 09:05:18 -05:00
|
|
|
import * as kue from 'kue'
|
2017-12-28 05:16:08 -05:00
|
|
|
import { logger } from '../../../helpers/logger'
|
|
|
|
import { doRequest } from '../../../helpers/requests'
|
2018-01-11 03:35:50 -05:00
|
|
|
import { ActorFollowModel } from '../../../models/activitypub/actor-follow'
|
2018-01-25 09:05:18 -05:00
|
|
|
import { buildSignedRequestOptions, computeBody } from './utils/activitypub-http-utils'
|
2017-11-17 05:35:10 -05:00
|
|
|
|
2018-01-25 09:05:18 -05:00
|
|
|
export type ActivitypubHttpBroadcastPayload = {
|
|
|
|
uris: string[]
|
|
|
|
signatureActorId?: number
|
|
|
|
body: any
|
|
|
|
}
|
|
|
|
|
|
|
|
async function processActivityPubHttpBroadcast (job: kue.Job) {
|
|
|
|
logger.info('Processing ActivityPub broadcast in job %d.', job.id)
|
|
|
|
|
|
|
|
const payload = job.data as ActivitypubHttpBroadcastPayload
|
2017-11-17 05:35:10 -05:00
|
|
|
|
2017-11-24 07:41: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 = {
|
|
|
|
method: 'POST',
|
|
|
|
uri: '',
|
2017-12-19 04:34:56 -05:00
|
|
|
json: body,
|
|
|
|
httpSignature: httpSignatureOptions
|
2017-11-17 05:35:10 -05:00
|
|
|
}
|
|
|
|
|
2018-01-11 03:35:50 -05:00
|
|
|
const badUrls: string[] = []
|
|
|
|
const goodUrls: string[] = []
|
|
|
|
|
2017-11-17 05:35:10 -05:00
|
|
|
for (const uri of payload.uris) {
|
|
|
|
options.uri = uri
|
2017-11-23 08:19:55 -05:00
|
|
|
|
|
|
|
try {
|
|
|
|
await doRequest(options)
|
2018-01-11 03:35:50 -05:00
|
|
|
goodUrls.push(uri)
|
2017-11-23 08:19:55 -05:00
|
|
|
} catch (err) {
|
2018-01-25 09:05:18 -05:00
|
|
|
badUrls.push(uri)
|
2017-11-23 08:19:55 -05:00
|
|
|
}
|
2017-11-17 05:35:10 -05:00
|
|
|
}
|
2018-01-11 03:35:50 -05:00
|
|
|
|
|
|
|
return ActorFollowModel.updateActorFollowsScoreAndRemoveBadOnes(goodUrls, badUrls, undefined)
|
2017-11-17 05:35:10 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
2018-01-25 09:05:18 -05:00
|
|
|
processActivityPubHttpBroadcast
|
2017-11-17 05:35:10 -05:00
|
|
|
}
|