Blame view

vendor/alibabacloud/client/src/Resolver/VersionResolver.php 1.55 KB
0c34aba8   xu   更新阿里云短信接口
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<?php

namespace AlibabaCloud\Client\Resolver;

use AlibabaCloud\Client\Exception\ClientException;

/**
 * Class VersionResolver
 *
 * @codeCoverageIgnore
 * @package AlibabaCloud\Client\Resolver
 */
abstract class VersionResolver
{

    /**
     * @param string $name
     * @param array  $arguments
     *
     * @return mixed
     */
    public static function __callStatic($name, $arguments)
    {
        return (new static())->__call($name, $arguments);
    }

    /**
     * @param string $version
     * @param array  $arguments
     *
     * @return mixed
     * @throws ClientException
     */
    public function __call($version, $arguments)
    {
        $version = \ucfirst($version);
        $product = $this->getProductName();

        $position = strpos($product, 'Version');
        if ($position !== false && $position !== 0) {
            $product = \str_replace('Version', '', $product);
        }

        $class = "AlibabaCloud\\{$product}\\$version\\{$product}ApiResolver";

        if (\class_exists($class)) {
            return new $class();
        }

        throw new ClientException(
            "$product Versions contains no {$version}",
            'SDK.VersionNotFound'
        );
    }

    /**
     * @return mixed
     * @throws ClientException
     */
    private function getProductName()
    {
        $array = \explode('\\', \get_class($this));

        if (isset($array[1])) {
            return $array[1];
        }

        throw new ClientException(
            'Service name not found.',
            'SDK.ServiceNotFound'
        );
    }
}