UNPKG

@aws-amplify/storage

Version:

Storage category of aws-amplify

90 lines (79 loc) 2.17 kB
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 import { Endpoint, HttpRequest, HttpResponse, parseMetadata, } from '@aws-amplify/core/internals/aws-client-utils'; import { AmplifyUrl, AmplifyUrlSearchParams, } from '@aws-amplify/core/internals/utils'; import { composeServiceApi } from '@aws-amplify/core/internals/aws-client-utils/composers'; import { buildStorageServiceError, deserializeCompletedPartList, emptyArrayGuard, map, parseXmlBody, s3TransferHandler, serializePathnameObjectKey, validateS3RequiredParameter, } from '../utils'; import type { ListPartsCommandInput, ListPartsCommandOutput } from './types'; import { defaultConfig, parseXmlError } from './base'; export type ListPartsInput = Pick< ListPartsCommandInput, 'Bucket' | 'Key' | 'UploadId' >; export type ListPartsOutput = Pick< ListPartsCommandOutput, 'Parts' | 'UploadId' | '$metadata' >; const listPartsSerializer = async ( input: ListPartsInput, endpoint: Endpoint, ): Promise<HttpRequest> => { const headers = {}; const url = new AmplifyUrl(endpoint.url.toString()); validateS3RequiredParameter(!!input.Key, 'Key'); url.pathname = serializePathnameObjectKey(url, input.Key); validateS3RequiredParameter(!!input.UploadId, 'UploadId'); url.search = new AmplifyUrlSearchParams({ 'x-id': 'ListParts', uploadId: input.UploadId, }).toString(); return { method: 'GET', headers, url, }; }; const listPartsDeserializer = async ( response: HttpResponse, ): Promise<ListPartsOutput> => { if (response.statusCode >= 300) { // error is always set when statusCode >= 300 throw buildStorageServiceError((await parseXmlError(response))!); } else { const parsed = await parseXmlBody(response); const contents = map(parsed, { UploadId: 'UploadId', Parts: [ 'Part', value => emptyArrayGuard(value, deserializeCompletedPartList), ], }); return { $metadata: parseMetadata(response), ...contents, }; } }; export const listParts = composeServiceApi( s3TransferHandler, listPartsSerializer, listPartsDeserializer, { ...defaultConfig, responseType: 'text' }, );