2018-07-10 11:02:20 -04:00
|
|
|
import * as Bull from 'bull'
|
2021-03-03 04:10:55 -05:00
|
|
|
import { ActivitypubHttpUnicastPayload } from '@shared/models'
|
2018-01-25 09:05:18 -05:00
|
|
|
import { logger } from '../../../helpers/logger'
|
|
|
|
import { doRequest } from '../../../helpers/requests'
|
2021-03-03 04:10:55 -05:00
|
|
|
import { REQUEST_TIMEOUT } from '../../../initializers/constants'
|
2019-03-19 09:23:17 -04:00
|
|
|
import { ActorFollowScoreCache } from '../../files-cache'
|
2021-03-03 04:10:55 -05:00
|
|
|
import { buildGlobalHeaders, buildSignedRequestOptions, computeBody } from './utils/activitypub-http-utils'
|
2018-01-25 09:05:18 -05:00
|
|
|
|
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 = {
|
2021-03-08 08:24:11 -05:00
|
|
|
method: 'POST' as 'POST',
|
2018-01-25 09:05:18 -05:00
|
|
|
json: body,
|
2018-05-09 03:08:22 -04:00
|
|
|
httpSignature: httpSignatureOptions,
|
2021-03-03 04:10:55 -05:00
|
|
|
timeout: REQUEST_TIMEOUT,
|
2018-10-10 02:51:58 -04:00
|
|
|
headers: buildGlobalHeaders(body)
|
2018-01-25 09:05:18 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
2021-03-08 08:24:11 -05:00
|
|
|
await doRequest(uri, options)
|
2018-12-20 08:31:11 -05:00
|
|
|
ActorFollowScoreCache.Instance.updateActorFollowsScore([ uri ], [])
|
2018-01-25 09:05:18 -05:00
|
|
|
} catch (err) {
|
2018-12-20 08:31:11 -05:00
|
|
|
ActorFollowScoreCache.Instance.updateActorFollowsScore([], [ uri ])
|
2018-01-25 09:05:18 -05:00
|
|
|
|
|
|
|
throw err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
|
|
|
processActivityPubHttpUnicast
|
|
|
|
}
|