123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407 |
- <?php
- require_once("conf.php");
- require_once("utils.php");
- require_once("digest.php");
- $CURL_TIMEOUT=30;
- // --------------------------------------------------------------------------------
- class HTTP_Request
- {
- public $URL;
- public $RawQuerys;
- public $Header;
- public $Body;
- public $UA;
- public $METHOD;
- public $Params; //map
- public $Bucket;
- public $Key;
- public $Timeout;
- public function __construct($method, $url, $body, $bucket, $key, $action_type = ActionType::NONE)
- {
- $this->URL = $url;
- if (isset($url["query"])) {
- $this->RawQuerys = $url["query"];
- }
- $this->Header = array();
- $this->Body = $body;
- $this->UA = UCloud_UserAgent();
- $this->METHOD = $method;
- $this->Bucket = $bucket;
- $this->Key = $key;
- global $CURL_TIMEOUT;
- global $UFILE_ACTION_TYPE;
- if ($CURL_TIMEOUT == null && $action_type !== ActionType::PUTFILE
- && $action_type !== ActionType::POSTFILE) {
- $CURL_TIMEOUT = 10;
- }
- $this->Timeout = $CURL_TIMEOUT;
- }
- public function EncodedQuery() {
- if ($this->RawQuerys != null) {
- $q = "";
- foreach ($this->RawQuerys as $k => $v) {
- $q = $q . "&" . rawurlencode($k) . "=" . rawurlencode($v);
- }
- return $q;
- }
- return "";
- }
- }
- class HTTP_Response
- {
- public $StatusCode;
- public $Header;
- public $ContentLength;
- public $Body;
- public $Timeout;
- public function __construct($code, $body)
- {
- $this->StatusCode = $code;
- $this->Header = array();
- $this->Body = $body;
- $this->ContentLength = strlen($body);
- global $CURL_TIMEOUT;
- if ($CURL_TIMEOUT == null) {
- $CURL_TIMEOUT = 10;
- }
- $this->Timeout = $CURL_TIMEOUT;
- }
- }
- //@results: $val
- function UCloud_Header_Get($header, $key)
- {
- $val = @$header[$key];
- if (isset($val)) {
- if (is_array($val)) {
- return $val[0];
- }
- return $val;
- } else {
- return '';
- }
- }
- //@results: $error
- function UCloud_ResponseError($resp)
- {
- $header = $resp->Header;
- $err = new UCloud_Error($resp->StatusCode, null);
- if ($err->Code > 299) {
- if ($resp->ContentLength !== 0) {
- if (UCloud_Header_Get($header, 'Content-Type') === 'application/json') {
- $ret = json_decode($resp->Body, true);
- $err->ErrRet = $ret['ErrRet'];
- $err->ErrMsg = $ret['ErrMsg'];
- }
- }
- }
- $err->Reqid = UCloud_Header_Get($header, 'X-SessionId');
- return $err;
- }
- // --------------------------------------------------------------------------------
- //@results: ($resp, $error)
- function UCloud_Client_Do($req)
- {
- $ch = curl_init();
- $url = $req->URL;
- $options = array(
- CURLOPT_USERAGENT => $req->UA,
- CURLOPT_RETURNTRANSFER => true,
- CURLOPT_SSL_VERIFYPEER => false,
- CURLOPT_SSL_VERIFYHOST => false,
- CURLOPT_HEADER => true,
- CURLOPT_NOBODY => false,
- CURLOPT_CUSTOMREQUEST => $req->METHOD,
- //CURLOPT_URL => $url['host'] . "/" . rawurlencode($url['path']) . "?" . $req->EncodedQuery(),
- CURLOPT_TIMEOUT => $req->Timeout,
- CURLOPT_CONNECTTIMEOUT => $req->Timeout
- );
- if($req->METHOD =="HEAD"){
- $options[CURLOPT_NOBODY]=true;
- }
- if($req->EncodedQuery() !== ""){
- $options[CURLOPT_URL] = $url['host'] . "/" . $url['path'] . "?" . $req->EncodedQuery();
- }else{
- $options[CURLOPT_URL] = $url['host'] . "/" . $url['path'];
- }
- $httpHeader = $req->Header;
- if (!empty($httpHeader))
- {
- $header = array();
- foreach($httpHeader as $key => $parsedUrlValue) {
- $header[] = "$key: $parsedUrlValue";
- }
- $options[CURLOPT_HTTPHEADER] = $header;
- }
- $body = $req->Body;
- if (!empty($body)) {
- $options[CURLOPT_POSTFIELDS] = $body;
- } else {
- $options[CURLOPT_POSTFIELDS] = "";
- }
- curl_setopt_array($ch, $options);
- $result = curl_exec($ch);
- $ret = curl_errno($ch);
- if ($ret !== 0) {
- $err = new UCloud_Error(0, $ret, curl_error($ch));
- curl_close($ch);
- return array(null, $err);
- }
- $code = curl_getinfo($ch, CURLINFO_HTTP_CODE);
- $contentType = curl_getinfo($ch, CURLINFO_CONTENT_TYPE);
- curl_close($ch);
- $responseArray = explode("\r\n\r\n", $result);
- $responseArraySize = sizeof($responseArray);
- $headerString = $responseArray[$responseArraySize-2];
- $respBody = $responseArray[$responseArraySize-1];
- $headers = parseHeaders($headerString);
- $resp = new HTTP_Response($code, $respBody);
- $resp->Header = $headers;
- $err = null;
- if (floor($resp->StatusCode/100) != 2) {
- list($r, $m) = parseError($respBody);
- $err = new UCloud_Error($resp->StatusCode, $r, $m);
- }
- return array($resp, $err);
- }
- function parseError($bodyString) {
- $r = 0;
- $m = '';
- $mp = json_decode($bodyString);
- if (isset($mp->{'ErrRet'})) $r = $mp->{'ErrRet'};
- if (isset($mp->{'ErrMsg'})) $m = $mp->{'ErrMsg'};
- return array($r, $m);
- }
- function parseHeaders($headerString) {
- $headers = explode("\r\n", $headerString);
- foreach($headers as $header) {
- if (strstr($header, ":")) {
- $header = trim($header);
- list($k, $v) = explode(":", $header);
- $headers[$k] = trim($v);
- }
- }
- return $headers;
- }
- class UCloud_HttpClient
- {
- //@results: ($resp, $error)
- public function RoundTrip($req)
- {
- return UCloud_Client_Do($req);
- }
- }
- class UCloud_AuthHttpClient
- {
- public $Auth;
- public $Type;
- public $MimeType;
- public function __construct($auth, $mimetype = null, $type = HEAD_FIELD_CHECK)
- {
- $this->Type = $type;
- $this->MimeType = $mimetype;
- $this->Auth = UCloud_MakeAuth($auth, $type);
- }
- //@results: ($resp, $error)
- public function RoundTrip($req)
- {
- if ($this->Type === HEAD_FIELD_CHECK) {
- $token = $this->Auth->SignRequest($req, $this->MimeType, $this->Type);
- $req->Header['Authorization'] = $token;
- }
- return UCloud_Client_Do($req);
- }
- }
- // --------------------------------------------------------------------------------
- //@results: ($data, $error)
- function UCloud_Client_Ret($resp)
- {
- $code = $resp->StatusCode;
- $data = null;
- if ($code >= 200 && $code <= 299) {
- if ($resp->ContentLength !== 0 && UCloud_Header_Get($resp->Header, 'Content-Type') == 'application/json') {
- $data = json_decode($resp->Body, true);
- if ($data === null) {
- $err = new UCloud_Error($code, 0, "");
- return array(null, $err);
- }
- }
- }
- $etag = UCloud_Header_Get($resp->Header, 'ETag');
- if ($etag != ''){
- $data['ETag'] = $etag;
- }else{
- $data['ETag'] = UCloud_Header_Get($resp->Header, 'Etag');
- }
- if (floor($code/100) == 2) {
- return array($data, null);
- }
- return array($data, UCloud_ResponseError($resp));
- }
- //@results: ($data, $error)
- function UCloud_Client_Call($self, $req, $type = HEAD_FIELD_CHECK)
- {
- list($resp, $err) = $self->RoundTrip($req, $type);
- if ($err !== null) {
- return array(null, $err);
- }
- return UCloud_Client_Ret($resp);
- }
- //@results: ($header,$data, $error)
- function UCloud_Client_Call_ReHeader($self, $req, $type = HEAD_FIELD_CHECK)
- {
- list($resp, $err) = $self->RoundTrip($req, $type);
- if ($err !== null) {
- return array(null, null, $err);
- }
- $code = $resp->StatusCode;
- $data = null;
- if ($code >= 200 && $code <= 299) {
- if ($resp->ContentLength !== 0 && UCloud_Header_Get($resp->Header, 'Content-Type') == 'application/json') {
- $data = json_decode($resp->Body, true);
- if ($data === null) {
- $err = new UCloud_Error($code, 0, "");
- return array($resp->Header, null, $err);
- }
- }
- }
- if (floor($code/100) == 2) {
- return array($resp->Header, $data, null);
- }
- return array($resp->Header, $data, UCloud_ResponseError($resp));
- }
- //@results: $error
- function UCloud_Client_CallNoRet($self, $req, $type = HEAD_FIELD_CHECK)
- {
- list($resp, $err) = $self->RoundTrip($req, $type);
- if ($err !== null) {
- return array(null, $err);
- }
- if (floor($resp->StatusCode/100) == 2) {
- return null;
- }
- return UCloud_ResponseError($resp);
- }
- //@results: ($data, $error)
- function UCloud_Client_CallWithForm(
- $self, $req, $body, $contentType = 'application/x-www-form-urlencoded')
- {
- if ($contentType === 'application/x-www-form-urlencoded') {
- if (is_array($req->Params)) {
- $body = http_build_query($req->Params);
- }
- }
- if ($contentType !== 'multipart/form-data') {
- $req->Header['Content-Type'] = $contentType;
- }
- $req->Body = $body;
- list($resp, $err) = $self->RoundTrip($req, HEAD_FIELD_CHECK);
- if ($err !== null) {
- return array(null, $err);
- }
- return UCloud_Client_Ret($resp);
- }
- // --------------------------------------------------------------------------------
- function UCloud_Client_CallWithMultipartForm($self, $req, $fields, $files)
- {
- list($contentType, $body) = UCloud_Build_MultipartForm($fields, $files);
- return UCloud_Client_CallWithForm($self, $req, $body, $contentType);
- }
- //@results: ($contentType, $body)
- function UCloud_Build_MultipartForm($fields, $files)
- {
- $data = array();
- $boundary = md5(microtime());
- foreach ($fields as $name => $val) {
- array_push($data, '--' . $boundary);
- array_push($data, "Content-Disposition: form-data; name=\"$name\"");
- array_push($data, '');
- array_push($data, $val);
- }
- foreach ($files as $file) {
- array_push($data, '--' . $boundary);
- list($name, $fileName, $fileBody, $mimeType) = $file;
- $mimeType = empty($mimeType) ? 'application/octet-stream' : $mimeType;
- $fileName = UCloud_EscapeQuotes($fileName);
- array_push($data, "Content-Disposition: form-data; name=\"$name\"; filename=\"$fileName\"");
- array_push($data, "Content-Type: $mimeType");
- array_push($data, '');
- array_push($data, $fileBody);
- }
- array_push($data, '--' . $boundary . '--');
- array_push($data, '');
- $body = implode("\r\n", $data);
- $contentType = 'multipart/form-data; boundary=' . $boundary;
- return array($contentType, $body);
- }
- function UCloud_UserAgent() {
- global $SDK_VER;
- $sdkInfo = "UCloudPHP/$SDK_VER";
- $systemInfo = php_uname("s");
- $machineInfo = php_uname("m");
- $envInfo = "($systemInfo/$machineInfo)";
- $phpVer = phpversion();
- $ua = "$sdkInfo $envInfo PHP/$phpVer";
- return $ua;
- }
- function UCloud_EscapeQuotes($str)
- {
- $find = array("\\", "\"");
- $replace = array("\\\\", "\\\"");
- return str_replace($find, $replace, $str);
- }
- // --------------------------------------------------------------------------------
|