@aws-amplify/storage
Version:
Storage category of aws-amplify
140 lines (128 loc) • 3.23 kB
text/typescript
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
import { StorageAccessLevel } from '@aws-amplify/core';
import { ContentDisposition, ResolvedS3Config } from '../../../types/options';
import { StorageUploadDataPayload } from '../../../../../types';
import { Part, createMultipartUpload } from '../../../utils/client';
import { logger } from '../../../../../utils';
import { constructContentDisposition } from '../../../utils/constructContentDisposition';
import {
cacheMultipartUpload,
findCachedUploadParts,
getUploadsCacheKey,
} from './uploadCache';
interface LoadOrCreateMultipartUploadOptions {
s3Config: ResolvedS3Config;
data: StorageUploadDataPayload;
bucket: string;
accessLevel?: StorageAccessLevel;
keyPrefix?: string;
key: string;
contentType?: string;
contentDisposition?: string | ContentDisposition;
contentEncoding?: string;
metadata?: Record<string, string>;
size?: number;
abortSignal?: AbortSignal;
}
interface LoadOrCreateMultipartUploadResult {
uploadId: string;
cachedParts: Part[];
}
/**
* Load the in-progress multipart upload from local storage or async storage(RN) if it exists, or create a new multipart
* upload.
*
* @internal
*/
export const loadOrCreateMultipartUpload = async ({
s3Config,
data,
size,
contentType,
bucket,
accessLevel,
keyPrefix,
key,
contentDisposition,
contentEncoding,
metadata,
abortSignal,
}: LoadOrCreateMultipartUploadOptions): Promise<LoadOrCreateMultipartUploadResult> => {
const finalKey = keyPrefix !== undefined ? keyPrefix + key : key;
let cachedUpload:
| {
parts: Part[];
uploadId: string;
uploadCacheKey: string;
}
| undefined;
if (size === undefined) {
logger.debug('uploaded data size cannot be determined, skipping cache.');
cachedUpload = undefined;
} else {
const uploadCacheKey = getUploadsCacheKey({
size,
contentType,
file: data instanceof File ? data : undefined,
bucket,
accessLevel,
key,
});
const cachedUploadParts = await findCachedUploadParts({
s3Config,
cacheKey: uploadCacheKey,
bucket,
finalKey,
});
cachedUpload = cachedUploadParts
? { ...cachedUploadParts, uploadCacheKey }
: undefined;
}
if (cachedUpload) {
return {
uploadId: cachedUpload.uploadId,
cachedParts: cachedUpload.parts,
};
} else {
const { UploadId } = await createMultipartUpload(
{
...s3Config,
abortSignal,
},
{
Bucket: bucket,
Key: finalKey,
ContentType: contentType,
ContentDisposition: constructContentDisposition(contentDisposition),
ContentEncoding: contentEncoding,
Metadata: metadata,
},
);
if (size === undefined) {
logger.debug('uploaded data size cannot be determined, skipping cache.');
return {
uploadId: UploadId!,
cachedParts: [],
};
}
const uploadCacheKey = getUploadsCacheKey({
size,
contentType,
file: data instanceof File ? data : undefined,
bucket,
accessLevel,
key,
});
await cacheMultipartUpload(uploadCacheKey, {
uploadId: UploadId!,
bucket,
key,
fileName: data instanceof File ? data.name : '',
});
return {
uploadId: UploadId!,
cachedParts: [],
};
}
};