2023-07-27 05:31:52 +00:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2023-10-19 22:48:31 +00:00
|
|
|
import { Injectable } from '@nestjs/common';
|
2023-03-10 05:22:37 +00:00
|
|
|
import type { Packed } from '@/misc/json-schema.js';
|
2023-09-20 02:33:36 +00:00
|
|
|
import type { MiInstance } from '@/models/Instance.js';
|
2022-12-04 04:16:25 +00:00
|
|
|
import { MetaService } from '@/core/MetaService.js';
|
2022-12-04 06:03:09 +00:00
|
|
|
import { bindThis } from '@/decorators.js';
|
2023-03-10 05:22:37 +00:00
|
|
|
import { UtilityService } from '../UtilityService.js';
|
2022-02-18 11:43:50 +00:00
|
|
|
|
2022-09-17 18:27:08 +00:00
|
|
|
@Injectable()
|
|
|
|
export class InstanceEntityService {
|
|
|
|
constructor(
|
|
|
|
private metaService: MetaService,
|
2023-01-13 09:21:07 +00:00
|
|
|
|
|
|
|
private utilityService: UtilityService,
|
2022-09-17 18:27:08 +00:00
|
|
|
) {
|
|
|
|
}
|
|
|
|
|
2022-12-04 06:03:09 +00:00
|
|
|
@bindThis
|
2022-09-17 18:27:08 +00:00
|
|
|
public async pack(
|
2023-08-16 08:51:28 +00:00
|
|
|
instance: MiInstance,
|
2022-02-18 11:43:50 +00:00
|
|
|
): Promise<Packed<'FederationInstance'>> {
|
2022-09-17 18:27:08 +00:00
|
|
|
const meta = await this.metaService.fetch();
|
2022-02-18 11:43:50 +00:00
|
|
|
return {
|
|
|
|
id: instance.id,
|
2023-01-15 20:02:38 +00:00
|
|
|
firstRetrievedAt: instance.firstRetrievedAt.toISOString(),
|
2022-02-18 11:43:50 +00:00
|
|
|
host: instance.host,
|
|
|
|
usersCount: instance.usersCount,
|
|
|
|
notesCount: instance.notesCount,
|
|
|
|
followingCount: instance.followingCount,
|
|
|
|
followersCount: instance.followersCount,
|
|
|
|
isNotResponding: instance.isNotResponding,
|
|
|
|
isSuspended: instance.isSuspended,
|
2023-01-13 09:21:07 +00:00
|
|
|
isBlocked: this.utilityService.isBlockedHost(meta.blockedHosts, instance.host),
|
2022-02-18 11:43:50 +00:00
|
|
|
softwareName: instance.softwareName,
|
|
|
|
softwareVersion: instance.softwareVersion,
|
|
|
|
openRegistrations: instance.openRegistrations,
|
|
|
|
name: instance.name,
|
|
|
|
description: instance.description,
|
|
|
|
maintainerName: instance.maintainerName,
|
|
|
|
maintainerEmail: instance.maintainerEmail,
|
2023-10-16 11:11:27 +00:00
|
|
|
isSilenced: this.utilityService.isSilencedHost(meta.silencedHosts, instance.host),
|
2022-02-18 11:43:50 +00:00
|
|
|
iconUrl: instance.iconUrl,
|
2022-06-21 05:28:43 +00:00
|
|
|
faviconUrl: instance.faviconUrl,
|
2022-06-28 01:40:49 +00:00
|
|
|
themeColor: instance.themeColor,
|
2022-02-18 11:43:50 +00:00
|
|
|
infoUpdatedAt: instance.infoUpdatedAt ? instance.infoUpdatedAt.toISOString() : null,
|
|
|
|
};
|
2022-09-17 18:27:08 +00:00
|
|
|
}
|
2022-02-18 11:43:50 +00:00
|
|
|
|
2022-12-04 06:03:09 +00:00
|
|
|
@bindThis
|
2022-09-17 18:27:08 +00:00
|
|
|
public packMany(
|
2023-08-16 08:51:28 +00:00
|
|
|
instances: MiInstance[],
|
2022-02-18 11:43:50 +00:00
|
|
|
) {
|
|
|
|
return Promise.all(instances.map(x => this.pack(x)));
|
2022-09-17 18:27:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|