mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-13 14:33:09 +02:00
cd07eb222e
* Add additional drive capacity change support
* Update packages/backend/src/server/api/endpoints/admin/drive-capacity-override.ts
Co-authored-by: Johann150 <johann@qwertqwefsday.eu>
* 🎨
* show instance default capacity in placeholder
* fix
* update api/drive
* fix
* remove :
* fix lint
Co-authored-by: Johann150 <johann@qwertqwefsday.eu>
Co-authored-by: tamaina <tamaina@hotmail.co.jp>
45 lines
944 B
TypeScript
45 lines
944 B
TypeScript
import { fetchMeta } from '@/misc/fetch-meta.js';
|
|
import { DriveFiles } from '@/models/index.js';
|
|
import define from '../define.js';
|
|
|
|
export const meta = {
|
|
tags: ['drive', 'account'],
|
|
|
|
requireCredential: true,
|
|
|
|
kind: 'read:drive',
|
|
|
|
res: {
|
|
type: 'object',
|
|
optional: false, nullable: false,
|
|
properties: {
|
|
capacity: {
|
|
type: 'number',
|
|
optional: false, nullable: false,
|
|
},
|
|
usage: {
|
|
type: 'number',
|
|
optional: false, nullable: false,
|
|
},
|
|
},
|
|
},
|
|
} as const;
|
|
|
|
export const paramDef = {
|
|
type: 'object',
|
|
properties: {},
|
|
required: [],
|
|
} as const;
|
|
|
|
// eslint-disable-next-line import/no-default-export
|
|
export default define(meta, paramDef, async (ps, user) => {
|
|
const instance = await fetchMeta(true);
|
|
|
|
// Calculate drive usage
|
|
const usage = await DriveFiles.calcDriveUsageOf(user.id);
|
|
|
|
return {
|
|
capacity: 1024 * 1024 * (user.driveCapacityOverrideMb || instance.localDriveCapacityMb),
|
|
usage: usage,
|
|
};
|
|
});
|