File size: 1,590 Bytes
4e1096a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | import { s3Storage } from './s3';
import { r2Storage } from './r2';
import { getStorageType } from './storage';
export const getDownloadSignedUrl = async (
fileKey: string,
expiresIn: number,
bucketName?: string,
) => {
const storageType = getStorageType();
if (storageType === 'r2') {
bucketName = bucketName || process.env['R2_BUCKET_NAME'] || '';
return await r2Storage.getDownloadSignedUrl(bucketName, fileKey, expiresIn);
} else {
bucketName = bucketName || process.env['S3_BUCKET_NAME'] || '';
return await s3Storage.getDownloadSignedUrl(bucketName, fileKey, expiresIn);
}
};
export const getUploadSignedUrl = async (
fileKey: string,
contentLength: number,
expiresIn: number,
bucketName?: string,
) => {
const storageType = getStorageType();
if (storageType === 'r2') {
bucketName = bucketName || process.env['R2_BUCKET_NAME'] || '';
return await r2Storage.getUploadSignedUrl(bucketName, fileKey, contentLength, expiresIn);
} else {
bucketName = bucketName || process.env['S3_BUCKET_NAME'] || '';
return await s3Storage.getUploadSignedUrl(bucketName, fileKey, contentLength, expiresIn);
}
};
export const deleteObject = async (fileKey: string, bucketName?: string) => {
const storageType = getStorageType();
if (storageType === 'r2') {
bucketName = bucketName || process.env['R2_BUCKET_NAME'] || '';
return await r2Storage.deleteObject(bucketName, fileKey);
} else {
bucketName = bucketName || process.env['S3_BUCKET_NAME'] || '';
return await s3Storage.deleteObject(bucketName, fileKey);
}
};
|