Nenhuma descrição
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

Qiniuyun.php 5.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. <?php
  2. /**
  3. * 易优CMS
  4. * ============================================================================
  5. * 版权所有 2016-2028 海南赞赞网络科技有限公司,并保留所有权利。
  6. * 网站地址: http://www.eyoucms.com
  7. * ----------------------------------------------------------------------------
  8. * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
  9. * ============================================================================
  10. * Author: 小虎哥 <1105415366@qq.com>
  11. * Date: 2018-4-3
  12. */
  13. namespace app\plugins\controller;
  14. use think\Db;
  15. class Qiniuyun extends Base
  16. {
  17. /**
  18. * 构造方法
  19. */
  20. public function __construct()
  21. {
  22. parent::__construct();
  23. }
  24. /**
  25. * 获取七牛云token
  26. */
  27. public function qiniu_upload()
  28. {
  29. if (IS_AJAX_POST) {
  30. $weappInfo = Db::name('weapp')->where('code','Qiniuyun')->field('id,status,data')->find();
  31. if (empty($weappInfo)) {
  32. $this->error('请先安装配置【七牛云图片加速】插件!', null, ['code'=>-1]);
  33. } else if (1 != $weappInfo['status']) {
  34. $this->error('请先启用【七牛云图片加速】插件!', null, ['code'=>-2,'id'=>$weappInfo['id']]);
  35. } else {
  36. $Qiniuyun = json_decode($weappInfo['data'], true);
  37. if (empty($Qiniuyun)) {
  38. $this->error('请先配置【七牛云图片加速】插件!', null, ['code'=>-3]);
  39. } else if (empty($Qiniuyun['domain'])) {
  40. $this->error('请先配置【七牛云图片加速】插件中的域名!', null, ['code'=>-3]);
  41. }
  42. }
  43. //引入七牛云的相关文件
  44. weapp_vendor('Qiniu.src.Qiniu.Auth', 'Qiniuyun');
  45. weapp_vendor('Qiniu.src.Qiniu.Storage.UploadManager', 'Qiniuyun');
  46. require_once ROOT_PATH.'weapp/Qiniuyun/vendor/Qiniu/autoload.php';
  47. // 配置信息
  48. $accessKey = $Qiniuyun['access_key'];
  49. $secretKey = $Qiniuyun['secret_key'];
  50. $bucket = $Qiniuyun['bucket'];
  51. if (2 == $Qiniuyun['tcp']) {
  52. $tcp = 'https://';
  53. } else {
  54. $tcp = 'http://';
  55. }
  56. $domain = $tcp.$Qiniuyun['domain'];
  57. // 区域对应的上传URl
  58. $config = new \Qiniu\Config(null);
  59. $uphost = $config->getUpHost($accessKey, $bucket);
  60. $uphost = str_replace('http://', '//', $uphost);
  61. // 生成上传Token
  62. $auth = new \Qiniu\Auth($accessKey, $secretKey);
  63. $token = $auth->uploadToken($bucket);
  64. if ($token) {
  65. $down = input('post.down/d');
  66. if (!empty($down)){
  67. $filePath = UPLOAD_PATH.'soft/';
  68. }else{
  69. $filePath = UPLOAD_PATH.'media/' . date('Ymd/') . session('admin_id') . '-' . dd2char(date("ymdHis") . mt_rand(100, 999));
  70. }
  71. $data = [
  72. 'token' => $token,
  73. 'domain' => $domain,
  74. 'uphost' => $uphost,
  75. 'filePath' => $filePath,
  76. ];
  77. $this->success('获取token成功!', null, $data);
  78. } else {
  79. $this->error('获取token失败!');
  80. }
  81. }
  82. }
  83. //删除
  84. public function deleteQny($filenames='') {
  85. $weappInfo = Db::name('weapp')->where('code','Qiniuyun')->field('id,status,data')->find();
  86. if (empty($weappInfo)) {
  87. $this->error('请先安装配置【七牛云图片加速】插件!', null, ['code'=>-1]);
  88. } else {
  89. $Qiniuyun = json_decode($weappInfo['data'], true);
  90. if (empty($Qiniuyun)) {
  91. $this->error('请先配置【七牛云图片加速】插件!', null, ['code'=>-3]);
  92. } else if (empty($Qiniuyun['domain'])) {
  93. $this->error('请先配置【七牛云图片加速】插件中的域名!', null, ['code'=>-3]);
  94. }
  95. }
  96. if (2 == $Qiniuyun['tcp']) {
  97. $tcp = 'https://';
  98. } else {
  99. $tcp = 'http://';
  100. }
  101. $domain = $tcp.$Qiniuyun['domain'].'/';
  102. $filenames = str_replace($domain,'',$filenames);
  103. //引入七牛云的相关文件
  104. weapp_vendor('Qiniu.src.Qiniu.Auth', 'Qiniuyun');
  105. weapp_vendor('Qiniu.src.Qiniu.Storage.UploadManager', 'Qiniuyun');
  106. require_once ROOT_PATH.'weapp/Qiniuyun/vendor/Qiniu/autoload.php';
  107. // 配置信息
  108. $access_key = $Qiniuyun['access_key'];
  109. $secret_key = $Qiniuyun['secret_key'];
  110. $bucket = $Qiniuyun['bucket'];
  111. $auth = new \Qiniu\Auth($access_key, $secret_key);
  112. $config = new \Qiniu\Config();
  113. $bucketManager = new \Qiniu\Storage\BucketManager($auth, $config);
  114. //删除图片的名称
  115. $key = $filenames;
  116. $err = $bucketManager->delete($bucket, $key);
  117. $this->error($err);
  118. }
  119. }