AcsRequest.cs 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. /*
  2. * Licensed to the Apache Software Foundation (ASF) under one
  3. * or more contributor license agreements. See the NOTICE file
  4. * distributed with this work for additional information
  5. * regarding copyright ownership. The ASF licenses this file
  6. * to you under the Apache License, Version 2.0 (the
  7. * "License"); you may not use this file except in compliance
  8. * with the License. You may obtain a copy of the License at
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing,
  13. * software distributed under the License is distributed on an
  14. * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  15. * KIND, either express or implied. See the License for the
  16. * specific language governing permissions and limitations
  17. * under the License.
  18. */
  19. using Aliyun.Acs.Core.Auth;
  20. using Aliyun.Acs.Core.Http;
  21. using Aliyun.Acs.Core.Regions;
  22. using Aliyun.Acs.Core.Transform;
  23. using Aliyun.Acs.Core.Utils;
  24. using System;
  25. using System.Collections.Generic;
  26. using System.Text;
  27. namespace Aliyun.Acs.Core
  28. {
  29. public abstract class AcsRequest<T> : HttpRequest
  30. {
  31. private ProtocolType protocol = ProtocolType.HTTP;
  32. private FormatType acceptFormat;
  33. private Dictionary<String, String> queryParameters = new Dictionary<String, String>();
  34. public virtual String Product { get; set; }
  35. public virtual String Version { get; set; }
  36. public virtual String ActionName { get; set; }
  37. public virtual String RegionId { get; set; }
  38. public ISignatureComposer Composer { get; set; }
  39. public String LocationProduct { get; set; }
  40. public virtual FormatType AcceptFormat
  41. {
  42. get
  43. {
  44. return acceptFormat;
  45. }
  46. set
  47. {
  48. acceptFormat = value;
  49. DictionaryUtil.Add(Headers, "Accept", value.ToString());
  50. }
  51. }
  52. public ProtocolType Protocol
  53. {
  54. get
  55. {
  56. return protocol;
  57. }
  58. set
  59. {
  60. protocol = value;
  61. }
  62. }
  63. public Dictionary<String, String> QueryParameters
  64. {
  65. get
  66. {
  67. return queryParameters;
  68. }
  69. set
  70. {
  71. queryParameters = value;
  72. }
  73. }
  74. public AcsRequest(String product)
  75. : base(null)
  76. {
  77. DictionaryUtil.Add(Headers, "x-sdk-client", "Net/2.0.0");
  78. Product = product;
  79. }
  80. public AcsRequest(String product, String version)
  81. : base(null)
  82. {
  83. Product = product;
  84. Version = version;
  85. }
  86. public static String ConcatQueryString(Dictionary<String, String> parameters)
  87. {
  88. if (null == parameters)
  89. {
  90. return null;
  91. }
  92. StringBuilder sb = new StringBuilder();
  93. foreach (var entry in parameters)
  94. {
  95. String key = entry.Key;
  96. String val = entry.Value;
  97. sb.Append(AcsURLEncoder.Encode(key));
  98. if (val != null)
  99. {
  100. sb.Append("=").Append(AcsURLEncoder.Encode(val));
  101. }
  102. sb.Append("&");
  103. }
  104. int strIndex = sb.Length;
  105. if (parameters.Count > 0)
  106. sb.Remove(strIndex - 1, 1);
  107. return sb.ToString();
  108. }
  109. public abstract HttpRequest SignRequest(ISigner signer, Credential credential,
  110. FormatType? format, ProductDomain domain);
  111. public abstract String ComposeUrl(String endpoint, Dictionary<String, String> queries);
  112. public abstract T GetResponse(UnmarshallerContext unmarshallerContext);
  113. }
  114. }