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

56 lines
1.4 KiB
TypeScript
Raw Normal View History

/*
* SPDX-FileCopyrightText: syuilo and other misskey contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
2022-09-17 18:27:08 +00:00
import { URL } from 'node:url';
import { Injectable } from '@nestjs/common';
2022-09-17 18:27:08 +00:00
import { query as urlQuery } from '@/misc/prelude/url.js';
import { HttpRequestService } from '@/core/HttpRequestService.js';
2022-12-04 08:05:32 +00:00
import { bindThis } from '@/decorators.js';
2022-09-17 18:27:08 +00:00
export type ILink = {
2022-09-17 18:27:08 +00:00
href: string;
rel?: string;
};
export type IWebFinger = {
2022-09-17 18:27:08 +00:00
links: ILink[];
subject: string;
};
const urlRegex = /^https?:\/\//;
const mRegex = /^([^@]+)@(.*)/;
2022-09-17 18:27:08 +00:00
@Injectable()
export class WebfingerService {
constructor(
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<IWebFinger>(url, 'application/jrd+json, application/json');
2022-09-17 18:27:08 +00:00
}
@bindThis
2022-09-18 18:11:50 +00:00
private genUrl(query: string): string {
if (query.match(urlRegex)) {
2022-09-17 18:27:08 +00:00
const u = new URL(query);
return `${u.protocol}//${u.hostname}/.well-known/webfinger?` + urlQuery({ resource: query });
}
const m = query.match(mRegex);
2022-09-17 18:27:08 +00:00
if (m) {
const hostname = m[2];
const useHttp = process.env.MISSKEY_WEBFINGER_USE_HTTP && process.env.MISSKEY_WEBFINGER_USE_HTTP.toLowerCase() === 'true';
return `http${useHttp ? '' : 's'}://${hostname}/.well-known/webfinger?${urlQuery({ resource: `acct:${query}` })}`;
2022-09-17 18:27:08 +00:00
}
throw new Error(`Invalid query (${query})`);
}
}