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