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