2018-04-05 11:08:51 +02:00
|
|
|
import * as request from 'request-promise-native';
|
2019-09-26 21:58:28 +02:00
|
|
|
import { IObject, isCollectionOrOrderedCollection, ICollection, IOrderedCollection } from './type';
|
2018-09-04 10:44:21 +02:00
|
|
|
import config from '../../config';
|
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>;
|
2018-10-04 18:58:41 +02:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2019-03-04 06:02:42 +01:00
|
|
|
public getHistory(): string[] {
|
|
|
|
return Array.from(this.history);
|
|
|
|
}
|
|
|
|
|
2019-09-26 21:58:28 +02:00
|
|
|
public async resolveCollection(value: string | IObject): Promise<ICollection | IOrderedCollection> {
|
2018-04-04 16:12:35 +02:00
|
|
|
const collection = typeof value === 'string'
|
|
|
|
? await this.resolve(value)
|
|
|
|
: value;
|
|
|
|
|
2019-09-26 21:58:28 +02:00
|
|
|
if (isCollectionOrOrderedCollection(collection)) {
|
|
|
|
return collection;
|
|
|
|
} else {
|
|
|
|
throw new Error(`unknown collection type: ${collection.type}`);
|
2018-04-04 16:12:35 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-26 21:58:28 +02:00
|
|
|
public async resolve(value: string | IObject): Promise<IObject> {
|
2018-04-05 15:49:41 +02:00
|
|
|
if (value == null) {
|
|
|
|
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)) {
|
|
|
|
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,
|
2019-02-07 13:02:33 +01:00
|
|
|
proxy: config.proxy,
|
2018-10-04 18:58:41 +02:00
|
|
|
timeout: this.timeout,
|
2019-07-28 02:49:02 +02:00
|
|
|
forever: true,
|
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
|
2019-12-11 16:41:26 +01:00
|
|
|
}).catch(e => {
|
|
|
|
const message = `${e.name}: ${e.message ? e.message.substr(0, 200) : undefined}, url=${value}`;
|
|
|
|
throw {
|
|
|
|
name: e.name,
|
|
|
|
statusCode: e.statusCode,
|
|
|
|
message,
|
|
|
|
};
|
2018-04-01 14:56:11 +02:00
|
|
|
});
|
2018-03-31 12:55:00 +02:00
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
if (object == null || (
|
2018-04-01 14:56:11 +02:00
|
|
|
Array.isArray(object['@context']) ?
|
|
|
|
!object['@context'].includes('https://www.w3.org/ns/activitystreams') :
|
|
|
|
object['@context'] !== 'https://www.w3.org/ns/activitystreams'
|
|
|
|
)) {
|
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
|
|
|
}
|
|
|
|
}
|