enigma-bbs/core/activitypub/activity.js

121 lines
3.4 KiB
JavaScript
Raw Normal View History

const {
ActivityStreamMediaType,
WellKnownActivityTypes,
WellKnownActivity,
HttpSignatureSignHeaders,
} = require('./const');
const { recipientIdsFromObject } = require('./util');
const Endpoints = require('./endpoint');
2023-01-20 05:31:14 +00:00
const ActivityPubObject = require('./object');
2023-01-13 06:19:52 +00:00
const { Errors } = require('../enig_error');
const UserProps = require('../user_property');
const { postJson } = require('../http_util');
2023-01-25 01:11:28 +00:00
const { getISOTimestampString } = require('../database');
// deps
const _ = require('lodash');
2023-01-20 05:31:14 +00:00
module.exports = class Activity extends ActivityPubObject {
2023-02-07 01:27:12 +00:00
constructor(obj, withContext = ActivityPubObject.DefaultContext) {
super(obj, withContext);
}
static get ActivityTypes() {
2023-01-20 05:31:14 +00:00
return WellKnownActivityTypes;
}
static fromJsonString(s) {
const obj = ActivityPubObject.fromJsonString(s);
return new Activity(obj);
}
static makeFollow(webServer, localActor, remoteActor) {
2023-01-22 20:51:32 +00:00
return new Activity({
id: Activity.activityObjectId(webServer),
type: WellKnownActivity.Follow,
2023-01-22 20:51:32 +00:00
actor: localActor,
object: remoteActor.id,
});
}
// https://www.w3.org/TR/activitypub/#accept-activity-inbox
static makeAccept(webServer, localActor, followRequest) {
return new Activity({
id: Activity.activityObjectId(webServer),
type: WellKnownActivity.Accept,
actor: localActor,
object: followRequest, // previous request Activity
});
}
2023-02-07 01:27:12 +00:00
static makeCreate(webServer, actor, obj, context) {
const activity = new Activity(
{
id: Activity.activityObjectId(webServer),
to: obj.to,
type: WellKnownActivity.Create,
actor,
object: obj,
},
context
);
const copy = n => {
if (obj[n]) {
activity[n] = obj[n];
}
};
copy('to');
copy('cc');
// :TODO: Others?
return activity;
}
2023-01-25 01:11:28 +00:00
static makeTombstone(obj) {
const deleted = getISOTimestampString();
return new Activity({
id: obj.id,
type: WellKnownActivity.Tombstone,
2023-01-25 01:11:28 +00:00
deleted,
published: deleted,
updated: deleted,
});
}
sendTo(inboxEndpoint, fromUser, webServer, cb) {
const privateKey = fromUser.getProperty(UserProps.PrivateActivityPubSigningKey);
if (_.isEmpty(privateKey)) {
return cb(
Errors.MissingProperty(
`User "${fromUser.username}" is missing the '${UserProps.PrivateActivityPubSigningKey}' property`
)
);
}
const reqOpts = {
headers: {
'Content-Type': ActivityStreamMediaType,
},
sign: {
key: privateKey,
keyId: Endpoints.actorId(webServer, fromUser) + '#main-key',
authorizationHeaderName: 'Signature',
headers: HttpSignatureSignHeaders,
},
};
const activityJson = JSON.stringify(this);
return postJson(inboxEndpoint, activityJson, reqOpts, cb);
}
recipientIds() {
return recipientIdsFromObject(this);
}
static activityObjectId(webServer) {
return ActivityPubObject.makeObjectId(webServer, 'activity');
}
};