Sharkey/src/remote/webfinger.ts

34 lines
794 B
TypeScript
Raw Normal View History

import { getJson } from '../misc/fetch';
import { query as urlQuery } from '../prelude/url';
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
export default async function(query: string): Promise<IWebFinger> {
const url = genUrl(query);
return await getJson(url, 'application/jrd+json, application/json');
}
function genUrl(query: string) {
if (query.match(/^https?:\/\//)) {
const u = new URL(query);
return `${u.protocol}//${u.hostname}/.well-known/webfinger?` + urlQuery({ resource: query });
}
const m = query.match(/^([^@]+)@(.*)/);
if (m) {
const hostname = m[2];
return `https://${hostname}/.well-known/webfinger?` + urlQuery({ resource: `acct:${query}` });
}
2018-04-02 12:36:47 +03:00
throw new Error(`Invalid query (${query})`);
2018-04-02 12:36:47 +03:00
}