io.php 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. <?php
  2. require_once("http.php");
  3. require_once("auth_digest.php");
  4. // ----------------------------------------------------------
  5. // class Qiniu_PutExtra
  6. class Qiniu_PutExtra
  7. {
  8. public $Params = null;
  9. public $MimeType = null;
  10. public $Crc32 = 0;
  11. public $CheckCrc = 0;
  12. }
  13. function Qiniu_Put($upToken, $key, $body, $putExtra) // => ($putRet, $err)
  14. {
  15. global $QINIU_UP_HOST;
  16. if ($putExtra === null) {
  17. $putExtra = new Qiniu_PutExtra;
  18. }
  19. $fields = array('token' => $upToken);
  20. if ($key === null) {
  21. $fname = '?';
  22. } else {
  23. $fname = $key;
  24. $fields['key'] = $key;
  25. }
  26. if ($putExtra->CheckCrc) {
  27. $fields['crc32'] = $putExtra->Crc32;
  28. }
  29. if ($putExtra->Params) {
  30. foreach ($putExtra->Params as $k=>$v) {
  31. $fields[$k] = $v;
  32. }
  33. }
  34. $files = array(array('file', $fname, $body, $putExtra->MimeType));
  35. $client = new Qiniu_HttpClient;
  36. return Qiniu_Client_CallWithMultipartForm($client, $QINIU_UP_HOST, $fields, $files);
  37. }
  38. function createFile($filename, $mime)
  39. {
  40. // PHP 5.5 introduced a CurlFile object that deprecates the old @filename syntax
  41. // See: https://wiki.php.net/rfc/curl-file-upload
  42. if (function_exists('curl_file_create')) {
  43. return curl_file_create($filename, $mime);
  44. }
  45. // Use the old style if using an older version of PHP
  46. $value = "@{$filename}";
  47. if (!empty($mime)) {
  48. $value .= ';type=' . $mime;
  49. }
  50. return $value;
  51. }
  52. function Qiniu_PutFile($upToken, $key, $localFile, $putExtra) // => ($putRet, $err)
  53. {
  54. global $QINIU_UP_HOST;
  55. if ($putExtra === null) {
  56. $putExtra = new Qiniu_PutExtra;
  57. }
  58. $fields = array('token' => $upToken, 'file' => createFile($localFile, $putExtra->MimeType));
  59. if ($key === null) {
  60. $fname = '?';
  61. } else {
  62. $fname = $key;
  63. $fields['key'] = $key;
  64. }
  65. if ($putExtra->CheckCrc) {
  66. if ($putExtra->CheckCrc === 1) {
  67. $hash = hash_file('crc32b', $localFile);
  68. $array = unpack('N', pack('H*', $hash));
  69. $putExtra->Crc32 = $array[1];
  70. }
  71. $fields['crc32'] = sprintf('%u', $putExtra->Crc32);
  72. }
  73. if ($putExtra->Params) {
  74. foreach ($putExtra->Params as $k=>$v) {
  75. $fields[$k] = $v;
  76. }
  77. }
  78. $client = new Qiniu_HttpClient;
  79. return Qiniu_Client_CallWithForm($client, $QINIU_UP_HOST, $fields, 'multipart/form-data');
  80. }
  81. // ----------------------------------------------------------