Upyun.php 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243
  1. <?php
  2. /**
  3. * 又拍云上传驱动
  4. *
  5. *
  6. *
  7. *
  8. */
  9. class UCloud_Engine_Upyun{
  10. /**
  11. * 上传文件根目录
  12. * @var string
  13. */
  14. private $rootPath;
  15. /**
  16. * 上传错误信息
  17. * @var string
  18. */
  19. private $error = '';
  20. private $config = array(
  21. 'host' => '', //又拍云服务器
  22. 'username' => '', //又拍云用户
  23. 'password' => '', //又拍云密码
  24. 'bucket' => '', //空间名称
  25. 'timeout' => 90, //超时时间
  26. );
  27. /**
  28. * 构造函数,用于设置上传根路径
  29. * @param string $root 根目录
  30. * @param array $config FTP配置
  31. */
  32. public function __construct($root, $config){
  33. /* 默认FTP配置 */
  34. $this->config = array_merge($this->config, $config);
  35. $this->config['host'] = $this->config['api'];
  36. $this->config['username'] = $this->config['accessKey'];
  37. $this->config['password'] = md5($this->config['secretKey']);
  38. $this->config['host'] = $this->config['host'];
  39. $this->config['timeout'] = $this->config['timeout'];
  40. /* 设置根目录 */
  41. $this->rootPath = trim($root, './') . '/';
  42. }
  43. /**
  44. * 检测上传根目录(又拍云上传时支持自动创建目录,直接返回)
  45. * @return boolean true-检测通过,false-检测失败
  46. */
  47. public function checkRootPath(){
  48. return true;
  49. }
  50. /**
  51. * 检测上传目录(又拍云上传时支持自动创建目录,直接返回)
  52. * @param string $savepath 上传目录
  53. * @return boolean 检测结果,true-通过,false-失败
  54. */
  55. public function checkSavePath($savepath){
  56. return true;
  57. }
  58. /**
  59. * 创建文件夹 (又拍云上传时支持自动创建目录,直接返回)
  60. * @param string $savepath 目录名称
  61. * @return boolean true-创建成功,false-创建失败
  62. */
  63. public function mkdir($savepath){
  64. return true;
  65. }
  66. /**
  67. * 保存指定文件
  68. * @param array $file 保存的文件信息
  69. * @param boolean $replace 同名文件是否覆盖
  70. * @return boolean 保存状态,true-成功,false-失败
  71. */
  72. public function save($file, $replace = true, $opt = array()) {
  73. $header['Content-Type'] = $file['type'];
  74. $header['Content-MD5'] = md5_file($file['tmp_name']);
  75. //是否开启缩略图
  76. if($opt['ifresize'] == 1) {
  77. //不传将自动设置为限制宽度,高度自适应
  78. $header['x-gmkerl-type'] = $opt['type']? $opt['type']: 'fix_width';
  79. //宽度高度
  80. $header['x-gmkerl-value'] = $opt['value']? $opt['value']: '150';
  81. //图片压缩质量
  82. $header['x­-gmkerl-quality'] = $opt['quality']? $opt['quality']: '95';
  83. //图片锐化,默认开启锐化
  84. $header['x­-gmkerl-unsharp'] = $opt['unsharp']? $opt['unsharp']: 'true';
  85. }
  86. $header['Mkdir'] = 'true';
  87. //打开文件
  88. $resource = fopen($file['tmp_name'], 'rb');
  89. $save = $this->rootPath . $file['savepath'] ."/". $file['savename'];
  90. $data = $this->request($save, 'PUT', $header, $resource);
  91. //$file['url']= $this->config['domain']."/".$save; //返回路径
  92. return false === $data ? false : true;
  93. }
  94. /**
  95. * 获取最后一次上传错误信息
  96. * @return string 错误信息
  97. */
  98. public function getError(){
  99. return $this->error;
  100. }
  101. /**
  102. * 请求又拍云服务器
  103. * @param string $path 请求的PATH
  104. * @param string $method 请求方法
  105. * @param array $headers 请求header
  106. * @param resource $body 上传文件资源
  107. * @return boolean
  108. */
  109. private function request($path, $method, $headers = null, $body = null){
  110. $uri = "/{$this->config['bucket']}{$path}";
  111. $ch = curl_init("http://{$this->config['host']}{$uri}");
  112. $_headers = array('Expect:');
  113. if (!is_null($headers) && is_array($headers)){
  114. foreach($headers as $k => $v) {
  115. array_push($_headers, "{$k}: {$v}");
  116. }
  117. }
  118. $length = 0;
  119. $date = gmdate('D, d M Y H:i:s \G\M\T');
  120. if (!is_null($body)) {
  121. if(is_resource($body)){
  122. fseek($body, 0, SEEK_END);
  123. $length = ftell($body);
  124. fseek($body, 0);
  125. array_push($_headers, "Content-Length: {$length}");
  126. curl_setopt($ch, CURLOPT_INFILE, $body);
  127. curl_setopt($ch, CURLOPT_INFILESIZE, $length);
  128. } else {
  129. $length = @strlen($body);
  130. array_push($_headers, "Content-Length: {$length}");
  131. curl_setopt($ch, CURLOPT_POSTFIELDS, $body);
  132. }
  133. } else {
  134. array_push($_headers, "Content-Length: {$length}");
  135. }
  136. array_push($_headers, "Authorization: {$this->sign($method, $uri, $date, $length)}");
  137. //array_push($_headers, 'Authorization: ' . $this->sign($method, $uri, $date, $length));
  138. array_push($_headers, "Date: {$date}");
  139. curl_setopt($ch, CURLOPT_HTTPHEADER, $_headers);
  140. curl_setopt($ch, CURLOPT_TIMEOUT, $this->config['timeout']);
  141. curl_setopt($ch, CURLOPT_HEADER, 1);
  142. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  143. curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 0);
  144. curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method);
  145. if ($method == 'PUT' || $method == 'POST') {
  146. curl_setopt($ch, CURLOPT_POST, 1);
  147. } else {
  148. curl_setopt($ch, CURLOPT_POST, 0);
  149. }
  150. if ($method == 'HEAD') {
  151. curl_setopt($ch, CURLOPT_NOBODY, true);
  152. }
  153. $response = curl_exec($ch);
  154. $status = curl_getinfo($ch, CURLINFO_HTTP_CODE);
  155. curl_close($ch);
  156. list($header, $body) = explode("\r\n\r\n", $response, 2);
  157. if ($status == 200) {
  158. if ($method == 'GET') {
  159. return $body;
  160. } else {
  161. $data = $this->response($header);
  162. return count($data) > 0 ? $data : true;
  163. }
  164. } else {
  165. $this->error($header);
  166. return false;
  167. }
  168. }
  169. /**
  170. * 获取响应数据
  171. * @param string $text 响应头字符串
  172. * @return array 响应数据列表
  173. */
  174. private function response($text){
  175. $headers = explode("\r\n", $text);
  176. $items = array();
  177. foreach($headers as $header) {
  178. $header = trim($header);
  179. if(strpos($header, 'x-upyun') !== False){
  180. list($k, $v) = explode(':', $header);
  181. $items[trim($k)] = in_array(substr($k,8,5), array('width','heigh','frame')) ? intval($v) : trim($v);
  182. }
  183. }
  184. return $items;
  185. }
  186. /**
  187. * 生成请求签名
  188. * @param string $method 请求方法
  189. * @param string $uri 请求URI
  190. * @param string $date 请求时间
  191. * @param integer $length 请求内容大小
  192. * @return string 请求签名
  193. */
  194. private function sign($method, $uri, $date, $length){
  195. $sign = "{$method}&{$uri}&{$date}&{$length}&{$this->config['password']}";
  196. return 'UpYun ' . $this->config['username'] . ':' . md5($sign);
  197. }
  198. /**
  199. * 获取请求错误信息
  200. * @param string $header 请求返回头信息
  201. */
  202. private function error($header) {
  203. list($status, $stash) = explode("\r\n", $header, 2);
  204. list($v, $code, $message) = explode(" ", $status, 3);
  205. $message = is_null($message) ? 'File Not Found' : "[{$status}]:{$message}";
  206. $this->error = $message;
  207. }
  208. }