enigma-bbs/core/activitypub/actor.js

325 lines
10 KiB
JavaScript
Raw Normal View History

/* jslint node: true */
'use strict';
// ENiGMA½
const { Errors } = require('../enig_error.js');
const UserProps = require('../user_property');
const Endpoints = require('./endpoint');
2023-02-07 01:27:12 +00:00
const { userNameFromSubject, isValidLink } = require('./util');
const Log = require('../logger').log;
const { queryWebFinger } = require('../webfinger');
const EnigAssert = require('../enigma_assert');
const ActivityPubSettings = require('./settings');
2023-01-21 08:19:19 +00:00
const ActivityPubObject = require('./object');
const { ActivityStreamMediaType } = require('./const');
const apDb = require('../database').dbs.activitypub;
2023-02-09 00:19:12 +00:00
const Config = require('../config').get;
// deps
const _ = require('lodash');
const mimeTypes = require('mime-types');
2023-01-21 05:15:59 +00:00
const { getJson } = require('../http_util.js');
const { getISOTimestampString } = require('../database.js');
const moment = require('moment');
const paths = require('path');
const ActorCacheExpiration = moment.duration(15, 'days');
2023-02-09 00:19:12 +00:00
const ActorCacheMaxAgeDays = 125; // hasn't been used in >= 125 days, nuke it.
2023-02-07 01:27:12 +00:00
// default context for Actor's
const DefaultContext = ActivityPubObject.makeContext(['https://w3id.org/security/v1'], {
toot: 'http://joinmastodon.org/ns#',
discoverable: 'toot:discoverable',
manuallyApprovesFollowers: 'as:manuallyApprovesFollowers',
});
// https://www.w3.org/TR/activitypub/#actor-objects
2023-01-21 08:19:19 +00:00
module.exports = class Actor extends ActivityPubObject {
2023-02-07 01:27:12 +00:00
constructor(obj, withContext = DefaultContext) {
super(obj, withContext);
}
isValid() {
2023-01-21 08:19:19 +00:00
if (!super.isValid()) {
return false;
}
2023-01-22 01:51:54 +00:00
if (!Actor.WellKnownActorTypes.includes(this.type)) {
return false;
}
2023-01-22 01:51:54 +00:00
const linksValid = Actor.WellKnownLinkTypes.every(l => {
// must be valid if present & non-empty
2023-01-21 08:19:19 +00:00
if (this[l] && !isValidLink(this[l])) {
return false;
}
return true;
});
2023-01-21 08:19:19 +00:00
if (!linksValid) {
return false;
}
return true;
}
2023-02-11 05:29:33 +00:00
static fromJsonString(s) {
const obj = ActivityPubObject.fromJsonString(s);
return new Actor(obj);
}
2023-01-22 01:51:54 +00:00
static get WellKnownActorTypes() {
return ['Person', 'Group', 'Organization', 'Service', 'Application'];
}
static get WellKnownLinkTypes() {
return ['inbox', 'outbox', 'following', 'followers'];
}
2023-01-08 20:42:52 +00:00
static fromLocalUser(user, webServer, cb) {
const userActorId = user.getProperty(UserProps.ActivityPubActorId);
if (!userActorId) {
return cb(
Errors.MissingProperty(
`User missing '${UserProps.ActivityPubActorId}' property`
)
);
}
const userSettings = ActivityPubSettings.fromUser(user);
const addImage = (o, t) => {
const url = userSettings[t];
if (url) {
const fn = paths.basename(url);
const mt = mimeTypes.contentType(fn);
if (mt) {
o[t] = {
mediaType: mt,
type: 'Image',
url,
};
}
}
};
2023-01-08 20:42:52 +00:00
const obj = {
id: userActorId,
2023-01-08 20:42:52 +00:00
type: 'Person',
preferredUsername: user.username,
2023-01-22 20:51:32 +00:00
name: userSettings.showRealName
? user.getSanitizedName('real')
: user.username,
2023-01-08 20:42:52 +00:00
endpoints: {
sharedInbox: Endpoints.sharedInbox(webServer),
2023-01-08 20:42:52 +00:00
},
inbox: Endpoints.inbox(webServer, user),
outbox: Endpoints.outbox(webServer, user),
followers: Endpoints.followers(webServer, user),
following: Endpoints.following(webServer, user),
2023-01-08 20:42:52 +00:00
summary: user.getProperty(UserProps.AutoSignature) || '',
url: Endpoints.profile(webServer, user),
manuallyApprovesFollowers: userSettings.manuallyApprovesFollowers,
discoverable: userSettings.discoverable,
2023-01-08 20:42:52 +00:00
// :TODO: we can start to define BBS related stuff with the community perhaps
// attachment: [
// {
// name: 'SomeNetwork Address',
// type: 'PropertyValue',
// value: 'Mateo@21:1/121',
// },
// ],
// :TODO: re-enable once a spec is defined; board should prob be a object with connection info, etc.
// bbsInfo: {
// boardName: Config().general.boardName,
// memberSince: user.getProperty(UserProps.AccountCreated),
// affiliations: user.getProperty(UserProps.Affiliations) || '',
// },
2023-01-08 20:42:52 +00:00
};
addImage(obj, 'icon');
addImage(obj, 'image');
const publicKeyPem = user.getProperty(UserProps.PublicActivityPubSigningKey);
2023-01-08 20:42:52 +00:00
if (!_.isEmpty(publicKeyPem)) {
obj.publicKey = {
id: userActorId + '#main-key',
owner: userActorId,
2023-01-08 20:42:52 +00:00
publicKeyPem,
};
EnigAssert(
!_.isEmpty(user.getProperty(UserProps.PrivateActivityPubSigningKey)),
'User has public key but no private key!'
);
2023-01-08 20:42:52 +00:00
} else {
Log.warn(
{ username: user.username },
`No public key (${UserProps.PublicActivityPubSigningKey}) for user "${user.username}"`
2023-01-08 20:42:52 +00:00
);
}
return cb(null, new Actor(obj));
}
2023-01-08 20:26:52 +00:00
static fromId(id, cb) {
2023-02-09 00:19:12 +00:00
let delivered = false;
const callback = (e, a, s) => {
if (!delivered) {
delivered = true;
return cb(e, a, s);
}
};
Actor._fromCache(id, (err, actor, subject, needsRefresh) => {
if (!err) {
// cache hit
2023-02-09 00:19:12 +00:00
callback(null, actor, subject);
if (!needsRefresh) {
return;
}
}
2023-02-09 00:19:12 +00:00
// Cache miss or needs refreshed; Try to do so now
Actor._fromWebFinger(id, (err, actor, subject) => {
if (err) {
2023-02-09 00:19:12 +00:00
return callback(err);
}
if (subject) {
subject = `@${userNameFromSubject(subject)}`; // e.g. @Username@host.com
} else if (!_.isEmpty(actor)) {
subject = actor.id; // best we can do for now
}
// deliver result to caller
2023-02-09 00:19:12 +00:00
callback(err, actor, subject);
// cache our entry
if (actor) {
apDb.run(
`REPLACE INTO actor_cache (actor_id, actor_json, subject, timestamp)
VALUES (?, ?, ?, ?);`,
[id, JSON.stringify(actor), subject, getISOTimestampString()],
err => {
if (err) {
// :TODO: log me
}
}
);
}
});
});
}
2023-02-09 00:19:12 +00:00
static actorCacheMaintenanceTask(args, cb) {
const enabled = _.get(
Config(),
'contentServers.web.handlers.activityPub.enabled'
);
if (!enabled) {
return;
}
apDb.run(
`DELETE FROM actor_cache
2023-02-11 05:29:33 +00:00
WHERE DATETIME(timestamp, "+${ActorCacheMaxAgeDays} days") > DATETIME("now");`,
2023-02-09 00:19:12 +00:00
err => {
if (err) {
// :TODO: log me
2023-02-09 00:19:12 +00:00
}
return cb(null); // always non-fatal
}
);
}
static _fromRemoteQuery(id, cb) {
const headers = {
Accept: ActivityStreamMediaType,
};
getJson(id, { headers }, (err, actor) => {
2023-01-21 05:15:59 +00:00
if (err) {
return cb(err);
}
2023-01-21 05:15:59 +00:00
actor = new Actor(actor);
2023-01-21 05:15:59 +00:00
if (!actor.isValid()) {
return cb(Errors.Invalid('Invalid Actor'));
}
2023-01-21 05:15:59 +00:00
return cb(null, actor);
});
}
2023-02-09 00:19:12 +00:00
static _fromCache(actorIdOrSubject, cb) {
apDb.get(
`SELECT actor_json, subject, timestamp
FROM actor_cache
WHERE actor_id = ? OR subject = ?
LIMIT 1;`,
2023-02-09 00:19:12 +00:00
[actorIdOrSubject, actorIdOrSubject],
(err, row) => {
if (err) {
return cb(err);
}
if (!row) {
return cb(Errors.DoesNotExist());
}
const timestamp = moment(row.timestamp);
const needsRefresh = moment().isAfter(
timestamp.add(ActorCacheExpiration)
);
const obj = ActivityPubObject.fromJsonString(row.actor_json);
if (!obj || !obj.isValid()) {
return cb(Errors.Invalid('Failed to create ActivityPub object'));
}
const actor = new Actor(obj);
if (!actor.isValid()) {
return cb(Errors.Invalid('Failed to create Actor object'));
}
const subject = row.subject || actor.id;
return cb(null, actor, subject, needsRefresh);
}
);
}
static _fromWebFinger(actorQuery, cb) {
queryWebFinger(actorQuery, (err, res) => {
if (err) {
return cb(err);
}
// we need a link with 'application/activity+json'
const links = res.links;
if (!Array.isArray(links)) {
return cb(Errors.DoesNotExist('No "links" object in WebFinger response'));
}
const activityLink = links.find(l => {
return l.type === ActivityStreamMediaType && l.href?.length > 0;
});
if (!activityLink) {
return cb(
Errors.DoesNotExist('No Activity link found in WebFinger response')
);
}
// we can now query the href value for an Actor
return Actor._fromRemoteQuery(activityLink.href, (err, actor) => {
return cb(err, actor, res.subject);
});
});
}
};