2022-02-27 04:07:39 +02:00
|
|
|
import { Instances, NoteReactions, Notes, Users } from '@/models/index.js';
|
2022-06-14 12:01:23 +03:00
|
|
|
import define from '../define.js';
|
2022-02-27 04:07:39 +02:00
|
|
|
import { } from '@/services/chart/index.js';
|
2022-03-26 08:34:00 +02:00
|
|
|
import { IsNull } from 'typeorm';
|
2017-08-12 09:17:03 +03:00
|
|
|
|
2018-11-02 06:47:44 +02:00
|
|
|
export const meta = {
|
2022-01-18 15:27:10 +02:00
|
|
|
requireCredential: false,
|
2018-11-02 06:47:44 +02:00
|
|
|
|
2019-02-23 04:20:58 +02:00
|
|
|
tags: ['meta'],
|
|
|
|
|
2019-02-24 20:30:22 +02:00
|
|
|
res: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
2019-02-24 20:30:22 +02:00
|
|
|
properties: {
|
|
|
|
notesCount: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'number',
|
|
|
|
optional: false, nullable: false,
|
2019-02-24 20:30:22 +02:00
|
|
|
},
|
|
|
|
originalNotesCount: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'number',
|
|
|
|
optional: false, nullable: false,
|
2019-02-24 20:30:22 +02:00
|
|
|
},
|
|
|
|
usersCount: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'number',
|
|
|
|
optional: false, nullable: false,
|
2019-02-24 20:30:22 +02:00
|
|
|
},
|
|
|
|
originalUsersCount: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'number',
|
|
|
|
optional: false, nullable: false,
|
2019-02-24 20:30:22 +02:00
|
|
|
},
|
|
|
|
instances: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'number',
|
|
|
|
optional: false, nullable: false,
|
2019-02-24 20:30:22 +02:00
|
|
|
},
|
2021-03-06 15:34:11 +02:00
|
|
|
driveUsageLocal: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'number',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 15:34:11 +02:00
|
|
|
},
|
|
|
|
driveUsageRemote: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'number',
|
|
|
|
optional: false, nullable: false,
|
2021-12-09 16:58:30 +02:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2022-01-18 15:27:10 +02:00
|
|
|
} as const;
|
2018-11-02 06:47:44 +02:00
|
|
|
|
2022-02-20 06:15:40 +02:00
|
|
|
export const paramDef = {
|
2022-02-19 07:05:32 +02:00
|
|
|
type: 'object',
|
|
|
|
properties: {},
|
|
|
|
required: [],
|
|
|
|
} as const;
|
|
|
|
|
2022-01-02 19:12:50 +02:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-02-19 07:05:32 +02:00
|
|
|
export default define(meta, paramDef, async () => {
|
2020-12-05 11:18:37 +02:00
|
|
|
const [
|
|
|
|
notesCount,
|
2019-04-23 16:35:26 +03:00
|
|
|
originalNotesCount,
|
|
|
|
usersCount,
|
|
|
|
originalUsersCount,
|
2020-12-05 11:18:37 +02:00
|
|
|
reactionsCount,
|
|
|
|
//originalReactionsCount,
|
2019-04-23 16:35:26 +03:00
|
|
|
instances,
|
|
|
|
] = await Promise.all([
|
2019-05-25 02:35:16 +03:00
|
|
|
Notes.count({ cache: 3600000 }), // 1 hour
|
2022-03-26 08:34:00 +02:00
|
|
|
Notes.count({ where: { userHost: IsNull() }, cache: 3600000 }),
|
2019-05-25 02:35:16 +03:00
|
|
|
Users.count({ cache: 3600000 }),
|
2022-03-26 08:34:00 +02:00
|
|
|
Users.count({ where: { host: IsNull() }, cache: 3600000 }),
|
2020-12-05 11:18:37 +02:00
|
|
|
NoteReactions.count({ cache: 3600000 }), // 1 hour
|
2022-03-26 08:34:00 +02:00
|
|
|
//NoteReactions.count({ where: { userHost: IsNull() }, cache: 3600000 }),
|
2022-02-12 10:33:29 +02:00
|
|
|
Instances.count({ cache: 3600000 }),
|
2019-04-07 15:50:36 +03:00
|
|
|
]);
|
|
|
|
|
|
|
|
return {
|
2019-04-23 16:35:26 +03:00
|
|
|
notesCount,
|
|
|
|
originalNotesCount,
|
|
|
|
usersCount,
|
|
|
|
originalUsersCount,
|
2020-12-05 11:18:37 +02:00
|
|
|
reactionsCount,
|
|
|
|
//originalReactionsCount,
|
2019-04-23 16:35:26 +03:00
|
|
|
instances,
|
2022-02-05 17:43:22 +02:00
|
|
|
driveUsageLocal: 0,
|
|
|
|
driveUsageRemote: 0,
|
2019-04-07 15:50:36 +03:00
|
|
|
};
|
2019-02-22 04:46:58 +02:00
|
|
|
});
|