QiniuPlugin.php 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkCMF [ WE CAN DO IT MORE SIMPLE ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2013-2018 http://www.thinkcmf.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Author: Dean <zxxjjforever@163.com>
  8. // +----------------------------------------------------------------------
  9. namespace plugins\qiniu;
  10. use cmf\lib\Plugin;
  11. use Qiniu\Auth;
  12. class QiniuPlugin extends Plugin
  13. {
  14. public $info = [
  15. 'name' => 'Qiniu',
  16. 'title' => '七牛云存储',
  17. 'description' => 'ThinkCMF七牛专享优惠码:507670e8',
  18. 'status' => 1,
  19. 'author' => 'ThinkCMF',
  20. 'version' => '1.0.1'
  21. ];
  22. public $hasAdmin = 0;//插件是否有后台管理界面
  23. // 插件安装
  24. public function install()
  25. {
  26. $storageOption = cmf_get_option('storage');
  27. if (empty($storageOption)) {
  28. $storageOption = [];
  29. }
  30. $storageOption['storages']['Qiniu'] = ['name' => '七牛云存储', 'driver' => '\\plugins\\qiniu\\lib\\Qiniu'];
  31. cmf_set_option('storage', $storageOption);
  32. return true;//安装成功返回true,失败false
  33. }
  34. // 插件卸载
  35. public function uninstall()
  36. {
  37. $storageOption = cmf_get_option('storage');
  38. if (empty($storageOption)) {
  39. $storageOption = [];
  40. }
  41. unset($storageOption['storages']['Qiniu']);
  42. cmf_set_option('storage', $storageOption);
  43. return true;//卸载成功返回true,失败false
  44. }
  45. public function fetchUploadView()
  46. {
  47. $tab = request()->param('tab');
  48. if ($tab == 'cloud') {
  49. $config = $this->getConfig();
  50. $accessKey = $config['accessKey'];
  51. $secretKey = $config['secretKey'];
  52. $zone = $config['zone'];
  53. $uploadHost = 'upload.qiniup.com';
  54. if (!empty($zone) && $zone != 'z0') {
  55. $uploadHost = "upload-{$zone}.qiniup.com";
  56. }
  57. $auth = new Auth($accessKey, $secretKey);
  58. $token = $auth->uploadToken($config['bucket']);
  59. $this->assign('upload_host', $uploadHost);
  60. $this->assign('qiniu_up_token', $token);
  61. $content = $this->fetch('upload');
  62. } else {
  63. $content = "has_cloud_storage";
  64. }
  65. return $content;
  66. }
  67. public function cloudStorageTab(&$param)
  68. {
  69. }
  70. }