rudeshark.net/src/remote/activitypub/resolver.ts

90 lines
2.0 KiB
TypeScript
Raw Normal View History

2018-04-05 11:08:51 +02:00
import * as request from 'request-promise-native';
import { IObject } from './type';
2018-09-04 10:44:21 +02:00
import config from '../../config';
2019-02-02 20:18:27 +01:00
import { apLogger } from './logger';
2018-04-04 16:12:35 +02:00
2019-02-02 20:18:27 +01:00
export const logger = apLogger.createSubLogger('resolver');
2018-03-31 12:55:00 +02:00
2018-04-01 14:56:11 +02:00
export default class Resolver {
2018-04-04 16:12:35 +02:00
private history: Set<string>;
private timeout = 10 * 1000;
2018-04-01 14:56:11 +02:00
2018-04-04 16:12:35 +02:00
constructor() {
this.history = new Set();
2018-03-31 12:55:00 +02:00
}
2018-06-18 07:28:43 +02:00
public async resolveCollection(value: any) {
2018-04-04 16:12:35 +02:00
const collection = typeof value === 'string'
? await this.resolve(value)
: value;
switch (collection.type) {
2019-02-05 16:01:37 +01:00
case 'Collection': {
collection.objects = collection.items;
break;
}
2018-04-04 16:12:35 +02:00
2019-02-05 16:01:37 +01:00
case 'OrderedCollection': {
collection.objects = collection.orderedItems;
break;
}
2018-04-04 16:12:35 +02:00
2019-02-05 16:01:37 +01:00
default: {
logger.error(`unknown collection type: ${collection.type}`);
throw new Error(`unknown collection type: ${collection.type}`);
}
2018-04-04 16:12:35 +02:00
}
return collection;
}
2018-06-18 07:28:43 +02:00
public async resolve(value: any): Promise<IObject> {
2018-04-05 15:49:41 +02:00
if (value == null) {
2019-02-05 16:01:37 +01:00
logger.error('resolvee is null (or undefined)');
2018-04-05 15:49:41 +02:00
throw new Error('resolvee is null (or undefined)');
}
2018-04-01 14:56:11 +02:00
if (typeof value !== 'string') {
2018-04-04 16:12:35 +02:00
return value;
2018-04-01 14:56:11 +02:00
}
2018-03-31 12:55:00 +02:00
2018-04-04 16:12:35 +02:00
if (this.history.has(value)) {
2019-03-02 23:47:58 +01:00
logger.error(`cannot resolve already resolved one: ${value}`);
2018-04-04 16:12:35 +02:00
throw new Error('cannot resolve already resolved one');
}
2018-03-31 12:55:00 +02:00
2018-04-04 16:12:35 +02:00
this.history.add(value);
2018-03-31 12:55:00 +02:00
2018-04-01 14:56:11 +02:00
const object = await request({
url: value,
proxy: config.proxy,
timeout: this.timeout,
2018-04-01 14:56:11 +02:00
headers: {
2019-02-24 04:53:22 +01:00
'User-Agent': config.userAgent,
2018-04-01 14:56:11 +02:00
Accept: 'application/activity+json, application/ld+json'
},
json: true
}).catch(e => {
2019-03-02 23:47:58 +01:00
logger.error(`request error: ${value}: ${e.message}`, {
url: value,
e: e
});
throw new Error(`request error: ${e.message}`);
2018-04-01 14:56:11 +02:00
});
2018-03-31 12:55:00 +02:00
2018-04-01 14:56:11 +02:00
if (object === null || (
Array.isArray(object['@context']) ?
!object['@context'].includes('https://www.w3.org/ns/activitystreams') :
object['@context'] !== 'https://www.w3.org/ns/activitystreams'
)) {
2019-03-02 23:47:58 +01:00
logger.error(`invalid response: ${value}`, {
url: value,
object: object
});
2018-04-04 16:12:35 +02:00
throw new Error('invalid response');
2018-03-31 12:55:00 +02:00
}
2018-04-04 16:12:35 +02:00
return object;
2018-03-31 12:55:00 +02:00
}
}