egirlskey/src/remote/activitypub/resolver.ts

78 lines
1.7 KiB
TypeScript
Raw Normal View History

2018-04-05 09:08:51 +00:00
import * as request from 'request-promise-native';
import * as debug from 'debug';
import { IObject } from './type';
2018-04-07 21:55:26 +00:00
//import config from '../../config';
2018-04-04 14:12:35 +00:00
2018-04-05 09:08:51 +00:00
const log = debug('misskey:activitypub:resolver');
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>;
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
}
2018-04-04 14:12:35 +00:00
public async resolveCollection(value) {
const collection = typeof value === 'string'
? await this.resolve(value)
: value;
switch (collection.type) {
case 'Collection':
collection.objects = collection.object.items;
break;
case 'OrderedCollection':
collection.objects = collection.object.orderedItems;
break;
default:
throw new Error(`unknown collection type: ${collection.type}`);
}
return collection;
}
public async resolve(value): 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-07 21:55:26 +00:00
//#region resolve local objects
// TODO
2018-04-08 06:15:22 +00:00
//if (value.startsWith(`${config.url}/`)) {
2018-04-07 21:55:26 +00:00
//#endregion
2018-04-01 12:56:11 +00:00
const object = await request({
url: value,
headers: {
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-07 21:55:26 +00:00
log(`invalid response: ${JSON.stringify(object, null, 2)}`);
2018-04-04 14:12:35 +00:00
throw new Error('invalid response');
2018-03-31 10:55:00 +00:00
}
2018-04-05 09:43:06 +00:00
log(`resolved: ${JSON.stringify(object, null, 2)}`);
2018-04-05 09:08:51 +00:00
2018-04-04 14:12:35 +00:00
return object;
2018-03-31 10:55:00 +00:00
}
}