2018-01-25 15:05:18 +01:00
|
|
|
import * as kue from 'kue'
|
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'
|
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
|
|
|
|
}
|
|
|
|
|
|
|
|
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 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,
|
|
|
|
httpSignature: httpSignatureOptions
|
2017-11-17 11:35:10 +01:00
|
|
|
}
|
|
|
|
|
2018-01-11 09:35:50 +01:00
|
|
|
const badUrls: string[] = []
|
|
|
|
const goodUrls: string[] = []
|
|
|
|
|
2017-11-17 11:35:10 +01:00
|
|
|
for (const uri of payload.uris) {
|
|
|
|
options.uri = uri
|
2017-11-23 14:19:55 +01:00
|
|
|
|
|
|
|
try {
|
|
|
|
await doRequest(options)
|
2018-01-11 09:35:50 +01:00
|
|
|
goodUrls.push(uri)
|
2017-11-23 14:19:55 +01:00
|
|
|
} catch (err) {
|
2018-01-25 15:05:18 +01:00
|
|
|
badUrls.push(uri)
|
2017-11-23 14:19:55 +01:00
|
|
|
}
|
2017-11-17 11:35:10 +01:00
|
|
|
}
|
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
|
|
|
}
|