Upayun.php 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: Kevin
  5. * Date: 2018/7/10
  6. * Time: 12:55
  7. */
  8. namespace org;
  9. use think\Controller;
  10. use Upyun\Upyun;
  11. use Upyun\Config;
  12. class Upayun extends Controller
  13. {
  14. //引入文件
  15. public function _initialize(){
  16. require_once '../extend/upyun/vendor/autoload.php';
  17. }
  18. //初始化创建实例
  19. public function client(){
  20. // 创建实例
  21. $bucketConfig = new Config(config('upyun.serviceName'), config('upyun.operatorName'), config('upyun.operatorPassword'));
  22. $client = new Upyun($bucketConfig);
  23. return $client;
  24. }
  25. /**
  26. * 上传图片
  27. * @param $filePath 本地图片地址
  28. * @param $key 自定义图片名
  29. * @param $dir 目录
  30. * @return string
  31. * @throws \Exception
  32. */
  33. public function uploadFile($filePath,$key,$dir){
  34. $client = $this->client();
  35. // 创建目录
  36. if($dir != "" && !file_exists($dir)){
  37. $client->createDir($dir);
  38. }
  39. // 读文件
  40. $file = fopen($filePath, 'r');
  41. // 上传文件
  42. $res = $client->write($dir.$key, $file);
  43. return $dir.$key;
  44. }
  45. /**
  46. * 删除又拍云图片文件
  47. * @param $key 图片完整地址
  48. * @param $http 域名
  49. * @return bool
  50. * @throws \Exception
  51. */
  52. public function delFile($key){
  53. $add = str_replace (config('upyun.domain'),'',$key);
  54. $add = str_replace ('http://','',$add);
  55. $client = $this->client();
  56. // 单文件删除
  57. $res=$client->delete($add);
  58. return $res;
  59. }
  60. /**
  61. * 删除空目录
  62. * @param $dir 目录
  63. * @return bool
  64. * @throws \Exception
  65. */
  66. public function delDir($dir){
  67. $client = $this->client();
  68. // 删除空目录
  69. if($dir != ""){
  70. $res=$client->deleteDir($dir);
  71. }
  72. return $res;
  73. }
  74. /**
  75. * 获取图片信息
  76. * @param $key 图片完整地址
  77. * @param $http 域名
  78. * @return array
  79. */
  80. public function getInfo($key,$http){
  81. $add = str_replace ($http,'',$key);
  82. $add = str_replace ('http://','',$add);
  83. $client = $this->client();
  84. $res=$client->info($add);
  85. return $res;
  86. }
  87. /**
  88. * 获取服务容量
  89. * @return string
  90. * @throws \Exception
  91. */
  92. public function capacity(){
  93. $client = $this->client();
  94. $res=$client->usage();
  95. return $res;
  96. }
  97. }