egirlskey/packages/backend/src/core/WebfingerService.ts

52 lines
1.3 KiB
TypeScript
Raw Normal View History

2022-09-17 18:27:08 +00:00
import { URL } from 'node:url';
import { Inject, Injectable } from '@nestjs/common';
import { DI } from '@/di-symbols.js';
2022-09-20 20:33:11 +00:00
import type { Config } from '@/config.js';
2022-09-17 18:27:08 +00:00
import { query as urlQuery } from '@/misc/prelude/url.js';
import { HttpRequestService } from '@/core/HttpRequestService.js';
type ILink = {
href: string;
rel?: string;
};
type IWebFinger = {
links: ILink[];
subject: string;
};
import { bindThis } from '@/decorators.js';
2022-09-17 18:27:08 +00:00
@Injectable()
export class WebfingerService {
constructor(
@Inject(DI.config)
private config: Config,
private httpRequestService: HttpRequestService,
) {
}
@bindThis
2022-09-17 18:27:08 +00:00
public async webfinger(query: string): Promise<IWebFinger> {
2022-09-18 18:11:50 +00:00
const url = this.genUrl(query);
2022-09-17 18:27:08 +00:00
return await this.httpRequestService.getJson(url, 'application/jrd+json, application/json') as IWebFinger;
}
@bindThis
2022-09-18 18:11:50 +00:00
private genUrl(query: string): string {
2022-09-17 18:27:08 +00:00
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}` });
}
throw new Error(`Invalid query (${query})`);
}
}