AssetController.php 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  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\controller; //Demo插件英文名,改成你的插件英文就行了
  10. use cmf\controller\PluginBaseController;
  11. use plugins\qiniu\lib\Qiniu;
  12. use think\Validate;
  13. use think\Db;
  14. use Qiniu\Auth;
  15. use Qiniu\Storage\UploadManager;
  16. use Qiniu\Http\Client;
  17. class AssetController extends PluginBaseController
  18. {
  19. function getUrl()
  20. {
  21. $qiniu = new Qiniu([]);
  22. $fileHash = $this->request->param('file_hash');
  23. $filname = $this->request->param('filename');
  24. $fileType = $this->request->param('filetype');
  25. $suffix = cmf_get_file_extension($filname);
  26. $file = $fileHash . ".{$suffix}";
  27. $previewUrl = $fileType == 'image' ? $qiniu->getPreviewUrl($file) : $qiniu->getFileDownloadUrl($file);
  28. $url = $fileType == 'image' ? $qiniu->getImageUrl($file, 'watermark') : $qiniu->getFileDownloadUrl($file);
  29. return $this->success('success', null, [
  30. 'url' => $url,
  31. 'preview_url' => $previewUrl,
  32. 'filepath' => $file
  33. ]);
  34. }
  35. public function saveFile()
  36. {
  37. $userId = cmf_get_current_admin_id();
  38. $userId = $userId ? $userId : cmf_get_current_user_id();
  39. if (empty($userId)) {
  40. $this->error('error');
  41. }
  42. $validate = new Validate([
  43. 'filename' => 'require',
  44. 'file_key' => 'require',
  45. ]);
  46. $data = $this->request->param();
  47. $result = $validate->check($data);
  48. if ($result !== true) {
  49. $this->error($validate);
  50. }
  51. $fileKey = $data['file_key'];
  52. $suffix = cmf_get_file_extension($data['filename']);
  53. $config = $this->getPlugin()->getConfig();
  54. $accessKey = $config['accessKey'];
  55. $secretKey = $config['secretKey'];
  56. $auth = new Auth($accessKey, $secretKey);
  57. $client = new Client();
  58. $encodedEntryURISrc = \Qiniu\base64_urlSafeEncode($config['bucket'] . ':' . $fileKey);
  59. $encodedEntryURIDest = \Qiniu\base64_urlSafeEncode($config['bucket'] . ':' . $fileKey . ".{$suffix}");
  60. $signingStr = "/move/{$encodedEntryURISrc}/{$encodedEntryURIDest}";
  61. $authorization = $auth->signRequest($signingStr, '');
  62. $url = 'http://rs.qiniu.com/' . $signingStr;
  63. $response = $client->post($url, null, ['Authorization' => 'QBox ' . $authorization]);
  64. if ($response->statusCode == 612) {
  65. $this->error('文件不存在!');
  66. }
  67. if ($response->statusCode == 599) {
  68. $this->error('文件保存失败!');
  69. }
  70. $signingStr = "/stat/{$encodedEntryURIDest}";
  71. $authorization = $auth->signRequest($signingStr, '');
  72. $url = 'http://rs.qiniu.com/' . $signingStr;
  73. $response = $client->get($url, ['Authorization' => 'QBox ' . $authorization]);
  74. if ($response->statusCode != 200) {
  75. $this->error('操作失败!');
  76. }
  77. $fileInfo = $response->json();
  78. $findAsset = Db::name('asset')->where('file_key', $fileKey)->find();
  79. if (empty($findAsset)) {
  80. Db::name('asset')->insert([
  81. 'user_id' => $userId,
  82. 'file_size' => $fileInfo['fsize'],
  83. 'filename' => $data['filename'],
  84. 'create_time' => time(),
  85. 'file_key' => $fileKey,
  86. 'file_path' => $fileKey . ".{$suffix}",
  87. 'suffix' => $suffix
  88. ]);
  89. }
  90. $this->success('success');
  91. }
  92. }