RoaAcsRequest.cs 4.7 KB

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