Qiniu.php 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  1. <?php
  2. namespace plugins\qiniu\lib;
  3. use Qiniu\Auth;
  4. use Qiniu\Storage\UploadManager;
  5. class Qiniu
  6. {
  7. private $config;
  8. private $storageRoot;
  9. /**
  10. * @var \plugins\qiniu\QiniuPlugin
  11. */
  12. private $plugin;
  13. /**
  14. * Qiniu constructor.
  15. * @param $config
  16. */
  17. public function __construct($config)
  18. {
  19. $pluginClass = cmf_get_plugin_class('Qiniu');
  20. $this->plugin = new $pluginClass();
  21. $this->config = $this->plugin->getConfig();
  22. $this->storageRoot = $this->config['protocol'] . '://' . $this->config['domain'] . '/';
  23. }
  24. /**
  25. * 文件上传
  26. * @param string $file 上传文件路径
  27. * @param string $filePath 文件路径相对于upload目录
  28. * @param string $fileType 文件类型,image,video,audio,file
  29. * @param array $param 额外参数
  30. * @return mixed
  31. */
  32. public function upload($file, $filePath, $fileType = 'image', $param = null)
  33. {
  34. $accessKey = $this->config['accessKey'];
  35. $secretKey = $this->config['secretKey'];
  36. $watermark = empty($this->config['styles_watermark']) ? 'watermark' : $this->config['styles_watermark'];
  37. $upManager = new UploadManager();
  38. $auth = new Auth($accessKey, $secretKey);
  39. $token = $auth->uploadToken($this->config['bucket']);
  40. $result = $upManager->putFile($token, $file, $filePath);
  41. $previewUrl = $fileType == 'image' ? $this->getPreviewUrl($file, $watermark) : $this->getFileDownloadUrl($file);
  42. $url = $fileType == 'image' ? $this->getImageUrl($file, $watermark) : $this->getFileDownloadUrl($file);
  43. return [
  44. 'preview_url' => $previewUrl,
  45. 'url' => $url,
  46. ];
  47. }
  48. /**
  49. * 获取图片预览地址
  50. * @param string $file
  51. * @param string $style
  52. * @return mixed
  53. */
  54. public function getPreviewUrl($file, $style = 'watermark')
  55. {
  56. $url = $this->getUrl($file, $style);
  57. return $url;
  58. }
  59. /**
  60. * 获取图片地址
  61. * @param string $file
  62. * @param string $style
  63. * @return mixed
  64. */
  65. public function getImageUrl($file, $style = 'watermark')
  66. {
  67. $config = $this->config;
  68. $url = $this->storageRoot . $file;
  69. if (!empty($style)) {
  70. //$url = $url . $config['style_separator'] . $style;
  71. }
  72. return $url;
  73. }
  74. /**
  75. * 获取文件地址
  76. * @param string $file
  77. * @param string $style
  78. * @return mixed
  79. */
  80. public function getUrl($file, $style = '')
  81. {
  82. $config = $this->config;
  83. $url = $this->storageRoot . $file;
  84. if (!empty($style)) {
  85. //$url = $url . $config['style_separator'] . $style;
  86. }
  87. return $url;
  88. }
  89. /**
  90. * 获取文件下载地址
  91. * @param string $file
  92. * @param int $expires
  93. * @return mixed
  94. */
  95. public function getFileDownloadUrl($file, $expires = 3600)
  96. {
  97. $accessKey = $this->config['accessKey'];
  98. $secretKey = $this->config['secretKey'];
  99. $auth = new Auth($accessKey, $secretKey);
  100. $url = $this->getUrl($file);
  101. $filename = db('asset')->where('file_path', $file)->value('filename');
  102. $url = $auth->privateDownloadUrl($url, $expires);
  103. if (!empty($filename)) {
  104. $url .= '&attname=' . urlencode($filename);
  105. }
  106. return $url;
  107. }
  108. /**
  109. * 获取云存储域名
  110. * @return mixed
  111. */
  112. public function getDomain()
  113. {
  114. return $this->config['domain'];
  115. }
  116. /**
  117. * 获取文件相对上传目录路径
  118. * @param string $url
  119. * @return mixed
  120. */
  121. public function getFilePath($url)
  122. {
  123. $parsedUrl = parse_url($url);
  124. if (!empty($parsedUrl['path'])) {
  125. $url = ltrim($parsedUrl['path'], '/\\');
  126. $config = $this->config;
  127. //$styleSeparator = $config['style_separator'];
  128. $styleSeparator = '!';
  129. $styleSeparatorPosition = strpos($url, $styleSeparator);
  130. if ($styleSeparatorPosition !== false) {
  131. $url = substr($url, 0, strpos($url, $styleSeparator));
  132. }
  133. } else {
  134. $url = '';
  135. }
  136. return $url;
  137. }
  138. /**
  139. * 获取上传token
  140. * @return mixed
  141. */
  142. public function gettoken(){
  143. $config = $this->config;
  144. $accessKey = $config['accessKey'];
  145. $secretKey = $config['secretKey'];
  146. $domain = $config['domain'];
  147. $auth = new Auth($accessKey, $secretKey);
  148. $token = $auth->uploadToken($config['bucket']);
  149. $data=[
  150. 'token'=>$token,
  151. 'domain'=>$domain,
  152. ];
  153. return $data;
  154. }
  155. }