Ingen beskrivning

pfop_mkzip.php 1.6KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <?php
  2. require_once __DIR__ . '/../autoload.php';
  3. use Qiniu\Auth;
  4. use Qiniu\Processing\PersistentFop;
  5. // 控制台获取密钥:https://portal.qiniu.com/user/key
  6. $accessKey = getenv('QINIU_ACCESS_KEY');
  7. $secretKey = getenv('QINIU_SECRET_KEY');
  8. $auth = new Auth($accessKey, $secretKey);
  9. // 将七牛存储空间中的资源进行批量压缩
  10. // 参考文档:https://developer.qiniu.com/dora/api/1667/mkzip
  11. // 要压缩的文件所在的空间和文件名
  12. $bucket = getenv('QINIU_TEST_BUCKET');
  13. $key = 'qiniu.png';
  14. // 用户默认没有私有队列,需要在这里创建然后填写 https://portal.qiniu.com/dora/media-gate/pipeline
  15. $pipeline = 'sdktest';
  16. $pfop = new PersistentFop($auth, null);
  17. // 进行 zip 压缩的 url
  18. $url1 = 'http://phpsdk.qiniudn.com/php-logo.png';
  19. $url2 = 'http://phpsdk.qiniudn.com/1.png';
  20. // 压缩后的 key
  21. $zipKey = 'test.zip';
  22. $fops = 'mkzip/2/url/' . \Qiniu\base64_urlSafeEncode($url1);
  23. $fops .= '/url/' . \Qiniu\base64_urlSafeEncode($url2);
  24. $fops .= '|saveas/' . \Qiniu\base64_urlSafeEncode("$bucket:$zipKey");
  25. // 处理完成后通知到你的业务服务器(需要可以公网访问,并能够相应 200 OK)
  26. $notify_url = null;
  27. // 当转码后的文件名与源文件名相同时,是否覆盖源文件
  28. $force = false;
  29. list($id, $err) = $pfop->execute($bucket, $key, $fops, $pipeline, $notify_url, $force);
  30. echo "\n====> pfop mkzip result: \n";
  31. if ($err != null) {
  32. var_dump($err);
  33. } else {
  34. echo "PersistentFop Id: $id\n";
  35. }
  36. // 查询转码的进度和状态
  37. list($ret, $err) = $pfop->status($id);
  38. echo "\n====> pfop mkzip status: \n";
  39. if ($err != null) {
  40. var_dump($err);
  41. } else {
  42. var_dump($ret);
  43. }