2018-07-10 11:02:20 -04:00
|
|
|
import * as Bull from 'bull'
|
2018-01-25 09:05:18 -05:00
|
|
|
import { logger } from '../../../helpers/logger'
|
|
|
|
import { doRequest } from '../../../helpers/requests'
|
|
|
|
import { ActorFollowModel } from '../../../models/activitypub/actor-follow'
|
2018-10-10 02:51:58 -04:00
|
|
|
import { buildGlobalHeaders, buildSignedRequestOptions, computeBody } from './utils/activitypub-http-utils'
|
2018-05-09 03:08:22 -04:00
|
|
|
import { JOB_REQUEST_TIMEOUT } from '../../../initializers'
|
2018-01-25 09:05:18 -05:00
|
|
|
|
|
|
|
export type ActivitypubHttpUnicastPayload = {
|
|
|
|
uri: string
|
|
|
|
signatureActorId?: number
|
|
|
|
body: any
|
|
|
|
}
|
|
|
|
|
2018-07-10 11:02:20 -04:00
|
|
|
async function processActivityPubHttpUnicast (job: Bull.Job) {
|
2018-01-25 09:05:18 -05:00
|
|
|
logger.info('Processing ActivityPub unicast in job %d.', job.id)
|
|
|
|
|
|
|
|
const payload = job.data as ActivitypubHttpUnicastPayload
|
|
|
|
const uri = payload.uri
|
|
|
|
|
|
|
|
const body = await computeBody(payload)
|
|
|
|
const httpSignatureOptions = await buildSignedRequestOptions(payload)
|
|
|
|
|
|
|
|
const options = {
|
|
|
|
method: 'POST',
|
|
|
|
uri,
|
|
|
|
json: body,
|
2018-05-09 03:08:22 -04:00
|
|
|
httpSignature: httpSignatureOptions,
|
2018-10-10 02:51:58 -04:00
|
|
|
timeout: JOB_REQUEST_TIMEOUT,
|
|
|
|
headers: buildGlobalHeaders(body)
|
2018-01-25 09:05:18 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
await doRequest(options)
|
2018-03-15 09:31:08 -04:00
|
|
|
ActorFollowModel.updateActorFollowsScore([ uri ], [], undefined)
|
2018-01-25 09:05:18 -05:00
|
|
|
} catch (err) {
|
2018-03-15 09:31:08 -04:00
|
|
|
ActorFollowModel.updateActorFollowsScore([], [ uri ], undefined)
|
2018-01-25 09:05:18 -05:00
|
|
|
|
|
|
|
throw err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
|
|
|
processActivityPubHttpUnicast
|
|
|
|
}
|