rudeshark.net/src/server/api/endpoints/drive.ts

49 lines
912 B
TypeScript
Raw Normal View History

2018-03-29 13:32:18 +02:00
import DriveFile from '../../../models/drive-file';
2018-11-02 05:47:44 +01:00
import define from '../define';
import fetchMeta from '../../../misc/fetch-meta';
2016-12-28 23:49:51 +01:00
2018-07-16 21:36:44 +02:00
export const meta = {
desc: {
2018-08-28 23:59:43 +02:00
'ja-JP': 'ドライブの情報を取得します。',
'en-US': 'Get drive information.'
2018-07-16 21:36:44 +02:00
},
tags: ['drive', 'account'],
2018-07-16 21:36:44 +02:00
requireCredential: true,
kind: 'drive-read'
};
export default define(meta, async (ps, user) => {
const instance = await fetchMeta();
2017-03-03 20:28:38 +01:00
// Calculate drive usage
const usage = await DriveFile.aggregate([{
$match: {
'metadata.userId': user._id,
'metadata.deletedAt': { $exists: false }
}
}, {
$project: {
length: true
}
}, {
$group: {
_id: null,
usage: { $sum: '$length' }
}
}])
.then((aggregates: any[]) => {
if (aggregates.length > 0) {
return aggregates[0].usage;
}
return 0;
});
2016-12-28 23:49:51 +01:00
return {
capacity: 1024 * 1024 * instance.localDriveCapacityMb,
2017-03-03 20:28:38 +01:00
usage: usage
};
});