Qiniu.php 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  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('qiniu.accessKey');
  29. $secretKey = config('qiniu.secretKey');
  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. $uploadMgr = new UploadManager();
  53. list($ret, $err) = $uploadMgr->putFile($uptoken, $key, $filePath);
  54. if ($err !== null) {
  55. return $ret['key'];
  56. } else {
  57. return $ret['key'];
  58. }
  59. }
  60. /**
  61. * 上传视频&转码
  62. * @param $filePath 文件地址
  63. * @param $key 组装的文件名
  64. * @param $domain 前缀
  65. * @return string 返回上传地址
  66. * @throws \Exception
  67. */
  68. public function uploadVideo($filePath,$key){
  69. $auth = $this->auth();
  70. //储存空间
  71. $bucket = config('qiniu.bucket');
  72. $policy = array(
  73. 'callbackBody' => 'filename=$(fname)&filesize=$(fsize)'
  74. );
  75. // 生成上传Token
  76. $uptoken = $auth->uploadToken($bucket, null, 3600, $policy);
  77. // 构建 UploadManager 对象
  78. $uploadMgr = new UploadManager();
  79. list($ret, $err) = $uploadMgr->putFile($uptoken, $key, $filePath);
  80. // if ($err !== null) {
  81. // return $ret['key'];
  82. // } else {
  83. // return $ret['key'];
  84. // }
  85. $config = new Config();
  86. $pipeline = config('pipeline');
  87. $force = false;
  88. $k = $ret['key'];
  89. $pfop = new PersistentFop($auth, $config);
  90. $name = md5(time().uuid()).".mp4";
  91. $fops = "avthumb/mp4/vcodec/libx264|saveas/" . \Qiniu\base64_urlSafeEncode($bucket .':'. $name);
  92. list($id, $err) = $pfop->execute($bucket, $k, $fops, $pipeline, '', $force);
  93. //查询转码的进度和状态
  94. list($sta, $err) = $pfop->status($id);
  95. // echo "\n====> pfop avthumb status: \n";
  96. if ($sta != null) {
  97. return $name;
  98. } else {
  99. return $name;
  100. }
  101. }
  102. /**
  103. * deleteFile 删除图片
  104. * @param $key 图片名称
  105. * @param $bucket
  106. * @return mixed
  107. */
  108. public function delFile($key,$bucket){
  109. $auth = $this->auth();
  110. $config = new Config();
  111. $bucketManager = new BucketManager($auth, $config);
  112. $err = $bucketManager->delete($bucket, $key);
  113. return $err;
  114. }
  115. /**
  116. * delMoreFile 批量删除
  117. * @param $keys 图片数组 //每次最多不能超过1000个
  118. * @param $bucket 空间名
  119. * @return mixed
  120. */
  121. public function delMoreFile($keys,$bucket){
  122. $auth = $this->auth();
  123. $config = new Config();
  124. $bucketManager = new BucketManager($auth, $config);
  125. $ops = $bucketManager->buildBatchDelete($bucket, $keys);
  126. list($ret, $err) = $bucketManager->batch($ops);
  127. if ($err) {
  128. return $err;
  129. } else {
  130. return $ret;
  131. }
  132. }
  133. }