-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathCommonRequest.java
More file actions
519 lines (439 loc) · 13.1 KB
/
CommonRequest.java
File metadata and controls
519 lines (439 loc) · 13.1 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
package com.aliyuncs;
import com.aliyuncs.auth.SignatureVersion;
import com.aliyuncs.auth.signers.SignatureAlgorithm;
import com.aliyuncs.http.FormatType;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.http.ProtocolType;
import com.aliyuncs.policy.retry.RetryPolicy;
import com.aliyuncs.regions.ProductDomain;
import java.util.HashMap;
import java.util.Map;
public class CommonRequest {
private final Map<String, String> queryParameters = new HashMap<String, String>();
private final Map<String, String> bodyParameters = new HashMap<String, String>();
private final Map<String, String> headParameters = new HashMap<String, String>();
private String version = null;
private String product = null;
private String action = null;
private String locationProduct = null;
private String endpointType = null;
private String regionId = null;
private ProtocolType protocol = null;
private Integer connectTimeout = null;
private Integer readTimeout = null;
private MethodType method = null;
private FormatType httpContentType = null;
private byte[] httpContent = null;
private String encoding = null;
private FormatType accept = FormatType.JSON;
private String uriPattern = null;
private Map<String, String> pathParameters = new HashMap<String, String>();
private String domain = null;
private SignatureVersion signatureVersion;
private SignatureAlgorithm signatureAlgorithm;
private RetryPolicy retryPolicy = null;
@SuppressWarnings("rawtypes")
public AcsRequest buildRequest() {
if (uriPattern != null) {
CommonRoaRequest request = new CommonRoaRequest(product);
request.setSysUriPattern(uriPattern);
request.setSysSignatureVersion(signatureVersion);
request.setSysSignatureAlgorithm(signatureAlgorithm);
request.setSysRetryPolicy(retryPolicy);
for (String pathParamKey : pathParameters.keySet()) {
request.putPathParameter(pathParamKey, pathParameters.get(pathParamKey));
}
fillParams(request);
return request;
} else {
CommonRpcRequest request = new CommonRpcRequest(product);
request.setSysSignatureVersion(signatureVersion);
request.setSysSignatureAlgorithm(signatureAlgorithm);
request.setSysRetryPolicy(retryPolicy);
fillParams(request);
return request;
}
}
@SuppressWarnings("rawtypes")
private void fillParams(AcsRequest request) {
request.putHeaderParameter("x-sdk-invoke-type", "common");
if (version != null) {
request.setSysVersion(version);
}
if (action != null) {
request.setSysActionName(action);
}
if (regionId != null) {
request.setSysRegionId(regionId);
}
if (locationProduct != null) {
request.setSysLocationProduct(locationProduct);
}
if (endpointType != null) {
request.setSysEndpointType(endpointType);
}
if (connectTimeout != null) {
request.setSysConnectTimeout(connectTimeout);
}
if (readTimeout != null) {
request.setSysReadTimeout(readTimeout);
}
if (method != null) {
request.setSysMethod(method);
}
if (protocol != null) {
request.setSysProtocol(protocol);
}
request.setSysAcceptFormat(accept);
if (domain != null) {
ProductDomain productDomain = new ProductDomain(product, domain);
request.setSysProductDomain(productDomain);
}
if (bodyParameters.size() > 0 && httpContentType != null) {
request.setHttpContentType(httpContentType);
}
if (httpContent != null) {
request.setHttpContent(httpContent, encoding, httpContentType);
}
for (String queryParamKey : queryParameters.keySet()) {
request.putQueryParameter(queryParamKey, queryParameters.get(queryParamKey));
}
for (String bodyParamKey : bodyParameters.keySet()) {
request.putBodyParameter(bodyParamKey, bodyParameters.get(bodyParamKey));
}
for (String headParamKey : headParameters.keySet()) {
request.putHeaderParameter(headParamKey, headParameters.get(headParamKey));
}
}
/**
* @Deprecated : Use getSysVersion instead of this
*/
@Deprecated
public String getVersion() {
return version;
}
/**
* @Deprecated : Use setSysVersion instead of this
*/
@Deprecated
public void setVersion(String version) {
this.version = version;
}
/**
* @Deprecated : Use getSysProduct instead of this
*/
@Deprecated
public String getProduct() {
return product;
}
/**
* @Deprecated : Use setSysProduct instead of this
*/
@Deprecated
public void setProduct(String product) {
this.product = product;
}
/**
* @Deprecated : Use getSysAction instead of this
*/
@Deprecated
public String getAction() {
return action;
}
/**
* @Deprecated : Use setSysAction instead of this
*/
@Deprecated
public void setAction(String action) {
this.action = action;
}
/**
* @Deprecated : Use getSysLocationProduct instead of this
*/
@Deprecated
public String getLocationProduct() {
return locationProduct;
}
/**
* @Deprecated : Use setSysLocationProduct instead of this
*/
@Deprecated
public void setLocationProduct(String locationProduct) {
this.locationProduct = locationProduct;
}
/**
* @Deprecated : Use getSysEndpointType instead of this
*/
@Deprecated
public String getEndpointType() {
return endpointType;
}
/**
* @Deprecated : Use setSysEndpointType instead of this
*/
@Deprecated
public void setEndpointType(String endpointType) {
this.endpointType = endpointType;
}
/**
* @Deprecated : Use getSysRegionId instead of this
*/
@Deprecated
public String getRegionId() {
return regionId;
}
/**
* @Deprecated : Use setSysRegionId instead of this
*/
@Deprecated
public void setRegionId(String regionId) {
this.regionId = regionId;
}
/**
* @Deprecated : Use getSysProtocol instead of this
*/
@Deprecated
public ProtocolType getProtocol() {
return protocol;
}
/**
* @Deprecated : Use setSysProtocol instead of this
*/
@Deprecated
public void setProtocol(ProtocolType protocol) {
this.protocol = protocol;
}
public void putBodyParameter(String name, Object value) {
setParameter(this.bodyParameters, name, value);
}
public void putQueryParameter(String name, String value) {
setParameter(this.queryParameters, name, value);
}
public void putHeadParameter(String name, String value) {
setParameter(this.headParameters, name, value);
}
private void setParameter(Map<String, String> map, String name, Object value) {
if (null == map || name == null || value == null) {
return;
}
map.put(name, String.valueOf(value));
}
/**
* @Deprecated : Use getSysConnectTimeout instead of this
*/
@Deprecated
public Integer getConnectTimeout() {
return connectTimeout;
}
/**
* @Deprecated : Use setSysConnectTimeout instead of this
*/
@Deprecated
public void setConnectTimeout(Integer connectTimeout) {
this.connectTimeout = connectTimeout;
}
/**
* @Deprecated : Use getSysReadTimeout instead of this
*/
@Deprecated
public Integer getReadTimeout() {
return readTimeout;
}
/**
* @Deprecated : Use setSysReadTimeout instead of this
*/
@Deprecated
public void setReadTimeout(Integer readTimeout) {
this.readTimeout = readTimeout;
}
/**
* @Deprecated : Use getSysMethod instead of this
*/
@Deprecated
public MethodType getMethod() {
return method;
}
/**
* @Deprecated : Use setSysMethod instead of this
*/
@Deprecated
public void setMethod(MethodType method) {
this.method = method;
}
/**
* @Deprecated : Use getSysUriPattern instead of this
*/
@Deprecated
public String getUriPattern() {
return uriPattern;
}
/**
* @Deprecated : Use setSysUriPattern instead of this
*/
@Deprecated
public void setUriPattern(String uriPattern) {
this.uriPattern = uriPattern;
}
public void putPathParameter(String name, String value) {
setParameter(this.pathParameters, name, value);
}
/**
* @Deprecated : Use getSysDomain instead of this
*/
@Deprecated
public String getDomain() {
return domain;
}
/**
* @Deprecated : Use setSysDomain instead of this
*/
@Deprecated
public void setDomain(String domain) {
this.domain = domain;
}
public FormatType getHttpContentType() {
return httpContentType;
}
public void setHttpContentType(FormatType type) {
this.httpContentType = type;
}
public byte[] getHttpContent() {
return httpContent;
}
/**
* @Deprecated : Use getSysEncoding instead of this
*/
@Deprecated
public String getEncoding() {
return encoding;
}
/**
* @Deprecated : Use getSysQueryParameters instead of this
*/
@Deprecated
public Map<String, String> getQueryParameters() {
return queryParameters;
}
/**
* @Deprecated : Use getSysBodyParameters instead of this
*/
@Deprecated
public Map<String, String> getBodyParameters() {
return bodyParameters;
}
/**
* @Deprecated : Use getSysHeadParameters instead of this
*/
@Deprecated
public Map<String, String> getHeadParameters() {
return headParameters;
}
/**
* @Deprecated : Use getSysPathParameters instead of this
*/
@Deprecated
public Map<String, String> getPathParameters() {
return pathParameters;
}
public void setHttpContent(byte[] content, String encoding, FormatType format) {
if (content == null || encoding == null || format == null) {
return;
}
this.httpContent = content;
this.httpContentType = format;
this.encoding = encoding;
}
public String getSysVersion() {
return version;
}
public void setSysVersion(String version) {
this.version = version;
}
public String getSysProduct() {
return product;
}
public void setSysProduct(String product) {
this.product = product;
}
public String getSysAction() {
return action;
}
public void setSysAction(String action) {
this.action = action;
}
public String getSysLocationProduct() {
return locationProduct;
}
public void setSysLocationProduct(String locationProduct) {
this.locationProduct = locationProduct;
}
public String getSysEndpointType() {
return endpointType;
}
public void setSysEndpointType(String endpointType) {
this.endpointType = endpointType;
}
public String getSysRegionId() {
return regionId;
}
public void setSysRegionId(String regionId) {
this.regionId = regionId;
}
public ProtocolType getSysProtocol() {
return protocol;
}
public void setSysProtocol(ProtocolType protocol) {
this.protocol = protocol;
}
public Integer getSysConnectTimeout() {
return connectTimeout;
}
public void setSysConnectTimeout(Integer connectTimeout) {
this.connectTimeout = connectTimeout;
}
public Integer getSysReadTimeout() {
return readTimeout;
}
public void setSysReadTimeout(Integer readTimeout) {
this.readTimeout = readTimeout;
}
public MethodType getSysMethod() {
return method;
}
public void setSysMethod(MethodType method) {
this.method = method;
}
public String getSysUriPattern() {
return uriPattern;
}
public void setSysUriPattern(String uriPattern) {
this.uriPattern = uriPattern;
}
public String getSysDomain() {
return domain;
}
public void setSysDomain(String domain) {
this.domain = domain;
}
public String getSysEncoding() {
return encoding;
}
public Map<String, String> getSysQueryParameters() {
return queryParameters;
}
public Map<String, String> getSysBodyParameters() {
return bodyParameters;
}
public Map<String, String> getSysHeadParameters() {
return headParameters;
}
public Map<String, String> getSysPathParameters() {
return pathParameters;
}
public RetryPolicy getSysRetryPolicy() {
return this.retryPolicy;
}
public void setSysRetryPolicy(RetryPolicy retryPolicy) {
this.retryPolicy = retryPolicy;
}
}