ApiResolver.php 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. <?php
  2. namespace AlibabaCloud\Client\Resolver;
  3. use ReflectionObject;
  4. use AlibabaCloud\Client\Request\Request;
  5. use AlibabaCloud\Client\Exception\ClientException;
  6. /**
  7. * Class ApiResolver
  8. *
  9. * @codeCoverageIgnore
  10. * @package AlibabaCloud\Client\Resolver
  11. */
  12. abstract class ApiResolver
  13. {
  14. /**
  15. * @param $name
  16. * @param $arguments
  17. *
  18. * @return mixed
  19. */
  20. public static function __callStatic($name, $arguments)
  21. {
  22. return (new static())->__call($name, $arguments);
  23. }
  24. /**
  25. * @param $api
  26. * @param $arguments
  27. *
  28. * @return mixed
  29. * @throws ClientException
  30. */
  31. public function __call($api, $arguments)
  32. {
  33. $product_name = $this->getProductName();
  34. $class = $this->getNamespace() . '\\' . \ucfirst($api);
  35. if (\class_exists($class)) {
  36. if (isset($arguments[0])) {
  37. return $this->warpEndpoint(new $class($arguments[0]));
  38. }
  39. return $this->warpEndpoint(new $class());
  40. }
  41. throw new ClientException(
  42. "{$product_name} contains no $api",
  43. 'SDK.ApiNotFound'
  44. );
  45. }
  46. /**
  47. * @param Request $request
  48. *
  49. * @return Request
  50. */
  51. public function warpEndpoint(Request $request)
  52. {
  53. $reflect = new ReflectionObject($request);
  54. $product_dir = dirname(dirname($reflect->getFileName()));
  55. $endpoints_json = "$product_dir/endpoints.json";
  56. if (file_exists($endpoints_json)) {
  57. $endpoints = json_decode(file_get_contents($endpoints_json), true);
  58. if (isset($endpoints['endpoint_map'])) {
  59. $request->endpointMap = $endpoints['endpoint_map'];
  60. }
  61. if (isset($endpoints['endpoint_regional'])) {
  62. $request->endpointRegional = $endpoints['endpoint_regional'];
  63. }
  64. }
  65. return $request;
  66. }
  67. /**
  68. * @return mixed
  69. * @throws ClientException
  70. */
  71. private function getProductName()
  72. {
  73. $array = \explode('\\', \get_class($this));
  74. if (isset($array[3])) {
  75. return str_replace('ApiResolver', '', $array[3]);
  76. }
  77. throw new ClientException(
  78. 'Service name not found.',
  79. 'SDK.ServiceNotFound'
  80. );
  81. }
  82. /**
  83. * @return string
  84. * @throws ClientException
  85. */
  86. private function getNamespace()
  87. {
  88. $array = \explode('\\', \get_class($this));
  89. if (!isset($array[3])) {
  90. throw new ClientException(
  91. 'Get namespace error.',
  92. 'SDK.ParseError'
  93. );
  94. }
  95. unset($array[3]);
  96. return \implode('\\', $array);
  97. }
  98. }