2018-11-02 05:47:44 +01:00
|
|
|
import define from '../define';
|
2018-11-05 23:14:43 +01:00
|
|
|
import fetchMeta from '../../../misc/fetch-meta';
|
2019-04-07 14:50:36 +02:00
|
|
|
import { DriveFiles } from '../../../models';
|
2019-04-23 15:35:26 +02:00
|
|
|
import { types, bool } from '../../../misc/schema';
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2018-07-16 21:36:44 +02:00
|
|
|
export const meta = {
|
|
|
|
desc: {
|
2018-08-28 23:59:43 +02:00
|
|
|
'ja-JP': 'ドライブの情報を取得します。',
|
|
|
|
'en-US': 'Get drive information.'
|
2018-07-16 21:36:44 +02:00
|
|
|
},
|
|
|
|
|
2019-02-23 03:20:58 +01:00
|
|
|
tags: ['drive', 'account'],
|
|
|
|
|
2018-07-16 21:36:44 +02:00
|
|
|
requireCredential: true,
|
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
kind: 'read:drive',
|
2019-02-24 19:21:54 +01:00
|
|
|
|
|
|
|
res: {
|
2019-04-23 15:35:26 +02:00
|
|
|
type: types.object,
|
|
|
|
optional: bool.false, nullable: bool.false,
|
2019-02-24 19:21:54 +01:00
|
|
|
properties: {
|
|
|
|
capacity: {
|
2019-04-23 15:35:26 +02:00
|
|
|
type: types.number,
|
|
|
|
optional: bool.false, nullable: bool.false,
|
2019-02-24 19:21:54 +01:00
|
|
|
},
|
|
|
|
usage: {
|
2019-04-23 15:35:26 +02:00
|
|
|
type: types.number,
|
|
|
|
optional: bool.false, nullable: bool.false,
|
2019-02-24 19:21:54 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-07-16 21:36:44 +02:00
|
|
|
};
|
|
|
|
|
2019-02-22 03:46:58 +01:00
|
|
|
export default define(meta, async (ps, user) => {
|
2018-11-05 23:14:43 +01:00
|
|
|
const instance = await fetchMeta();
|
|
|
|
|
2017-03-03 20:28:38 +01:00
|
|
|
// Calculate drive usage
|
2019-04-07 14:50:36 +02:00
|
|
|
const usage = await DriveFiles.clacDriveUsageOf(user);
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2019-02-22 03:46:58 +01:00
|
|
|
return {
|
2018-11-05 23:14:43 +01:00
|
|
|
capacity: 1024 * 1024 * instance.localDriveCapacityMb,
|
2017-03-03 20:28:38 +01:00
|
|
|
usage: usage
|
2019-02-22 03:46:58 +01:00
|
|
|
};
|
|
|
|
});
|