RpcAcsRequest.cs 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  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.Utils;
  23. using System;
  24. using System.Collections.Generic;
  25. using System.Text;
  26. namespace Aliyun.Acs.Core
  27. {
  28. public abstract class RpcAcsRequest<T> : AcsRequest<T>
  29. {
  30. private string actionName;
  31. private string version;
  32. private FormatType acceptFormat;
  33. public RpcAcsRequest(String product)
  34. : base(product)
  35. {
  36. Initialize();
  37. }
  38. public RpcAcsRequest(String product, String version)
  39. : base(product)
  40. {
  41. Version = version;
  42. Initialize();
  43. }
  44. public RpcAcsRequest(String product, String version, String action)
  45. : base(product)
  46. {
  47. Version = version;
  48. ActionName = action;
  49. Initialize();
  50. }
  51. public RpcAcsRequest(String product, String version, String action, String locationProduct)
  52. : base(product)
  53. {
  54. Version = version;
  55. ActionName = action;
  56. this.LocationProduct = locationProduct;
  57. Initialize();
  58. }
  59. private void Initialize()
  60. {
  61. Method = MethodType.GET;
  62. AcceptFormat = FormatType.XML;
  63. this.Composer = RpcSignatureComposer.GetComposer();
  64. }
  65. public override string ActionName
  66. {
  67. get
  68. {
  69. return actionName;
  70. }
  71. set
  72. {
  73. actionName = value;
  74. QueryParameters.Add("Action", value);
  75. }
  76. }
  77. public override string Version
  78. {
  79. get
  80. {
  81. return version;
  82. }
  83. set
  84. {
  85. version = value;
  86. QueryParameters.Add("Version", value);
  87. }
  88. }
  89. public override FormatType AcceptFormat
  90. {
  91. get
  92. {
  93. return acceptFormat;
  94. }
  95. set
  96. {
  97. acceptFormat = value;
  98. DictionaryUtil.Add(QueryParameters, "Format", value.ToString());
  99. }
  100. }
  101. public override HttpRequest SignRequest(ISigner signer, Credential credential, FormatType? format, ProductDomain domain)
  102. {
  103. Dictionary<String, String> imutableMap = new Dictionary<String, String>(QueryParameters);
  104. if (null != signer && null != credential)
  105. {
  106. String accessKeyId = credential.AccessKeyId;
  107. String accessSecret = credential.AccessSecret;
  108. imutableMap = this.Composer.RefreshSignParameters(QueryParameters, signer, accessKeyId, format);
  109. imutableMap.Add("RegionId", RegionId);
  110. String strToSign = this.Composer.ComposeStringToSign(Method, null, signer, imutableMap, null, null);
  111. String signature = signer.SignString(strToSign, accessSecret + "&");
  112. imutableMap.Add("Signature", signature);
  113. }
  114. String url = ComposeUrl(domain.DomianName, imutableMap);
  115. this.Url = url;
  116. return this;
  117. }
  118. public override String ComposeUrl(String endpoint, Dictionary<String, String> queries)
  119. {
  120. Dictionary<String, String> mapQueries = (queries == null) ? this.QueryParameters : queries;
  121. StringBuilder urlBuilder = new StringBuilder("");
  122. urlBuilder.Append(this.Protocol.ToString().ToLower());
  123. urlBuilder.Append("://").Append(endpoint);
  124. if (-1 == urlBuilder.ToString().IndexOf("?"))
  125. {
  126. urlBuilder.Append("/?");
  127. }
  128. String query = ConcatQueryString(mapQueries);
  129. return urlBuilder.Append(query).ToString();
  130. }
  131. }
  132. }