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.

DefaultProfile.php 4.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  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 DefaultProfile implements IClientProfile
  21. {
  22. private static $profile;
  23. private static $endpoints;
  24. private static $credential;
  25. private static $regionId;
  26. private static $acceptFormat;
  27. private static $isigner;
  28. private static $iCredential;
  29. private function __construct($regionId, $credential)
  30. {
  31. self::$regionId = $regionId;
  32. self::$credential = $credential;
  33. }
  34. public static function getProfile($regionId, $accessKeyId, $accessSecret)
  35. {
  36. $credential =new Credential($accessKeyId, $accessSecret);
  37. self::$profile = new DefaultProfile($regionId, $credential);
  38. return self::$profile;
  39. }
  40. public function getSigner()
  41. {
  42. if (null == self::$isigner) {
  43. self::$isigner = new ShaHmac1Signer();
  44. }
  45. return self::$isigner;
  46. }
  47. public function getRegionId()
  48. {
  49. return self::$regionId;
  50. }
  51. public function getFormat()
  52. {
  53. return self::$acceptFormat;
  54. }
  55. public function getCredential()
  56. {
  57. if (null == self::$credential && null != self::$iCredential) {
  58. self::$credential = self::$iCredential;
  59. }
  60. return self::$credential;
  61. }
  62. public static function getEndpoints()
  63. {
  64. if (null == self::$endpoints) {
  65. self::$endpoints = EndpointProvider::getEndpoints();
  66. }
  67. return self::$endpoints;
  68. }
  69. public static function addEndpoint($endpointName, $regionId, $product, $domain)
  70. {
  71. if (null == self::$endpoints) {
  72. self::$endpoints = self::getEndpoints();
  73. }
  74. $endpoint = self::findEndpointByName($endpointName);
  75. if (null == $endpoint) {
  76. self::addEndpoint_($endpointName, $regionId, $product, $domain);
  77. } else {
  78. self::updateEndpoint($regionId, $product, $domain, $endpoint);
  79. }
  80. }
  81. public static function findEndpointByName($endpointName)
  82. {
  83. foreach (self::$endpoints as $key => $endpoint) {
  84. if ($endpoint->getName() == $endpointName) {
  85. return $endpoint;
  86. }
  87. }
  88. }
  89. private static function addEndpoint_($endpointName, $regionId, $product, $domain)
  90. {
  91. $regionIds = array($regionId);
  92. $productsDomains = array(new ProductDomain($product, $domain));
  93. $endpoint = new Endpoint($endpointName, $regionIds, $productDomains);
  94. array_push(self::$endpoints, $endpoint);
  95. }
  96. private static function updateEndpoint($regionId, $product, $domain, $endpoint)
  97. {
  98. $regionIds = $endpoint->getRegionIds();
  99. if (!in_array($regionId, $regionIds)) {
  100. array_push($regionIds, $regionId);
  101. $endpoint->setRegionIds($regionIds);
  102. }
  103. $productDomains = $endpoint->getProductDomains();
  104. if (null == self::findProductDomain($productDomains, $product, $domain)) {
  105. array_push($productDomains, new ProductDomain($product, $domain));
  106. }
  107. $endpoint->setProductDomains($productDomains);
  108. }
  109. private static function findProductDomain($productDomains, $product, $domain)
  110. {
  111. foreach ($productDomains as $key => $productDomain) {
  112. if ($productDomain->getProductName() == $product && $productDomain->getDomainName() == $domain) {
  113. return $productDomain;
  114. }
  115. }
  116. return null;
  117. }
  118. }