2018-11-02 05:47:44 +01:00
|
|
|
import define from '../define';
|
2019-04-07 14:50:36 +02:00
|
|
|
import { Notes, Users } from '../../../models';
|
|
|
|
import { federationChart, driveChart } from '../../../services/chart';
|
2017-08-12 08:17:03 +02:00
|
|
|
|
2018-11-02 05:47:44 +01:00
|
|
|
export const meta = {
|
|
|
|
requireCredential: false,
|
|
|
|
|
|
|
|
desc: {
|
|
|
|
'en-US': 'Get the instance\'s statistics'
|
|
|
|
},
|
|
|
|
|
2019-02-23 03:20:58 +01:00
|
|
|
tags: ['meta'],
|
|
|
|
|
2018-11-02 05:47:44 +01:00
|
|
|
params: {
|
2019-02-24 19:30:22 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
res: {
|
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
notesCount: {
|
|
|
|
type: 'number',
|
|
|
|
description: 'The count of all (local/remote) notes of this instance.',
|
|
|
|
},
|
|
|
|
originalNotesCount: {
|
|
|
|
type: 'number',
|
|
|
|
description: 'The count of all local notes of this instance.',
|
|
|
|
},
|
|
|
|
usersCount: {
|
|
|
|
type: 'number',
|
|
|
|
description: 'The count of all (local/remote) accounts of this instance.',
|
|
|
|
},
|
|
|
|
originalUsersCount: {
|
|
|
|
type: 'number',
|
|
|
|
description: 'The count of all local accounts of this instance.',
|
|
|
|
},
|
|
|
|
instances: {
|
|
|
|
type: 'number',
|
|
|
|
description: 'The count of federated instances.',
|
|
|
|
},
|
|
|
|
}
|
2018-11-02 05:47:44 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-02-22 03:46:58 +01:00
|
|
|
export default define(meta, async () => {
|
2019-04-07 14:50:36 +02:00
|
|
|
const [notesCount, originalNotesCount, usersCount, originalUsersCount, instances, driveUsageLocal, driveUsageRemote] = await Promise.all([
|
|
|
|
Notes.count(),
|
|
|
|
Notes.count({ userHost: null }),
|
|
|
|
Users.count(),
|
|
|
|
Users.count({ host: null }),
|
|
|
|
federationChart.getChart('hour', 1).then(chart => chart.instance.total[0]),
|
|
|
|
driveChart.getChart('hour', 1).then(chart => chart.local.totalSize[0]),
|
|
|
|
driveChart.getChart('hour', 1).then(chart => chart.remote.totalSize[0]),
|
|
|
|
]);
|
|
|
|
|
|
|
|
return {
|
|
|
|
notesCount, originalNotesCount, usersCount, originalUsersCount, instances, driveUsageLocal, driveUsageRemote
|
|
|
|
};
|
2019-02-22 03:46:58 +01:00
|
|
|
});
|