Use proper logging facilities in WebfingerService

This commit is contained in:
cuteBoiButt 2024-09-05 17:29:03 +00:00 committed by cuteBoiButt
parent f397146e19
commit 02c3ee12dc
No known key found for this signature in database
GPG key ID: 940A22AC8D1BDA8E

View file

@ -8,6 +8,8 @@ import { Injectable } from '@nestjs/common';
import { XMLParser } from 'fast-xml-parser'; import { XMLParser } from 'fast-xml-parser';
import { HttpRequestService } from '@/core/HttpRequestService.js'; import { HttpRequestService } from '@/core/HttpRequestService.js';
import { bindThis } from '@/decorators.js'; import { bindThis } from '@/decorators.js';
import Logger from '@/logger.js';
import { RemoteLoggerService } from './RemoteLoggerService.js';
export type ILink = { export type ILink = {
href: string; href: string;
@ -28,9 +30,13 @@ const defaultProtocol = process.env.MISSKEY_WEBFINGER_USE_HTTP?.toLowerCase() ==
@Injectable() @Injectable()
export class WebfingerService { export class WebfingerService {
private logger: Logger;
constructor( constructor(
private httpRequestService: HttpRequestService, private httpRequestService: HttpRequestService,
private remoteLoggerService: RemoteLoggerService,
) { ) {
this.logger = this.remoteLoggerService.logger.createSubLogger('webfinger');
} }
@bindThis @bindThis
@ -103,7 +109,7 @@ export class WebfingerService {
const template = (hostMeta['XRD']['Link'] as Array<any>).filter(p => p['@_rel'] === 'lrdd')[0]['@_template']; const template = (hostMeta['XRD']['Link'] as Array<any>).filter(p => p['@_rel'] === 'lrdd')[0]['@_template'];
return template.indexOf('{uri}') < 0 ? null : template; return template.indexOf('{uri}') < 0 ? null : template;
} catch (err) { } catch (err) {
console.error(`error while request host-meta for ${url}: ${err}`); this.logger.error(`error while request host-meta for ${url}: ${err}`);
return null; return null;
} }
} }