egirlskey/src/remote/activitypub/resolver.ts

78 lines
1.6 KiB
TypeScript
Raw Normal View History

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