feat: Track storage usage

This commit is contained in:
Maksim Eltyshev
2025-08-23 00:03:20 +02:00
parent 2f4bcb0583
commit 4d77a1f596
89 changed files with 1052 additions and 304 deletions

View File

@@ -44,7 +44,7 @@ class LocalFileManager {
}
// eslint-disable-next-line class-methods-use-this
async getSizeInBytes(filePathSegment) {
async getSize(filePathSegment) {
let result;
try {
result = await fs.promises.stat(buildPath(filePathSegment));

View File

@@ -52,7 +52,7 @@ class S3FileManager {
return result.Body;
}
async getSizeInBytes(filePathSegment) {
async getSize(filePathSegment) {
const headObjectCommand = new HeadObjectCommand({
Bucket: sails.config.custom.s3Bucket,
Key: filePathSegment,