Sharkey/src/server/api/endpoints/drive.ts
syuilo ce340aba7a
Refactor (#7394)
* wip

* wip

* wip

* wip

* wip

* Update define.ts

* Update update.ts

* Update user.ts

* wip

* wip

* Update request.ts

* URL

* wip

* wip

* wip

* wip

* Update invite.ts

* Update create.ts
2021-03-24 11:05:37 +09:00

44 lines
935 B
TypeScript

import define from '../define';
import { fetchMeta } from '@/misc/fetch-meta';
import { DriveFiles } from '../../../models';
export const meta = {
desc: {
'ja-JP': 'ドライブの情報を取得します。',
'en-US': 'Get drive information.'
},
tags: ['drive', 'account'],
requireCredential: true as const,
kind: 'read:drive',
res: {
type: 'object' as const,
optional: false as const, nullable: false as const,
properties: {
capacity: {
type: 'number' as const,
optional: false as const, nullable: false as const,
},
usage: {
type: 'number' as const,
optional: false as const, nullable: false as const,
}
}
}
};
export default define(meta, async (ps, user) => {
const instance = await fetchMeta(true);
// Calculate drive usage
const usage = await DriveFiles.calcDriveUsageOf(user.id);
return {
capacity: 1024 * 1024 * instance.localDriveCapacityMb,
usage: usage
};
});