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