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