Qiniu.php 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: Kevin
  5. * Date: 2018/5/10
  6. * Time: 13:47
  7. */
  8. namespace org;
  9. use think\Controller;
  10. use Qiniu\Auth;
  11. use Qiniu\Storage\BucketManager;
  12. use Qiniu\Storage\UploadManager;
  13. use Qiniu\Config;
  14. use Qiniu\Processing\PersistentFop;
  15. use Qiniu\Storage\ResumeUploader;
  16. class Qiniu extends Controller
  17. {
  18. //引入文件
  19. public function _initialize(){
  20. require_once '../extend/qiniu/autoload.php';
  21. }
  22. /**
  23. * auth 鉴权
  24. * @return Auth
  25. */
  26. public function auth(){
  27. // 用于签名的公钥和私钥
  28. $accessKey = config('oQMkDqQ12fiYgitW1KaPfn74ulrqXnEGTxASKur0');
  29. $secretKey = config('or-OpPOJsJ3JbaGl-VziyaXbux_I1v6i5wso3XU-');
  30. // 初始化签权对象
  31. $auth = new Auth($accessKey, $secretKey);
  32. return $auth;
  33. }
  34. /**
  35. * uploadFile 上传文件(图片&音频)
  36. * @param $filePath 文件地址
  37. * @param $key 组装的文件名
  38. * @param $domain 前缀
  39. * @return string 返回上传地址
  40. * @throws \Exception
  41. */
  42. public function uploadFile($filePath,$key){
  43. $auth = $this->auth();
  44. //储存空间
  45. $bucket = config('qiniu.bucket');
  46. $policy = array(
  47. 'callbackBody' => 'filename=$(fname)&filesize=$(fsize)'
  48. );
  49. // 生成上传Token
  50. $uptoken = $auth->uploadToken($bucket, null, 3600, $policy);
  51. // 构建 UploadManager 对象
  52. //echo $uptoken;die;
  53. $uploadMgr = new UploadManager();
  54. list($ret, $err) = $uploadMgr->putFile($uptoken, $key, $filePath);
  55. if ($err !== null) {
  56. return $ret['key'];
  57. } else {
  58. return $ret['key'];
  59. }
  60. }
  61. /**
  62. * 上传视频&转码
  63. * @param $filePath 文件地址
  64. * @param $key 组装的文件名
  65. * @param $domain 前缀
  66. * @return string 返回上传地址
  67. * @throws \Exception
  68. */
  69. public function uploadVideo($filePath,$key){
  70. $auth = $this->auth();
  71. //储存空间
  72. $bucket = config('qiniu.bucket');
  73. $policy = array(
  74. 'callbackBody' => 'filename=$(fname)&filesize=$(fsize)'
  75. );
  76. // 生成上传Token
  77. $uptoken = $auth->uploadToken($bucket, null, 3600, $policy);
  78. // 构建 UploadManager 对象
  79. $uploadMgr = new UploadManager();
  80. list($ret, $err) = $uploadMgr->putFile($uptoken, $key, $filePath);
  81. // if ($err !== null) {
  82. // return $ret['key'];
  83. // } else {
  84. // return $ret['key'];
  85. // }
  86. $config = new Config();
  87. $pipeline = config('pipeline');
  88. $force = false;
  89. $k = $ret['key'];
  90. $pfop = new PersistentFop($auth, $config);
  91. $name = md5(time().uuid()).".mp4";
  92. $fops = "avthumb/mp4/vcodec/libx264|saveas/" . \Qiniu\base64_urlSafeEncode($bucket .':'. $name);
  93. list($id, $err) = $pfop->execute($bucket, $k, $fops, $pipeline, '', $force);
  94. //查询转码的进度和状态
  95. list($sta, $err) = $pfop->status($id);
  96. // echo "\n====> pfop avthumb status: \n";
  97. if ($sta != null) {
  98. return $name;
  99. } else {
  100. return $name;
  101. }
  102. }
  103. /**
  104. * deleteFile 删除图片
  105. * @param $key 图片名称
  106. * @param $bucket
  107. * @return mixed
  108. */
  109. public function delFile($key,$bucket){
  110. $auth = $this->auth();
  111. $config = new Config();
  112. $bucketManager = new BucketManager($auth, $config);
  113. $err = $bucketManager->delete($bucket, $key);
  114. return $err;
  115. }
  116. /**
  117. * delMoreFile 批量删除
  118. * @param $keys 图片数组 //每次最多不能超过1000个
  119. * @param $bucket 空间名
  120. * @return mixed
  121. */
  122. public function delMoreFile($keys,$bucket){
  123. $auth = $this->auth();
  124. $config = new Config();
  125. $bucketManager = new BucketManager($auth, $config);
  126. $ops = $bucketManager->buildBatchDelete($bucket, $keys);
  127. list($ret, $err) = $bucketManager->batch($ops);
  128. if ($err) {
  129. return $err;
  130. } else {
  131. return $ret;
  132. }
  133. }
  134. }