No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

RoaAcsRequest.php 6.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  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. public function __construct($product, $version, $actionName)
  29. {
  30. parent::__construct($product, $version, $actionName);
  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. date_default_timezone_set("GMT");
  70. $this->headers["Date"] = date($this->dateTimeFormat);
  71. if (null == $this->acceptFormat) {
  72. $this->acceptFormat = "RAW";
  73. }
  74. $this->headers["Accept"] = $this->formatToAccept($this->getAcceptFormat());
  75. $this->headers["x-acs-signature-method"] = $iSigner->getSignatureMethod();
  76. $this->headers["x-acs-signature-version"] = $iSigner->getSignatureVersion();
  77. $this->headers["x-acs-region-id"] = $this->regionId;
  78. $content = $this->getDomainParameter();
  79. if ($content != null) {
  80. $this->headers["Content-MD5"] = base64_encode(md5(json_encode($content), true));
  81. }
  82. $this->headers["Content-Type"] = "application/octet-stream;charset=utf-8";
  83. }
  84. private function replaceOccupiedParameters()
  85. {
  86. $result = $this->uriPattern;
  87. foreach ($this->pathParameters as $pathParameterKey => $apiParameterValue) {
  88. $target = "[".$pathParameterKey."]";
  89. $result = str_replace($target, $apiParameterValue, $result);
  90. }
  91. return $result;
  92. }
  93. private function buildCanonicalHeaders()
  94. {
  95. $sortMap = array();
  96. foreach ($this->headers as $headerKey => $headerValue) {
  97. $key = strtolower($headerKey);
  98. if (strpos($key, "x-acs-") === 0) {
  99. $sortMap[$key] = $headerValue;
  100. }
  101. }
  102. ksort($sortMap);
  103. $headerString = "";
  104. foreach ($sortMap as $sortMapKey => $sortMapValue) {
  105. $headerString = $headerString.$sortMapKey.":".$sortMapValue.self::$headerSeparator;
  106. }
  107. return $headerString;
  108. }
  109. private function splitSubResource($uri)
  110. {
  111. $queIndex = strpos($uri, "?");
  112. $uriParts = array();
  113. if (null != $queIndex) {
  114. array_push($uriParts, substr($uri, 0, $queIndex));
  115. array_push($uriParts, substr($uri, $queIndex+1));
  116. } else {
  117. array_push($uriParts, $uri);
  118. }
  119. return $uriParts;
  120. }
  121. private function buildQueryString($uri)
  122. {
  123. $uriParts = $this->splitSubResource($uri);
  124. $sortMap = $this->queryParameters;
  125. if (isset($uriParts[1])) {
  126. $sortMap[$uriParts[1]] = null;
  127. }
  128. $queryString = $uriParts[0];
  129. if (count($uriParts)) {
  130. $queryString = $queryString."?";
  131. }
  132. ksort($sortMap);
  133. foreach ($sortMap as $sortMapKey => $sortMapValue) {
  134. $queryString = $queryString.$sortMapKey;
  135. if (isset($sortMapValue)) {
  136. $queryString = $queryString."=".$sortMapValue;
  137. }
  138. $queryString = $queryString.$querySeprator;
  139. }
  140. if (null==count($sortMap)) {
  141. $queryString = substr($queryString, 0, strlen($queryString)-1);
  142. }
  143. return $queryString;
  144. }
  145. private function formatToAccept($acceptFormat)
  146. {
  147. if ($acceptFormat == "JSON") {
  148. return "application/json";
  149. } elseif ($acceptFormat == "XML") {
  150. return "application/xml";
  151. }
  152. return "application/octet-stream";
  153. }
  154. public function getPathParameters()
  155. {
  156. return $this->pathParameters;
  157. }
  158. public function putPathParameter($name, $value)
  159. {
  160. $this->pathParameters[$name] = $value;
  161. }
  162. public function getDomainParameter()
  163. {
  164. return $this->domainParameters;
  165. }
  166. public function putDomainParameters($name, $value)
  167. {
  168. $this->domainParameters[$name] = $value;
  169. }
  170. public function getUriPattern()
  171. {
  172. return $this->uriPattern;
  173. }
  174. public function setUriPattern($uriPattern)
  175. {
  176. return $this->uriPattern = $uriPattern;
  177. }
  178. public function setVersion($version)
  179. {
  180. $this->version = $version;
  181. $this->headers["x-acs-version"] = $version;
  182. }
  183. }