RoaAcsRequest.php 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  1. <?php
  2. /*
  3. * Licensed to the Apache Software Foundation (ASF) under one
  4. * or more contributor license agreements. See the NOTICE file
  5. * distributed with this work for additional information
  6. * regarding copyright ownership. The ASF licenses this file
  7. * to you under the Apache License, Version 2.0 (the
  8. * "License"); you may not use this file except in compliance
  9. * with the License. You may obtain a copy of the License at
  10. *
  11. * http://www.apache.org/licenses/LICENSE-2.0
  12. *
  13. * Unless required by applicable law or agreed to in writing,
  14. * software distributed under the License is distributed on an
  15. * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  16. * KIND, either express or implied. See the License for the
  17. * specific language governing permissions and limitations
  18. * under the License.
  19. */
  20. abstract class RoaAcsRequest extends AcsRequest
  21. {
  22. protected $uriPattern;
  23. private $pathParameters = array();
  24. private $domainParameters = array();
  25. private $dateTimeFormat ="D, d M Y H:i:s \G\M\T";
  26. private static $headerSeparator = "\n";
  27. private static $querySeprator = "&";
  28. function __construct($product, $version, $actionName, $locationServiceCode = null, $locationEndpointType = "openAPI")
  29. {
  30. parent::__construct($product, $version, $actionName, $locationServiceCode, $locationEndpointType);
  31. $this->setVersion($version);
  32. $this->initialize();
  33. }
  34. private function initialize()
  35. {
  36. $this->setMethod("RAW");
  37. }
  38. public function composeUrl($iSigner, $credential, $domain)
  39. {
  40. $this->prepareHeader($iSigner);
  41. $signString = $this->getMethod().self::$headerSeparator;
  42. if (isset($this->headers["Accept"])) {
  43. $signString = $signString.$this->headers["Accept"];
  44. }
  45. $signString = $signString.self::$headerSeparator;
  46. if (isset($this->headers["Content-MD5"])) {
  47. $signString = $signString.$this->headers["Content-MD5"];
  48. }
  49. $signString = $signString.self::$headerSeparator;
  50. if (isset($this->headers["Content-Type"])) {
  51. $signString = $signString.$this->headers["Content-Type"];
  52. }
  53. $signString = $signString.self::$headerSeparator;
  54. if (isset($this->headers["Date"])) {
  55. $signString = $signString.$this->headers["Date"];
  56. }
  57. $signString = $signString.self::$headerSeparator;
  58. $uri = $this->replaceOccupiedParameters();
  59. $signString = $signString.$this->buildCanonicalHeaders();
  60. $queryString = $this->buildQueryString($uri);
  61. $signString .= $queryString;
  62. $this->headers["Authorization"] = "acs ".$credential->getAccessKeyId().":"
  63. .$iSigner->signString($signString, $credential->getAccessSecret());
  64. $requestUrl = $this->getProtocol()."://".$domain.$queryString;
  65. return $requestUrl;
  66. }
  67. private function prepareHeader($iSigner)
  68. {
  69. $this->headers["Date"] = gmdate($this->dateTimeFormat);
  70. if (null == $this->acceptFormat) {
  71. $this->acceptFormat = "RAW";
  72. }
  73. $this->headers["Accept"] = $this->formatToAccept($this->getAcceptFormat());
  74. $this->headers["x-acs-signature-method"] = $iSigner->getSignatureMethod();
  75. $this->headers["x-acs-signature-version"] = $iSigner->getSignatureVersion();
  76. $this->headers["x-acs-region-id"] = $this->regionId;
  77. $content = $this->getDomainParameter();
  78. if ($content != null) {
  79. $this->headers["Content-MD5"] = base64_encode(md5(json_encode($content), true));
  80. }
  81. $this->headers["Content-Type"] = "application/octet-stream;charset=utf-8";
  82. }
  83. private function replaceOccupiedParameters()
  84. {
  85. $result = $this->uriPattern;
  86. foreach ($this->pathParameters as $pathParameterKey => $apiParameterValue) {
  87. $target = "[".$pathParameterKey."]";
  88. $result = str_replace($target, $apiParameterValue, $result);
  89. }
  90. return $result;
  91. }
  92. private function buildCanonicalHeaders()
  93. {
  94. $sortMap = array();
  95. foreach ($this->headers as $headerKey => $headerValue) {
  96. $key = strtolower($headerKey);
  97. if (strpos($key, "x-acs-") === 0) {
  98. $sortMap[$key] = $headerValue;
  99. }
  100. }
  101. ksort($sortMap);
  102. $headerString = "";
  103. foreach ($sortMap as $sortMapKey => $sortMapValue) {
  104. $headerString = $headerString.$sortMapKey.":".$sortMapValue.self::$headerSeparator;
  105. }
  106. return $headerString;
  107. }
  108. private function splitSubResource($uri)
  109. {
  110. $queIndex = strpos($uri, "?");
  111. $uriParts = array();
  112. if (null != $queIndex) {
  113. array_push($uriParts, substr($uri, 0, $queIndex));
  114. array_push($uriParts, substr($uri, $queIndex+1));
  115. } else {
  116. array_push($uriParts, $uri);
  117. }
  118. return $uriParts;
  119. }
  120. private function buildQueryString($uri)
  121. {
  122. $uriParts = $this->splitSubResource($uri);
  123. $sortMap = $this->queryParameters;
  124. if (isset($uriParts[1])) {
  125. $sortMap[$uriParts[1]] = null;
  126. }
  127. $queryString = $uriParts[0];
  128. if (count($uriParts)) {
  129. $queryString = $queryString."?";
  130. }
  131. ksort($sortMap);
  132. foreach ($sortMap as $sortMapKey => $sortMapValue) {
  133. $queryString = $queryString.$sortMapKey;
  134. if (isset($sortMapValue)) {
  135. $queryString = $queryString."=".$sortMapValue;
  136. }
  137. $queryString = $queryString.$querySeprator;
  138. }
  139. if (null==count($sortMap)) {
  140. $queryString = substr($queryString, 0, strlen($queryString)-1);
  141. }
  142. return $queryString;
  143. }
  144. private function formatToAccept($acceptFormat)
  145. {
  146. if ($acceptFormat == "JSON") {
  147. return "application/json";
  148. } elseif ($acceptFormat == "XML") {
  149. return "application/xml";
  150. }
  151. return "application/octet-stream";
  152. }
  153. public function getPathParameters()
  154. {
  155. return $this->pathParameters;
  156. }
  157. public function putPathParameter($name, $value)
  158. {
  159. $this->pathParameters[$name] = $value;
  160. }
  161. public function getDomainParameter()
  162. {
  163. return $this->domainParameters;
  164. }
  165. public function putDomainParameters($name, $value)
  166. {
  167. $this->domainParameters[$name] = $value;
  168. }
  169. public function getUriPattern()
  170. {
  171. return $this->uriPattern;
  172. }
  173. public function setUriPattern($uriPattern)
  174. {
  175. return $this->uriPattern = $uriPattern;
  176. }
  177. public function setVersion($version)
  178. {
  179. $this->version = $version;
  180. $this->headers["x-acs-version"] = $version;
  181. }
  182. }