summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxianon <xianon@hotmail.co.jp>2022-02-06 04:29:36 +0900
committerGitHub <noreply@github.com>2022-02-06 04:29:36 +0900
commit08d0a45ee76cc8d85e360c83654d5ddcee4fab21 (patch)
tree0efd071e5c354d5e16af7900dfa41b857b859efd
parentfix chart clean (diff)
downloadsharkey-08d0a45ee76cc8d85e360c83654d5ddcee4fab21.tar.gz
sharkey-08d0a45ee76cc8d85e360c83654d5ddcee4fab21.tar.bz2
sharkey-08d0a45ee76cc8d85e360c83654d5ddcee4fab21.zip
fix: NodeInfo のユーザー数と投稿数の内容を見直す (#8255)
* NodeInfoのアクティブユーザーの取得方法を変更する * NodeInfoの投稿数の出力内容を見直す
-rw-r--r--packages/backend/src/server/nodeinfo.ts12
1 files changed, 5 insertions, 7 deletions
diff --git a/packages/backend/src/server/nodeinfo.ts b/packages/backend/src/server/nodeinfo.ts
index 44f32bf882..4209fc7f14 100644
--- a/packages/backend/src/server/nodeinfo.ts
+++ b/packages/backend/src/server/nodeinfo.ts
@@ -2,7 +2,7 @@ import * as Router from '@koa/router';
import config from '@/config/index';
import { fetchMeta } from '@/misc/fetch-meta';
import { Users, Notes } from '@/models/index';
-import { Not, IsNull, MoreThan } from 'typeorm';
+import { MoreThan } from 'typeorm';
const router = new Router();
@@ -25,14 +25,12 @@ const nodeinfo2 = async () => {
activeHalfyear,
activeMonth,
localPosts,
- localComments,
] = await Promise.all([
fetchMeta(true),
Users.count({ where: { host: null } }),
- Users.count({ where: { host: null, updatedAt: MoreThan(new Date(now - 15552000000)) } }),
- Users.count({ where: { host: null, updatedAt: MoreThan(new Date(now - 2592000000)) } }),
- Notes.count({ where: { userHost: null, replyId: null } }),
- Notes.count({ where: { userHost: null, replyId: Not(IsNull()) } }),
+ Users.count({ where: { host: null, lastActiveDate: MoreThan(new Date(now - 15552000000)) } }),
+ Users.count({ where: { host: null, lastActiveDate: MoreThan(new Date(now - 2592000000)) } }),
+ Notes.count({ where: { userHost: null } }),
]);
const proxyAccount = meta.proxyAccountId ? await Users.pack(meta.proxyAccountId).catch(() => null) : null;
@@ -52,7 +50,7 @@ const nodeinfo2 = async () => {
usage: {
users: { total, activeHalfyear, activeMonth },
localPosts,
- localComments,
+ localComments: 0,
},
metadata: {
nodeName: meta.name,