| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491 | <?php/* * Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * *     http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied.  See the License for the * specific language governing permissions and limitations * under the License. */namespace TencentCloud\Common;use \ReflectionClass;use TencentCloud\Common\Http\HttpConnection;use TencentCloud\Common\Profile\ClientProfile;use TencentCloud\Common\Profile\HttpProfile;use TencentCloud\Common\Exception\TencentCloudSDKException;/** * 抽象api类,禁止client引用 * @package TencentCloud\Common */abstract class AbstractClient{    /**     * @var string SDK版本     */    public static $SDK_VERSION = "SDK_PHP_3.0.754";    /**     * @var integer http响应码200     */    public static $HTTP_RSP_OK = 200;    private $PHP_VERSION_MINIMUM = "5.6.0";    /**     * @var Credential 认证类实例,保存认证相关字段     */    private $credential;    /**     * @var ClientProfile 会话配置信息类     */    private $profile;    /**     * @var string 产品地域     */    private $region;    /**     * @var string 请求路径     */    private $path;    /**     * @var string sdk版本号     */    private $sdkVersion;    /**     * @var string api版本号     */    private $apiVersion;    /**     * @var HttpConnection     */    private $httpConn;    /**     * 基础client类     * @param string $endpoint Deprecated, we use service+rootdomain instead     * @param string $version api版本     * @param Credential $credential 认证信息实例     * @param string $region 产品地域     * @param ClientProfile $profile     */    function __construct($endpoint, $version, $credential, $region, $profile=null)    {        $this->path = "/";        $this->credential = $credential;        $this->region = $region;        if ($profile) {            $this->profile = $profile;        } else {            $this->profile = new ClientProfile();        }        $this->getRefreshedEndpoint();        $this->sdkVersion = AbstractClient::$SDK_VERSION;        $this->apiVersion = $version;        if (version_compare(phpversion(), $this->PHP_VERSION_MINIMUM, '<') && $profile->getCheckPHPVersion()) {            throw new TencentCloudSDKException("ClientError", "PHP version must >= ".$this->PHP_VERSION_MINIMUM.", your current is ".phpversion());        }        $this->httpConn = $this->createConnect();    }    /**     * 设置产品地域     * @param string $region 地域     */    public function setRegion($region)    {        $this->region = $region;    }    /**     * 获取产品地域     * @return string     */    public function getRegion()    {        return $this->region;    }    /**     * 设置认证信息实例     * @param Credential $credential 认证信息实例     */    public function setCredential($credential)    {        $this->credential = $credential;    }    /**     * 返回认证信息实例     * @return Credential     */    public function getCredential()    {        return $this->credential;    }    /**     * 设置配置实例     * @param ClientProfile $profile 配置实例     */    public function setClientProfile($profile)    {        $this->profile = $profile;    }    /**     * 返回配置实例     * @return ClientProfile     */    public function getClientProfile()    {        return $this->profile;    }    /**     * @param string $action  方法名     * @param array $request  参数列表     * @return mixed     * @throws TencentCloudSDKException     */    public function __call($action, $request)    {        return $this->doRequestWithOptions($action, $request[0], array());    }    /**     * @param string $action  方法名     * @param array  $headers  自定义headers     * @param string $body     content     * @return mixed     * @throws TencentCloudSDKException     */    public function call_octet_stream($action, $headers, $body) {        try {            $responseData = null;            $options = array(                "IsOctetStream" => true,            );            switch ($this->profile->getSignMethod()) {                case ClientProfile::$SIGN_TC3_SHA256:                    $responseData = $this->doRequestWithTC3($action, Null, $options, $headers, $body);                    break;                default:                    throw new TencentCloudSDKException("ClientError", "Invalid sign method");                    break;            }            if ($responseData->getStatusCode() !== AbstractClient::$HTTP_RSP_OK) {                throw new TencentCloudSDKException($responseData->getReasonPhrase(), $responseData->getBody());            }            $tmpResp = json_decode($responseData->getBody(), true)["Response"];            if (array_key_exists("Error", $tmpResp)) {                throw new TencentCloudSDKException($tmpResp["Error"]["Code"], $tmpResp["Error"]["Message"], $tmpResp["RequestId"]);            }            return $this->returnResponse($action, $tmpResp);        } catch (\Exception $e) {            if (!($e instanceof TencentCloudSDKException)) {                throw new TencentCloudSDKException("", $e->getMessage());            } else {                throw $e;            }        }    }    protected function doRequestWithOptions($action, $request, $options)    {        try {            $responseData = null;            $serializeRequest = $request->serialize();            $method = $this->getPrivateMethod($request, "arrayMerge");            $serializeRequest = $method->invoke($request, $serializeRequest);            switch ($this->profile->getSignMethod()) {                case ClientProfile::$SIGN_HMAC_SHA1:                case ClientProfile::$SIGN_HMAC_SHA256:                    $responseData = $this->doRequest($action, $serializeRequest);                    break;                case ClientProfile::$SIGN_TC3_SHA256:                    $responseData = $this->doRequestWithTC3($action, $request, $options, array(), "");                    break;                default:                    throw new TencentCloudSDKException("ClientError", "Invalid sign method");                    break;            }            if ($responseData->getStatusCode() !== AbstractClient::$HTTP_RSP_OK) {                throw new TencentCloudSDKException($responseData->getReasonPhrase(), $responseData->getBody());            }            $tmpResp = json_decode($responseData->getBody(), true)["Response"];            if (array_key_exists("Error", $tmpResp)) {                throw new TencentCloudSDKException($tmpResp["Error"]["Code"], $tmpResp["Error"]["Message"], $tmpResp["RequestId"]);            }            return $this->returnResponse($action, $tmpResp);        } catch (\Exception $e) {            if (!($e instanceof TencentCloudSDKException)) {                throw new TencentCloudSDKException("", $e->getMessage());            } else {                throw $e;            }        }    }    private function doRequest($action, $request)    {        switch ($this->profile->getHttpProfile()->getReqMethod()) {            case HttpProfile::$REQ_GET:                return $this->getRequest($action, $request);                break;            case HttpProfile::$REQ_POST:                return $this->postRequest($action, $request);                break;            default:                throw new TencentCloudSDKException("", "Method only support (GET, POST)");                break;        }    }    private function doRequestWithTC3($action, $request, $options, $headers, $payload)    {        $endpoint = $this->getRefreshedEndpoint();        $headers["Host"] = $endpoint;        $headers["X-TC-Action"] = ucfirst($action);        $headers["X-TC-RequestClient"] = $this->sdkVersion;        $headers["X-TC-Timestamp"] = time();        $headers["X-TC-Version"] = $this->apiVersion;        if ($this->region) {            $headers["X-TC-Region"] = $this->region;        }        if ($this->credential->getToken()) {            $headers["X-TC-Token"] = $this->credential->getToken();        }        $language = $this->profile->getLanguage();        if ($language) {            $headers["X-TC-Language"] = $language;        }        $canonicalUri = $this->path;        $reqmethod = $this->profile->getHttpProfile()->getReqMethod();        if (HttpProfile::$REQ_GET == $reqmethod) {            $headers["Content-Type"] = "application/x-www-form-urlencoded";            $rs = $request->serialize();            $am = $this->getPrivateMethod($request, "arrayMerge");            $rsam = $am->invoke($request, $rs);            $canonicalQueryString = http_build_query($rsam);            $payload = "";        }        if (HttpProfile::$REQ_POST == $reqmethod)  {             if (isset($options["IsMultipart"]) && $options["IsMultipart"] === true) {                 $boundary = uniqid();                 $headers["Content-Type"] = "multipart/form-data; boundary=" . $boundary;                 $canonicalQueryString = "";                 $payload = $this->getMultipartPayload($request, $boundary, $options);             } else if (isset($options["IsOctetStream"]) && $options["IsOctetStream"] === true) {                 $headers["Content-Type"] = "application/octet-stream";                 $canonicalQueryString = "";             } else {                 $headers["Content-Type"] = "application/json";                 $canonicalQueryString = "";                 $payload = $request->toJsonString();             }        }        if ($this->profile->getUnsignedPayload() == true) {            $headers["X-TC-Content-SHA256"] = "UNSIGNED-PAYLOAD";            $payloadHash = hash("SHA256", "UNSIGNED-PAYLOAD");        } else {            $payloadHash = hash("SHA256", $payload);        }        $canonicalHeaders = "content-type:".$headers["Content-Type"]."\n".                            "host:".$headers["Host"]."\n";        $signedHeaders = "content-type;host";        $canonicalRequest = $reqmethod."\n".                            $canonicalUri."\n".                            $canonicalQueryString."\n".                            $canonicalHeaders."\n".                            $signedHeaders."\n".                            $payloadHash;        $algo = "TC3-HMAC-SHA256";        // date_default_timezone_set('UTC');        // $date = date("Y-m-d", $headers["X-TC-Timestamp"]);        $date = gmdate("Y-m-d", $headers["X-TC-Timestamp"]);        $service = explode(".", $endpoint)[0];        $credentialScope = $date."/".$service."/tc3_request";        $hashedCanonicalRequest = hash("SHA256", $canonicalRequest);        $str2sign = $algo."\n".                    $headers["X-TC-Timestamp"]."\n".                    $credentialScope."\n".                    $hashedCanonicalRequest;        $skey = $this->credential->getSecretKey();        $signature = Sign::signTC3($skey, $date, $service, $str2sign);        $sid = $this->credential->getSecretId();        $auth = $algo.                " Credential=".$sid."/".$credentialScope.                ", SignedHeaders=content-type;host, Signature=".$signature;        $headers["Authorization"] = $auth;        if (HttpProfile::$REQ_GET == $reqmethod) {            $connect = $this->getConnect();            return $connect->getRequest($this->path, $canonicalQueryString, $headers);        } else {            $connect = $this->getConnect();            return $connect->postRequestRaw($this->path, $headers, $payload);        }    }    private function getMultipartPayload($request, $boundary, $options)    {        $body = "";        $params = $request->serialize();        foreach ($params as $key => $value) {            $body .= "--".$boundary."\r\n";            $body .= "Content-Disposition: form-data; name=\"".$key;            if (in_array($key, $options["BinaryParams"])) {                $body .= "\"; filename=\"".$key;            }            $body .= "\"\r\n";            if (is_array($value)) {                $value = json_encode($value);                $body .= "Content-Type: application/json\r\n";            }            $body .= "\r\n".$value."\r\n";        }        if ($body != "") {            $body .= "--".$boundary."--\r\n";        }        return $body;    }    /**     * @throws TencentCloudSDKException     */    private function getRequest($action, $request)    {        $query = $this->formatRequestData($action, $request, httpProfile::$REQ_GET);        $connect = $this->getConnect();        return $connect->getRequest($this->path, $query, []);    }    /**     * @throws TencentCloudSDKException     */    private function postRequest($action, $request)    {        $body = $this->formatRequestData($action, $request, httpProfile::$REQ_POST);        $connect = $this->getConnect();        return $connect->postRequest($this->path, [], $body);    }    /**     * @throws TencentCloudSDKException     */    private function formatRequestData($action, $request, $reqMethod)    {        $param = $request;        $param["Action"] = ucfirst($action);        $param["RequestClient"] = $this->sdkVersion;        $param["Nonce"] = rand();        $param["Timestamp"] = time();        $param["Version"] = $this->apiVersion;        if ($this->credential->getSecretId()) {            $param["SecretId"] = $this->credential->getSecretId();        }        if ($this->region) {            $param["Region"] = $this->region;        }        if ($this->credential->getToken()) {            $param["Token"] = $this->credential->getToken();        }        if ($this->profile->getSignMethod()) {            $param["SignatureMethod"] = $this->profile->getSignMethod();        }        $language = $this->profile->getLanguage();        if ($language) {            $param["Language"] = $language;        }        $signStr = $this->formatSignString($this->getRefreshedEndpoint(), $this->path, $param, $reqMethod);        $param["Signature"] = Sign::sign($this->credential->getSecretKey(), $signStr, $this->profile->getSignMethod());        return $param;    }    private function createConnect()    {        $prot = $this->profile->getHttpProfile()->getProtocol();        return new HttpConnection($prot.$this->getRefreshedEndpoint(), $this->profile);    }    private function getConnect() {        $keepAlive = $this->profile->getHttpProfile()->getKeepAlive();        if (true === $keepAlive) {            return $this->httpConn;        } else {            return $this->createConnect();        }    }    private function formatSignString($host, $uri, $param, $requestMethod)    {        $tmpParam = [];        ksort($param);        foreach ($param as $key => $value) {            array_push($tmpParam, $key . "=" . $value);        }        $strParam = join ("&", $tmpParam);        $signStr = strtoupper($requestMethod) . $host . $uri ."?".$strParam;        return $signStr;    }    private function getPrivateMethod($obj, $methodName) {        $objReflectClass = new ReflectionClass(get_class($obj));        $method = $objReflectClass->getMethod($methodName);        $method->setAccessible(true);        return $method;    }    /**     * User might call httpProfile.SetEndpoint after client is initialized,     * so everytime we get the enpoint we need to check it.     * Or we must find a way to disable such usage.     */    private function getRefreshedEndpoint() {        $this->endpoint = $this->profile->getHttpProfile()->getEndpoint();        if ($this->endpoint === null) {            $this->endpoint = $this->service.".".$this->profile->getHttpProfile()->getRootDomain();        }        return $this->endpoint;    }}
 |