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.

DefaultAcsClient.php 4.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  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. class DefaultAcsClient implements IAcsClient
  21. {
  22. public $iClientProfile;
  23. public $__urlTestFlag__;
  24. public function __construct($iClientProfile)
  25. {
  26. $this->iClientProfile = $iClientProfile;
  27. $this->__urlTestFlag__ = false;
  28. }
  29. public function getAcsResponse($request, $iSigner = null, $credential = null, $autoRetry = true, $maxRetryNumber = 3)
  30. {
  31. $httpResponse = $this->doActionImpl($request, $iSigner, $credential, $autoRetry, $maxRetryNumber);
  32. $respObject = $this->parseAcsResponse($httpResponse->getBody(), $request->getAcceptFormat());
  33. if (false == $httpResponse->isSuccess()) {
  34. $this->buildApiException($respObject, $httpResponse->getStatus());
  35. }
  36. return $respObject;
  37. }
  38. private function doActionImpl($request, $iSigner = null, $credential = null, $autoRetry = true, $maxRetryNumber = 3)
  39. {
  40. if (null == $this->iClientProfile && (null == $iSigner || null == $credential
  41. || null == $request->getRegionId() || null == $request->getAcceptFormat())) {
  42. throw new ClientException("No active profile found.", "SDK.InvalidProfile");
  43. }
  44. if (null == $iSigner) {
  45. $iSigner = $this->iClientProfile->getSigner();
  46. }
  47. if (null == $credential) {
  48. $credential = $this->iClientProfile->getCredential();
  49. }
  50. $request = $this->prepareRequest($request);
  51. $domain = EndpointProvider::findProductDomain($request->getRegionId(), $request->getProduct());
  52. if (null == $domain) {
  53. throw new ClientException("Can not find endpoint to access.", "SDK.InvalidRegionId");
  54. }
  55. $requestUrl = $request->composeUrl($iSigner, $credential, $domain);
  56. if ($this->__urlTestFlag__) {
  57. throw new ClientException($requestUrl, "URLTestFlagIsSet");
  58. }
  59. if (count($request->getDomainParameter())>0) {
  60. $httpResponse = HttpHelper::curl($requestUrl, $request->getMethod(), $request->getDomainParameter(), $request->getHeaders());
  61. } else {
  62. $httpResponse = HttpHelper::curl($requestUrl, $request->getMethod(), $request->getContent(), $request->getHeaders());
  63. }
  64. $retryTimes = 1;
  65. while (500 <= $httpResponse->getStatus() && $autoRetry && $retryTimes < $maxRetryNumber) {
  66. $requestUrl = $request->composeUrl($iSigner, $credential, $domain);
  67. if (count($request->getDomainParameter())>0) {
  68. $httpResponse = HttpHelper::curl($requestUrl, $request->getDomainParameter(), $request->getHeaders());
  69. } else {
  70. $httpResponse = HttpHelper::curl($requestUrl, $request->getMethod(), $request->getContent(), $request->getHeaders());
  71. }
  72. $retryTimes ++;
  73. }
  74. return $httpResponse;
  75. }
  76. public function doAction($request, $iSigner = null, $credential = null, $autoRetry = true, $maxRetryNumber = 3)
  77. {
  78. trigger_error("doAction() is deprecated. Please use getAcsResponse() instead.", E_USER_NOTICE);
  79. return $this->doActionImpl($request, $iSigner, $credential, $autoRetry, $maxRetryNumber);
  80. }
  81. private function prepareRequest($request)
  82. {
  83. if (null == $request->getRegionId()) {
  84. $request->setRegionId($this->iClientProfile->getRegionId());
  85. }
  86. if (null == $request->getAcceptFormat()) {
  87. $request->setAcceptFormat($this->iClientProfile->getFormat());
  88. }
  89. if (null == $request->getMethod()) {
  90. $request->setMethod("GET");
  91. }
  92. return $request;
  93. }
  94. private function buildApiException($respObject, $httpStatus)
  95. {
  96. throw new ServerException($respObject->Message, $respObject->Code, $httpStatus, $respObject->RequestId);
  97. }
  98. private function parseAcsResponse($body, $format)
  99. {
  100. if ("JSON" == $format) {
  101. $respObject = json_decode($body);
  102. } elseif ("XML" == $format) {
  103. $respObject = @simplexml_load_string($body);
  104. } elseif ("RAW" == $format) {
  105. $respObject = $body;
  106. }
  107. return $respObject;
  108. }
  109. }