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