2018-03-31 10:55:00 +00:00
|
|
|
const WebFinger = require('webfinger.js');
|
|
|
|
|
2018-04-01 14:33:48 +00:00
|
|
|
const webFinger = new WebFinger({ });
|
2018-03-31 10:55:00 +00:00
|
|
|
|
|
|
|
type ILink = {
|
2018-04-08 19:08:56 +00:00
|
|
|
href: string;
|
|
|
|
rel: string;
|
2018-04-01 12:24:25 +00:00
|
|
|
};
|
2018-03-31 10:55:00 +00:00
|
|
|
|
|
|
|
type IWebFinger = {
|
2018-04-08 19:08:56 +00:00
|
|
|
links: ILink[];
|
|
|
|
subject: string;
|
2018-04-01 12:24:25 +00:00
|
|
|
};
|
2018-03-31 10:55:00 +00:00
|
|
|
|
2018-06-18 00:54:53 +00:00
|
|
|
export default async function resolve(query: any): Promise<IWebFinger> {
|
|
|
|
return await new Promise((res, rej) => webFinger.lookup(query, (error: Error, result: any) => {
|
2018-04-02 09:36:47 +00:00
|
|
|
if (error) {
|
|
|
|
return rej(error);
|
|
|
|
}
|
|
|
|
|
|
|
|
res(result.object);
|
|
|
|
})) as IWebFinger;
|
|
|
|
}
|