1 | /* |
2 | * Copyright 2010-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved. |
3 | * |
4 | * Licensed under the Apache License, Version 2.0 (the "License"). |
5 | * You may not use this file except in compliance with the License. |
6 | * A copy of the License is located at |
7 | * |
8 | * http://aws.amazon.com/apache2.0 |
9 | * |
10 | * or in the "license" file accompanying this file. This file is distributed |
11 | * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either |
12 | * express or implied. See the License for the specific language governing |
13 | * permissions and limitations under the License. |
14 | */ |
15 | |
16 | #include <aws/s3/model/UploadPartRequest.h> |
17 | #include <aws/core/AmazonWebServiceResult.h> |
18 | #include <aws/core/http/URI.h> |
19 | #include <aws/core/utils/HashingUtils.h> |
20 | #include <aws/core/utils/memory/stl/AWSStringStream.h> |
21 | |
22 | #include <utility> |
23 | |
24 | using namespace Aws::S3::Model; |
25 | using namespace Aws::Utils::Stream; |
26 | using namespace Aws::Utils; |
27 | using namespace Aws::Http; |
28 | using namespace Aws; |
29 | |
30 | UploadPartRequest::UploadPartRequest() : |
31 | m_bucketHasBeenSet(false), |
32 | m_contentLength(0), |
33 | m_contentLengthHasBeenSet(false), |
34 | m_contentMD5HasBeenSet(false), |
35 | m_keyHasBeenSet(false), |
36 | m_partNumber(0), |
37 | m_partNumberHasBeenSet(false), |
38 | m_uploadIdHasBeenSet(false), |
39 | m_sSECustomerAlgorithmHasBeenSet(false), |
40 | m_sSECustomerKeyHasBeenSet(false), |
41 | m_sSECustomerKeyMD5HasBeenSet(false), |
42 | m_requestPayer(RequestPayer::NOT_SET), |
43 | m_requestPayerHasBeenSet(false), |
44 | m_customizedAccessLogTagHasBeenSet(false) |
45 | { |
46 | } |
47 | |
48 | |
49 | void UploadPartRequest::AddQueryStringParameters(URI& uri) const |
50 | { |
51 | Aws::StringStream ss; |
52 | if(m_partNumberHasBeenSet) |
53 | { |
54 | ss << m_partNumber; |
55 | uri.AddQueryStringParameter("partNumber" , ss.str()); |
56 | ss.str("" ); |
57 | } |
58 | |
59 | if(m_uploadIdHasBeenSet) |
60 | { |
61 | ss << m_uploadId; |
62 | uri.AddQueryStringParameter("uploadId" , ss.str()); |
63 | ss.str("" ); |
64 | } |
65 | |
66 | if(!m_customizedAccessLogTag.empty()) |
67 | { |
68 | // only accept customized LogTag which starts with "x-" |
69 | Aws::Map<Aws::String, Aws::String> collectedLogTags; |
70 | for(const auto& entry: m_customizedAccessLogTag) |
71 | { |
72 | if (!entry.first.empty() && !entry.second.empty() && entry.first.substr(0, 2) == "x-" ) |
73 | { |
74 | collectedLogTags.emplace(entry.first, entry.second); |
75 | } |
76 | } |
77 | |
78 | if (!collectedLogTags.empty()) |
79 | { |
80 | uri.AddQueryStringParameter(collectedLogTags); |
81 | } |
82 | } |
83 | } |
84 | Aws::Http::HeaderValueCollection UploadPartRequest::() const |
85 | { |
86 | Aws::Http::HeaderValueCollection ; |
87 | Aws::StringStream ss; |
88 | if(m_contentLengthHasBeenSet) |
89 | { |
90 | ss << m_contentLength; |
91 | headers.emplace("content-length" , ss.str()); |
92 | ss.str("" ); |
93 | } |
94 | |
95 | if(m_contentMD5HasBeenSet) |
96 | { |
97 | ss << m_contentMD5; |
98 | headers.emplace("content-md5" , ss.str()); |
99 | ss.str("" ); |
100 | } |
101 | |
102 | if(m_sSECustomerAlgorithmHasBeenSet) |
103 | { |
104 | ss << m_sSECustomerAlgorithm; |
105 | headers.emplace("x-amz-server-side-encryption-customer-algorithm" , ss.str()); |
106 | ss.str("" ); |
107 | } |
108 | |
109 | if(m_sSECustomerKeyHasBeenSet) |
110 | { |
111 | ss << m_sSECustomerKey; |
112 | headers.emplace("x-amz-server-side-encryption-customer-key" , ss.str()); |
113 | ss.str("" ); |
114 | } |
115 | |
116 | if(m_sSECustomerKeyMD5HasBeenSet) |
117 | { |
118 | ss << m_sSECustomerKeyMD5; |
119 | headers.emplace("x-amz-server-side-encryption-customer-key-md5" , ss.str()); |
120 | ss.str("" ); |
121 | } |
122 | |
123 | if(m_requestPayerHasBeenSet) |
124 | { |
125 | headers.emplace("x-amz-request-payer" , RequestPayerMapper::GetNameForRequestPayer(m_requestPayer)); |
126 | } |
127 | |
128 | return headers; |
129 | |
130 | } |
131 | |