http.php 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340
  1. <?php
  2. require_once("auth_digest.php");
  3. require_once("conf.php");
  4. // --------------------------------------------------------------------------------
  5. // class Qiniu_Error
  6. class Qiniu_Error
  7. {
  8. public $Err; // string
  9. public $Reqid; // string
  10. public $Details; // []string
  11. public $Code; // int
  12. public function __construct($code, $err)
  13. {
  14. $this->Code = $code;
  15. $this->Err = $err;
  16. }
  17. }
  18. // --------------------------------------------------------------------------------
  19. // class Qiniu_Request
  20. class Qiniu_Request
  21. {
  22. public $URL;
  23. public $Header;
  24. public $Body;
  25. public $UA;
  26. public function __construct($url, $body)
  27. {
  28. $this->URL = $url;
  29. $this->Header = array();
  30. $this->Body = $body;
  31. $this->UA = Qiniu_UserAgent();
  32. }
  33. }
  34. // --------------------------------------------------------------------------------
  35. // class Qiniu_Response
  36. class Qiniu_Response
  37. {
  38. public $StatusCode;
  39. public $Header;
  40. public $ContentLength;
  41. public $Body;
  42. public function __construct($code, $body)
  43. {
  44. $this->StatusCode = $code;
  45. $this->Header = array();
  46. $this->Body = $body;
  47. $this->ContentLength = strlen($body);
  48. }
  49. }
  50. // --------------------------------------------------------------------------------
  51. // class Qiniu_Header
  52. function Qiniu_Header_Get($header, $key) // => $val
  53. {
  54. $val = @$header[$key];
  55. if (isset($val)) {
  56. if (is_array($val)) {
  57. return $val[0];
  58. }
  59. return $val;
  60. } else {
  61. return '';
  62. }
  63. }
  64. function Qiniu_ResponseError($resp) // => $error
  65. {
  66. $header = $resp->Header;
  67. $details = Qiniu_Header_Get($header, 'X-Log');
  68. $reqId = Qiniu_Header_Get($header, 'X-Reqid');
  69. $err = new Qiniu_Error($resp->StatusCode, null);
  70. if ($err->Code > 299) {
  71. if ($resp->ContentLength !== 0) {
  72. if (Qiniu_Header_Get($header, 'Content-Type') === 'application/json') {
  73. $ret = json_decode($resp->Body, true);
  74. $err->Err = $ret['error'];
  75. }
  76. }
  77. }
  78. $err->Reqid = $reqId;
  79. $err->Details = $details;
  80. return $err;
  81. }
  82. // --------------------------------------------------------------------------------
  83. // class Qiniu_Client
  84. function Qiniu_Client_incBody($req) // => $incbody
  85. {
  86. $body = $req->Body;
  87. if (!isset($body)) {
  88. return false;
  89. }
  90. $ct = Qiniu_Header_Get($req->Header, 'Content-Type');
  91. if ($ct === 'application/x-www-form-urlencoded') {
  92. return true;
  93. }
  94. return false;
  95. }
  96. function Qiniu_Client_do($req) // => ($resp, $error)
  97. {
  98. $ch = curl_init();
  99. $url = $req->URL;
  100. $options = array(
  101. CURLOPT_USERAGENT => $req->UA,
  102. CURLOPT_RETURNTRANSFER => true,
  103. CURLOPT_SSL_VERIFYPEER => false,
  104. CURLOPT_SSL_VERIFYHOST => false,
  105. CURLOPT_HEADER => true,
  106. CURLOPT_NOBODY => false,
  107. CURLOPT_CUSTOMREQUEST => 'POST',
  108. CURLOPT_URL => $url['path']
  109. );
  110. $httpHeader = $req->Header;
  111. if (!empty($httpHeader))
  112. {
  113. $header = array();
  114. foreach($httpHeader as $key => $parsedUrlValue) {
  115. $header[] = "$key: $parsedUrlValue";
  116. }
  117. $options[CURLOPT_HTTPHEADER] = $header;
  118. }
  119. $body = $req->Body;
  120. if (!empty($body)) {
  121. $options[CURLOPT_POSTFIELDS] = $body;
  122. } else {
  123. $options[CURLOPT_POSTFIELDS] = "";
  124. }
  125. curl_setopt_array($ch, $options);
  126. $result = curl_exec($ch);
  127. $ret = curl_errno($ch);
  128. if ($ret !== 0) {
  129. $err = new Qiniu_Error(0, curl_error($ch));
  130. curl_close($ch);
  131. return array(null, $err);
  132. }
  133. $code = curl_getinfo($ch, CURLINFO_HTTP_CODE);
  134. $contentType = curl_getinfo($ch, CURLINFO_CONTENT_TYPE);
  135. curl_close($ch);
  136. $responseArray = explode("\r\n\r\n", $result);
  137. $responseArraySize = sizeof($responseArray);
  138. $respHeader = $responseArray[$responseArraySize-2];
  139. $respBody = $responseArray[$responseArraySize-1];
  140. list($reqid, $xLog) = getReqInfo($respHeader);
  141. $resp = new Qiniu_Response($code, $respBody);
  142. $resp->Header['Content-Type'] = $contentType;
  143. $resp->Header["X-Reqid"] = $reqid;
  144. return array($resp, null);
  145. }
  146. function getReqInfo($headerContent) {
  147. $headers = explode("\r\n", $headerContent);
  148. $reqid = null;
  149. $xLog = null;
  150. foreach($headers as $header) {
  151. $header = trim($header);
  152. if(strpos($header, 'X-Reqid') !== false) {
  153. list($k, $v) = explode(':', $header);
  154. $reqid = trim($v);
  155. } elseif(strpos($header, 'X-Log') !== false) {
  156. list($k, $v) = explode(':', $header);
  157. $xLog = trim($v);
  158. }
  159. }
  160. return array($reqid, $xLog);
  161. }
  162. class Qiniu_HttpClient
  163. {
  164. public function RoundTrip($req) // => ($resp, $error)
  165. {
  166. return Qiniu_Client_do($req);
  167. }
  168. }
  169. class Qiniu_MacHttpClient
  170. {
  171. public $Mac;
  172. public function __construct($mac)
  173. {
  174. $this->Mac = Qiniu_RequireMac($mac);
  175. }
  176. public function RoundTrip($req) // => ($resp, $error)
  177. {
  178. $incbody = Qiniu_Client_incBody($req);
  179. $token = $this->Mac->SignRequest($req, $incbody);
  180. $req->Header['Authorization'] = "QBox $token";
  181. return Qiniu_Client_do($req);
  182. }
  183. }
  184. // --------------------------------------------------------------------------------
  185. function Qiniu_Client_ret($resp) // => ($data, $error)
  186. {
  187. $code = $resp->StatusCode;
  188. $data = null;
  189. if ($code >= 200 && $code <= 299) {
  190. if ($resp->ContentLength !== 0) {
  191. $data = json_decode($resp->Body, true);
  192. if ($data === null) {
  193. $err_msg = function_exists('json_last_error_msg') ? json_last_error_msg() : "error with content:" . $resp->Body;
  194. $err = new Qiniu_Error(0, $err_msg);
  195. return array(null, $err);
  196. }
  197. }
  198. if ($code === 200) {
  199. return array($data, null);
  200. }
  201. }
  202. return array($data, Qiniu_ResponseError($resp));
  203. }
  204. function Qiniu_Client_Call($self, $url) // => ($data, $error)
  205. {
  206. $u = array('path' => $url);
  207. $req = new Qiniu_Request($u, null);
  208. list($resp, $err) = $self->RoundTrip($req);
  209. if ($err !== null) {
  210. return array(null, $err);
  211. }
  212. return Qiniu_Client_ret($resp);
  213. }
  214. function Qiniu_Client_CallNoRet($self, $url) // => $error
  215. {
  216. $u = array('path' => $url);
  217. $req = new Qiniu_Request($u, null);
  218. list($resp, $err) = $self->RoundTrip($req);
  219. if ($err !== null) {
  220. return array(null, $err);
  221. }
  222. if ($resp->StatusCode === 200) {
  223. return null;
  224. }
  225. return Qiniu_ResponseError($resp);
  226. }
  227. function Qiniu_Client_CallWithForm(
  228. $self, $url, $params, $contentType = 'application/x-www-form-urlencoded') // => ($data, $error)
  229. {
  230. $u = array('path' => $url);
  231. if ($contentType === 'application/x-www-form-urlencoded') {
  232. if (is_array($params)) {
  233. $params = http_build_query($params);
  234. }
  235. }
  236. $req = new Qiniu_Request($u, $params);
  237. if ($contentType !== 'multipart/form-data') {
  238. $req->Header['Content-Type'] = $contentType;
  239. }
  240. list($resp, $err) = $self->RoundTrip($req);
  241. if ($err !== null) {
  242. return array(null, $err);
  243. }
  244. return Qiniu_Client_ret($resp);
  245. }
  246. // --------------------------------------------------------------------------------
  247. function Qiniu_Client_CallWithMultipartForm($self, $url, $fields, $files)
  248. {
  249. list($contentType, $body) = Qiniu_Build_MultipartForm($fields, $files);
  250. return Qiniu_Client_CallWithForm($self, $url, $body, $contentType);
  251. }
  252. function Qiniu_Build_MultipartForm($fields, $files) // => ($contentType, $body)
  253. {
  254. $data = array();
  255. $mimeBoundary = md5(microtime());
  256. foreach ($fields as $name => $val) {
  257. array_push($data, '--' . $mimeBoundary);
  258. array_push($data, "Content-Disposition: form-data; name=\"$name\"");
  259. array_push($data, '');
  260. array_push($data, $val);
  261. }
  262. foreach ($files as $file) {
  263. array_push($data, '--' . $mimeBoundary);
  264. list($name, $fileName, $fileBody, $mimeType) = $file;
  265. $mimeType = empty($mimeType) ? 'application/octet-stream' : $mimeType;
  266. $fileName = Qiniu_escapeQuotes($fileName);
  267. array_push($data, "Content-Disposition: form-data; name=\"$name\"; filename=\"$fileName\"");
  268. array_push($data, "Content-Type: $mimeType");
  269. array_push($data, '');
  270. array_push($data, $fileBody);
  271. }
  272. array_push($data, '--' . $mimeBoundary . '--');
  273. array_push($data, '');
  274. $body = implode("\r\n", $data);
  275. $contentType = 'multipart/form-data; boundary=' . $mimeBoundary;
  276. return array($contentType, $body);
  277. }
  278. function Qiniu_UserAgent() {
  279. global $SDK_VER;
  280. $sdkInfo = "QiniuPHP/$SDK_VER";
  281. $systemInfo = php_uname("s");
  282. $machineInfo = php_uname("m");
  283. $envInfo = "($systemInfo/$machineInfo)";
  284. $phpVer = phpversion();
  285. $ua = "$sdkInfo $envInfo PHP/$phpVer";
  286. return $ua;
  287. }
  288. function Qiniu_escapeQuotes($str)
  289. {
  290. $find = array("\\", "\"");
  291. $replace = array("\\\\", "\\\"");
  292. return str_replace($find, $replace, $str);
  293. }
  294. // --------------------------------------------------------------------------------