2020-04-09 07:42:23 -07:00
|
|
|
import { getJson } from '../misc/fetch';
|
2019-04-09 23:07:21 -07:00
|
|
|
import { query as urlQuery } from '../prelude/url';
|
2018-03-31 03:55:00 -07:00
|
|
|
|
|
|
|
type ILink = {
|
2018-04-08 12:08:56 -07:00
|
|
|
href: string;
|
2019-04-12 09:43:22 -07:00
|
|
|
rel?: string;
|
2018-04-01 05:24:25 -07:00
|
|
|
};
|
2018-03-31 03:55:00 -07:00
|
|
|
|
|
|
|
type IWebFinger = {
|
2018-04-08 12:08:56 -07:00
|
|
|
links: ILink[];
|
|
|
|
subject: string;
|
2018-04-01 05:24:25 -07:00
|
|
|
};
|
2018-03-31 03:55:00 -07:00
|
|
|
|
2019-04-09 23:07:21 -07:00
|
|
|
export default async function(query: string): Promise<IWebFinger> {
|
|
|
|
const url = genUrl(query);
|
|
|
|
|
2020-04-09 07:42:23 -07:00
|
|
|
return await getJson(url, 'application/jrd+json, application/json');
|
2019-04-09 23:07:21 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
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 02:36:47 -07:00
|
|
|
|
2019-09-15 07:27:33 -07:00
|
|
|
throw new Error(`Invalid query (${query})`);
|
2018-04-02 02:36:47 -07:00
|
|
|
}
|