fix mastodon api stats

This commit is contained in:
CutestNekoAqua 2023-02-22 09:44:47 +01:00
parent 4c0ae44e74
commit 684f2e883a
1 changed files with 9 additions and 1 deletions

View File

@ -1,9 +1,13 @@
import { Entity } from "@calckey/megalodon";
import { fetchMeta } from "@/misc/fetch-meta.js";
import { Users, Notes } from "@/models/index.js";
import { IsNull, MoreThan } from "typeorm";
// TODO: add calckey features
export async function getInstance(response: Entity.Instance) {
const meta = await fetchMeta(true);
const totalUsers = Users.count({ where: { host: IsNull() } });
const totalStatuses = Notes.count({ where: { userHost: IsNull() } });
return {
uri: response.uri,
title: response.title || "",
@ -12,7 +16,11 @@ export async function getInstance(response: Entity.Instance) {
email: response.email || "",
version: "3.0.0 compatible (Calckey)",
urls: response.urls,
stats: response.stats,
stats: {
user_count: totalUsers,
status_count: totalStatuses,
domain_count: response.stats.domain_count
},
thumbnail: response.thumbnail || "",
languages: meta.langs,
registrations: !meta.disableRegistration || response.registrations,