2018-11-02 13:47:44 +09:00
|
|
|
import define from '../define';
|
2020-12-05 18:18:37 +09:00
|
|
|
import { NoteReactions, Notes, Users } from '../../../models';
|
2019-04-07 21:50:36 +09:00
|
|
|
import { federationChart, driveChart } from '../../../services/chart';
|
2017-08-12 15:17:03 +09:00
|
|
|
|
2018-11-02 13:47:44 +09:00
|
|
|
export const meta = {
|
2020-02-15 21:33:32 +09:00
|
|
|
requireCredential: false as const,
|
2018-11-02 13:47:44 +09:00
|
|
|
|
2019-02-23 11:20:58 +09:00
|
|
|
tags: ['meta'],
|
|
|
|
|
2018-11-02 13:47:44 +09:00
|
|
|
params: {
|
2019-02-25 03:30:22 +09:00
|
|
|
},
|
|
|
|
|
|
|
|
res: {
|
2019-06-27 18:04:09 +09:00
|
|
|
type: 'object' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-02-25 03:30:22 +09:00
|
|
|
properties: {
|
|
|
|
notesCount: {
|
2019-06-27 18:04:09 +09:00
|
|
|
type: 'number' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-02-25 03:30:22 +09:00
|
|
|
},
|
|
|
|
originalNotesCount: {
|
2019-06-27 18:04:09 +09:00
|
|
|
type: 'number' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-02-25 03:30:22 +09:00
|
|
|
},
|
|
|
|
usersCount: {
|
2019-06-27 18:04:09 +09:00
|
|
|
type: 'number' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-02-25 03:30:22 +09:00
|
|
|
},
|
|
|
|
originalUsersCount: {
|
2019-06-27 18:04:09 +09:00
|
|
|
type: 'number' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-02-25 03:30:22 +09:00
|
|
|
},
|
|
|
|
instances: {
|
2019-06-27 18:04:09 +09:00
|
|
|
type: 'number' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-02-25 03:30:22 +09:00
|
|
|
},
|
2021-03-06 22:34:11 +09:00
|
|
|
driveUsageLocal: {
|
|
|
|
type: 'number' as const,
|
|
|
|
optional: false as const, nullable: false as const
|
|
|
|
},
|
|
|
|
driveUsageRemote: {
|
|
|
|
type: 'number' as const,
|
|
|
|
optional: false as const, nullable: false as const
|
|
|
|
}
|
2019-02-25 03:30:22 +09:00
|
|
|
}
|
2018-11-02 13:47:44 +09:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-02-22 11:46:58 +09:00
|
|
|
export default define(meta, async () => {
|
2020-12-05 18:18:37 +09:00
|
|
|
const [
|
|
|
|
notesCount,
|
2019-04-23 22:35:26 +09:00
|
|
|
originalNotesCount,
|
|
|
|
usersCount,
|
|
|
|
originalUsersCount,
|
2020-12-05 18:18:37 +09:00
|
|
|
reactionsCount,
|
|
|
|
//originalReactionsCount,
|
2019-04-23 22:35:26 +09:00
|
|
|
instances,
|
|
|
|
driveUsageLocal,
|
|
|
|
driveUsageRemote
|
|
|
|
] = await Promise.all([
|
2019-05-25 08:35:16 +09:00
|
|
|
Notes.count({ cache: 3600000 }), // 1 hour
|
|
|
|
Notes.count({ where: { userHost: null }, cache: 3600000 }),
|
|
|
|
Users.count({ cache: 3600000 }),
|
|
|
|
Users.count({ where: { host: null }, cache: 3600000 }),
|
2020-12-05 18:18:37 +09:00
|
|
|
NoteReactions.count({ cache: 3600000 }), // 1 hour
|
|
|
|
//NoteReactions.count({ where: { userHost: null }, cache: 3600000 }),
|
2020-03-07 11:23:31 +09:00
|
|
|
federationChart.getChart('hour', 1, null).then(chart => chart.instance.total[0]),
|
|
|
|
driveChart.getChart('hour', 1, null).then(chart => chart.local.totalSize[0]),
|
|
|
|
driveChart.getChart('hour', 1, null).then(chart => chart.remote.totalSize[0]),
|
2019-04-07 21:50:36 +09:00
|
|
|
]);
|
|
|
|
|
|
|
|
return {
|
2019-04-23 22:35:26 +09:00
|
|
|
notesCount,
|
|
|
|
originalNotesCount,
|
|
|
|
usersCount,
|
|
|
|
originalUsersCount,
|
2020-12-05 18:18:37 +09:00
|
|
|
reactionsCount,
|
|
|
|
//originalReactionsCount,
|
2019-04-23 22:35:26 +09:00
|
|
|
instances,
|
|
|
|
driveUsageLocal,
|
|
|
|
driveUsageRemote
|
2019-04-07 21:50:36 +09:00
|
|
|
};
|
2019-02-22 11:46:58 +09:00
|
|
|
});
|