2018-03-31 13:55:00 +03:00
|
|
|
const WebFinger = require('webfinger.js');
|
|
|
|
|
2018-04-01 17:33:48 +03:00
|
|
|
const webFinger = new WebFinger({ });
|
2018-03-31 13:55:00 +03:00
|
|
|
|
|
|
|
type ILink = {
|
2018-04-08 22:08:56 +03:00
|
|
|
href: string;
|
|
|
|
rel: string;
|
2018-04-01 15:24:25 +03:00
|
|
|
};
|
2018-03-31 13:55:00 +03:00
|
|
|
|
|
|
|
type IWebFinger = {
|
2018-04-08 22:08:56 +03:00
|
|
|
links: ILink[];
|
|
|
|
subject: string;
|
2018-04-01 15:24:25 +03:00
|
|
|
};
|
2018-03-31 13:55:00 +03:00
|
|
|
|
2018-06-18 03:54:53 +03: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 12:36:47 +03:00
|
|
|
if (error) {
|
|
|
|
return rej(error);
|
|
|
|
}
|
|
|
|
|
|
|
|
res(result.object);
|
|
|
|
})) as IWebFinger;
|
|
|
|
}
|