2018-11-01 23:47:44 -05:00
|
|
|
import define from '../define';
|
2019-02-07 13:31:33 -06:00
|
|
|
import driveChart from '../../../services/chart/drive';
|
|
|
|
import federationChart from '../../../services/chart/federation';
|
2018-11-05 16:14:43 -06:00
|
|
|
import fetchMeta from '../../../misc/fetch-meta';
|
2017-08-12 01:17:03 -05:00
|
|
|
|
2018-11-01 23:47:44 -05:00
|
|
|
export const meta = {
|
|
|
|
requireCredential: false,
|
|
|
|
|
|
|
|
desc: {
|
|
|
|
'en-US': 'Get the instance\'s statistics'
|
|
|
|
},
|
|
|
|
|
2019-02-22 20:20:58 -06:00
|
|
|
tags: ['meta'],
|
|
|
|
|
2018-11-01 23:47:44 -05:00
|
|
|
params: {
|
2019-02-24 12:30:22 -06: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-01 23:47:44 -05:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-02-21 20:46:58 -06:00
|
|
|
export default define(meta, async () => {
|
2018-11-05 16:14:43 -06:00
|
|
|
const instance = await fetchMeta();
|
2017-08-12 01:17:03 -05:00
|
|
|
|
2018-11-05 16:14:43 -06:00
|
|
|
const stats: any = instance.stats;
|
2018-11-02 21:37:44 -05:00
|
|
|
|
|
|
|
const driveStats = await driveChart.getChart('hour', 1);
|
|
|
|
stats.driveUsageLocal = driveStats.local.totalSize[0];
|
|
|
|
stats.driveUsageRemote = driveStats.remote.totalSize[0];
|
|
|
|
|
|
|
|
const federationStats = await federationChart.getChart('hour', 1);
|
|
|
|
stats.instances = federationStats.instance.total[0];
|
|
|
|
|
2019-02-21 20:46:58 -06:00
|
|
|
return stats;
|
|
|
|
});
|