121 lines
3.4 KiB
JavaScript
121 lines
3.4 KiB
JavaScript
const {
|
|
ActivityStreamMediaType,
|
|
WellKnownActivityTypes,
|
|
WellKnownActivity,
|
|
HttpSignatureSignHeaders,
|
|
} = require('./const');
|
|
const { recipientIdsFromObject } = require('./util');
|
|
const Endpoints = require('./endpoint');
|
|
const ActivityPubObject = require('./object');
|
|
const { Errors } = require('../enig_error');
|
|
const UserProps = require('../user_property');
|
|
const { postJson } = require('../http_util');
|
|
const { getISOTimestampString } = require('../database');
|
|
|
|
// deps
|
|
const _ = require('lodash');
|
|
|
|
module.exports = class Activity extends ActivityPubObject {
|
|
constructor(obj, withContext = ActivityPubObject.DefaultContext) {
|
|
super(obj, withContext);
|
|
}
|
|
|
|
static get ActivityTypes() {
|
|
return WellKnownActivityTypes;
|
|
}
|
|
|
|
static fromJsonString(s) {
|
|
const obj = ActivityPubObject.fromJsonString(s);
|
|
return new Activity(obj);
|
|
}
|
|
|
|
static makeFollow(webServer, localActor, remoteActor) {
|
|
return new Activity({
|
|
id: Activity.activityObjectId(webServer),
|
|
type: WellKnownActivity.Follow,
|
|
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
|
|
});
|
|
}
|
|
|
|
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;
|
|
}
|
|
|
|
static makeTombstone(obj) {
|
|
const deleted = getISOTimestampString();
|
|
return new Activity({
|
|
id: obj.id,
|
|
type: WellKnownActivity.Tombstone,
|
|
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');
|
|
}
|
|
};
|