2022-02-27 11:07:39 +09:00
|
|
|
import define from '../define.js';
|
|
|
|
import { fetchMeta } from '@/misc/fetch-meta.js';
|
|
|
|
import { DriveFiles } from '@/models/index.js';
|
2016-12-29 07:49:51 +09:00
|
|
|
|
2018-07-17 04:36:44 +09:00
|
|
|
export const meta = {
|
2019-02-23 11:20:58 +09:00
|
|
|
tags: ['drive', 'account'],
|
|
|
|
|
2022-01-18 22:27:10 +09:00
|
|
|
requireCredential: true,
|
2018-07-17 04:36:44 +09:00
|
|
|
|
2019-04-07 21:50:36 +09:00
|
|
|
kind: 'read:drive',
|
2019-02-25 03:21:54 +09:00
|
|
|
|
|
|
|
res: {
|
2022-01-18 22:27:10 +09:00
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
2019-02-25 03:21:54 +09:00
|
|
|
properties: {
|
|
|
|
capacity: {
|
2022-01-18 22:27:10 +09:00
|
|
|
type: 'number',
|
|
|
|
optional: false, nullable: false,
|
2019-02-25 03:21:54 +09:00
|
|
|
},
|
|
|
|
usage: {
|
2022-01-18 22:27:10 +09:00
|
|
|
type: 'number',
|
|
|
|
optional: false, nullable: false,
|
2021-12-09 23:58:30 +09:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2022-01-18 22:27:10 +09:00
|
|
|
} as const;
|
2018-07-17 04:36:44 +09:00
|
|
|
|
2022-02-20 13:15:40 +09:00
|
|
|
export const paramDef = {
|
2022-02-19 14:05:32 +09:00
|
|
|
type: 'object',
|
|
|
|
properties: {},
|
|
|
|
required: [],
|
|
|
|
} as const;
|
|
|
|
|
2022-01-03 02:12:50 +09:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-02-19 14:05:32 +09:00
|
|
|
export default define(meta, paramDef, 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
|
2021-03-24 11:05:37 +09:00
|
|
|
const usage = await DriveFiles.calcDriveUsageOf(user.id);
|
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,
|
2021-12-09 23:58:30 +09:00
|
|
|
usage: usage,
|
2019-02-22 11:46:58 +09:00
|
|
|
};
|
|
|
|
});
|