2022-09-18 03:27:08 +09:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
2022-03-26 15:34:00 +09:00
|
|
|
import { IsNull } from 'typeorm';
|
2022-09-18 03:27:08 +09:00
|
|
|
import { InstancesRepository, NotesRepository, UsersRepository } from '@/models/index.js';
|
|
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
|
|
|
import { DI } from '@/di-symbols.js';
|
2017-08-12 15:17:03 +09:00
|
|
|
|
2018-11-02 13:47:44 +09:00
|
|
|
export const meta = {
|
2022-01-18 22:27:10 +09:00
|
|
|
requireCredential: false,
|
2018-11-02 13:47:44 +09:00
|
|
|
|
2019-02-23 11:20:58 +09:00
|
|
|
tags: ['meta'],
|
|
|
|
|
2019-02-25 03:30:22 +09:00
|
|
|
res: {
|
2022-01-18 22:27:10 +09:00
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
2019-02-25 03:30:22 +09:00
|
|
|
properties: {
|
|
|
|
notesCount: {
|
2022-01-18 22:27:10 +09:00
|
|
|
type: 'number',
|
|
|
|
optional: false, nullable: false,
|
2019-02-25 03:30:22 +09:00
|
|
|
},
|
|
|
|
originalNotesCount: {
|
2022-01-18 22:27:10 +09:00
|
|
|
type: 'number',
|
|
|
|
optional: false, nullable: false,
|
2019-02-25 03:30:22 +09:00
|
|
|
},
|
|
|
|
usersCount: {
|
2022-01-18 22:27:10 +09:00
|
|
|
type: 'number',
|
|
|
|
optional: false, nullable: false,
|
2019-02-25 03:30:22 +09:00
|
|
|
},
|
|
|
|
originalUsersCount: {
|
2022-01-18 22:27:10 +09:00
|
|
|
type: 'number',
|
|
|
|
optional: false, nullable: false,
|
2019-02-25 03:30:22 +09:00
|
|
|
},
|
|
|
|
instances: {
|
2022-01-18 22:27:10 +09:00
|
|
|
type: 'number',
|
|
|
|
optional: false, nullable: false,
|
2019-02-25 03:30:22 +09:00
|
|
|
},
|
2021-03-06 22:34:11 +09:00
|
|
|
driveUsageLocal: {
|
2022-01-18 22:27:10 +09:00
|
|
|
type: 'number',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 22:34:11 +09:00
|
|
|
},
|
|
|
|
driveUsageRemote: {
|
2022-01-18 22:27:10 +09:00
|
|
|
type: 'number',
|
|
|
|
optional: false, nullable: false,
|
2021-12-09 23:58:30 +09:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2022-01-18 22:27:10 +09:00
|
|
|
} as const;
|
2018-11-02 13:47:44 +09:00
|
|
|
|
2022-02-20 13:15:40 +09:00
|
|
|
export const paramDef = {
|
2022-02-19 14:05:32 +09:00
|
|
|
type: 'object',
|
|
|
|
properties: {},
|
|
|
|
required: [],
|
|
|
|
} as const;
|
|
|
|
|
2022-01-03 02:12:50 +09:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-09-18 03:27:08 +09:00
|
|
|
@Injectable()
|
|
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> {
|
|
|
|
constructor(
|
|
|
|
@Inject(DI.usersRepository)
|
|
|
|
private usersRepository: UsersRepository,
|
2019-04-07 21:50:36 +09:00
|
|
|
|
2022-09-18 03:27:08 +09:00
|
|
|
@Inject(DI.notesRepository)
|
|
|
|
private notesRepository: NotesRepository,
|
|
|
|
|
|
|
|
@Inject(DI.instancesRepository)
|
|
|
|
private instancesRepository: InstancesRepository,
|
|
|
|
|
|
|
|
@Inject(DI.noteReactionsRepository)
|
|
|
|
private noteReactionsRepository: NoteReactionsRepository,
|
|
|
|
) {
|
|
|
|
super(meta, paramDef, async () => {
|
|
|
|
const [
|
|
|
|
notesCount,
|
|
|
|
originalNotesCount,
|
|
|
|
usersCount,
|
|
|
|
originalUsersCount,
|
|
|
|
reactionsCount,
|
|
|
|
//originalReactionsCount,
|
|
|
|
instances,
|
|
|
|
] = await Promise.all([
|
|
|
|
this.notesRepository.count({ cache: 3600000 }), // 1 hour
|
|
|
|
this.notesRepository.count({ where: { userHost: IsNull() }, cache: 3600000 }),
|
|
|
|
this.usersRepository.count({ cache: 3600000 }),
|
|
|
|
this.usersRepository.count({ where: { host: IsNull() }, cache: 3600000 }),
|
|
|
|
this.noteReactionsRepository.count({ cache: 3600000 }), // 1 hour
|
|
|
|
//this.noteReactionsRepository.count({ where: { userHost: IsNull() }, cache: 3600000 }),
|
|
|
|
this.instancesRepository.count({ cache: 3600000 }),
|
|
|
|
]);
|
|
|
|
|
|
|
|
return {
|
|
|
|
notesCount,
|
|
|
|
originalNotesCount,
|
|
|
|
usersCount,
|
|
|
|
originalUsersCount,
|
|
|
|
reactionsCount,
|
|
|
|
//originalReactionsCount,
|
|
|
|
instances,
|
|
|
|
driveUsageLocal: 0,
|
|
|
|
driveUsageRemote: 0,
|
|
|
|
};
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|