Oss.php 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. <?php
  2. /**
  3. * 阿里云oss上传驱动
  4. *
  5. *
  6. *
  7. *
  8. */
  9. class UCloud_Engine_Oss {
  10. /**
  11. * 上传文件根目录
  12. * @var string
  13. */
  14. private $rootPath;
  15. private $fileType;
  16. /**
  17. * 上传错误信息
  18. * @var string
  19. */
  20. private $error = '';
  21. private $config = array(
  22. 'access_id' => '', //阿里云Access Key ID
  23. 'access_key' => '', //阿里云Access Key Secret
  24. 'bucket' => '', //空间名称
  25. 'host' => '', //服务器地址
  26. 'timeout' => 90, //超时时间
  27. );
  28. /**
  29. * 构造函数,用于设置上传根路径
  30. * @param array $config FTP配置
  31. */
  32. public function __construct($root, $config) {
  33. $new_config = array();
  34. $new_config['access_id'] = $config['accessKey'];
  35. $new_config['access_key'] = $config['secretKey'];
  36. $new_config['bucket'] = $config['bucket'];
  37. $new_config['host'] = $config['api'];
  38. $new_config['timeout'] = $config['timeout'];
  39. /* 默认FTP配置 */
  40. $this->config = array_merge($this->config, $new_config);
  41. /* 设置根目录 */
  42. $this->rootPath = trim($root, './') . '/';
  43. }
  44. /**
  45. * 检测上传根目录(阿里云上传时支持自动创建目录,直接返回)
  46. * @param string $rootpath 根目录
  47. * @return boolean true-检测通过,false-检测失败
  48. */
  49. public function checkRootPath($rootpath) {
  50. return true;
  51. }
  52. /**
  53. * 检测上传目录(阿里云上传时支持自动创建目录,直接返回)
  54. * @param string $savepath 上传目录
  55. * @return boolean 检测结果,true-通过,false-失败
  56. */
  57. public function checkSavePath($savepath) {
  58. return true;
  59. }
  60. /**
  61. * 创建文件夹 (阿里云上传时支持自动创建目录,直接返回)
  62. * @param string $savepath 目录名称
  63. * @return boolean true-创建成功,false-创建失败
  64. */
  65. public function mkdir($savepath) {
  66. return true;
  67. }
  68. /**
  69. * 保存指定文件
  70. * @param array $file 保存的文件信息
  71. * @param boolean $replace 同名文件是否覆盖
  72. * @return boolean 保存状态,true-成功,false-失败
  73. */
  74. public function save($file, $replace = true) {
  75. $this->fileType = $file['type'];
  76. $resource = fopen($file['tmp_name'], 'r');
  77. //正则去除最后一个斜杠
  78. $file['savepath'] = preg_replace('/(.*?)(?:\/(?!\w)|$)/', '$1', $file['savepath']);
  79. $path = $this->rootPath . $file['savepath'] .'/'. $file['savename'];
  80. return $this->request($path, $resource);
  81. }
  82. /**
  83. * 请求阿里云oss
  84. * @param [type] $path [description]
  85. * @param [type] $resource [description]
  86. * @return [type] [description]
  87. */
  88. private function request($path, $resource = null){
  89. $_headers = array('Content-Type: ' . $this->fileType);
  90. $uri = "/{$this->config['bucket']}{$path}";
  91. $date = gmdate('D, d M Y H:i:s \G\M\T');
  92. array_push($_headers, "Authorization: {$this->sign($uri, $date)}");
  93. array_push($_headers, "Date: {$date}");
  94. fseek($resource, 0, SEEK_END);
  95. $length = ftell($resource);
  96. fseek($resource, 0);
  97. array_push($_headers, "Content-Length: {$length}");
  98. $ch = curl_init('http://' . $this->config['host'] . $uri);
  99. curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "PUT");
  100. curl_setopt($ch, CURLOPT_POST, 1);
  101. curl_setopt($ch, CURLOPT_INFILE, $resource);
  102. curl_setopt($ch, CURLOPT_INFILESIZE, $length);
  103. curl_setopt($ch, CURLOPT_HTTPHEADER, $_headers);
  104. curl_setopt($ch, CURLOPT_TIMEOUT, $this->config['timeout']);
  105. curl_setopt($ch, CURLOPT_HEADER, 1);
  106. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  107. curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 0);
  108. $response = curl_exec($ch);
  109. $status = curl_getinfo($ch, CURLINFO_HTTP_CODE);
  110. fclose($resource);
  111. if ($status == 200) {
  112. return true;
  113. } else {
  114. $this->error = $response;
  115. return false;
  116. }
  117. }
  118. /**
  119. * 获取最后一次上传错误信息
  120. * @return string 错误信息
  121. */
  122. public function getError() {
  123. return $this->error;
  124. }
  125. /**
  126. * 生成请求签名
  127. * @param string $uri 请求URI
  128. * @param string $date 请求时间
  129. * @return string 请求签名
  130. */
  131. private function sign( $uri, $date){
  132. $sign_string = "PUT\n\n" . $this->fileType . "\n" . $date . "\n" . $uri;
  133. $sign = $this->hex_to_base64(hash_hmac('sha1', $sign_string, $this->config['access_key']));
  134. return 'OSS ' . $this->config['access_id'] . ':' . $sign;
  135. }
  136. private function hex_to_base64($str) {
  137. $result = '';
  138. for ($i = 0; $i < strlen($str); $i += 2) {
  139. $result .= chr(hexdec(substr($str, $i, 2)));
  140. }
  141. return base64_encode($result);
  142. }
  143. }