PeerTube/server/lib/job-queue/handlers/utils/activitypub-http-utils.ts

60 lines
1.8 KiB
TypeScript
Raw Normal View History

2021-05-11 09:15:29 +00:00
import { buildDigest } from '@server/helpers/peertube-crypto'
import { buildSignedActivity } from '@server/lib/activitypub/activity'
2021-05-11 09:15:29 +00:00
import { getServerActor } from '@server/models/application/application'
import { ContextType } from '@shared/models/activitypub/context'
2020-03-12 13:14:00 +00:00
import { ACTIVITY_PUB, HTTP_SIGNATURE } from '../../../../initializers/constants'
2021-05-11 09:15:29 +00:00
import { ActorModel } from '../../../../models/actor/actor'
2020-06-18 08:45:25 +00:00
import { MActor } from '../../../../types/models'
2021-03-08 13:24:11 +00:00
type Payload <T> = { body: T, contextType?: ContextType, signatureActorId?: number }
2018-10-10 06:51:58 +00:00
2021-03-08 13:24:11 +00:00
async function computeBody <T> (
payload: Payload<T>
): Promise<T | T & { type: 'RsaSignature2017', creator: string, created: string }> {
let body = payload.body
if (payload.signatureActorId) {
const actorSignature = await ActorModel.load(payload.signatureActorId)
if (!actorSignature) throw new Error('Unknown signature actor id.')
2021-03-08 13:24:11 +00:00
body = await buildSignedActivity(actorSignature, payload.body, payload.contextType)
}
return body
}
2021-03-08 13:24:11 +00:00
async function buildSignedRequestOptions (payload: Payload<any>) {
2019-08-15 09:53:26 +00:00
let actor: MActor | null
if (payload.signatureActorId) {
actor = await ActorModel.load(payload.signatureActorId)
if (!actor) throw new Error('Unknown signature actor id.')
} else {
// We need to sign the request, so use the server
actor = await getServerActor()
}
2019-04-25 13:19:53 +00:00
const keyId = actor.url
return {
algorithm: HTTP_SIGNATURE.ALGORITHM,
authorizationHeaderName: HTTP_SIGNATURE.HEADER_NAME,
keyId,
2018-10-10 06:51:58 +00:00
key: actor.privateKey,
headers: HTTP_SIGNATURE.HEADERS_TO_SIGN
2018-10-10 06:51:58 +00:00
}
}
function buildGlobalHeaders (body: any) {
2018-10-10 06:51:58 +00:00
return {
2021-03-10 10:17:20 +00:00
'digest': buildDigest(body),
'content-type': 'application/activity+json',
'accept': ACTIVITY_PUB.ACCEPT_HEADER
}
}
export {
2018-10-10 06:51:58 +00:00
buildGlobalHeaders,
computeBody,
buildSignedRequestOptions
}