Alioss.php 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. <?php
  2. namespace addons\alioss;
  3. use app\common\model\Attachment;
  4. use think\Addons;
  5. /**
  6. * 阿里云OSS上传插件
  7. */
  8. class Alioss extends Addons
  9. {
  10. /**
  11. * 插件安装方法
  12. * @return bool
  13. */
  14. public function install()
  15. {
  16. return true;
  17. }
  18. /**
  19. * 插件卸载方法
  20. * @return bool
  21. */
  22. public function uninstall()
  23. {
  24. return true;
  25. }
  26. /**
  27. * 加载配置
  28. */
  29. public function uploadConfigInit(&$upload)
  30. {
  31. $config = $this->getConfig();
  32. if ($config['uploadmode'] === 'client')
  33. {
  34. $upload = [
  35. 'cdnurl' => $config['cdnurl'],
  36. 'uploadurl' => 'http://' . $config['bucket'] . '.' . $config['endpoint'],
  37. 'bucket' => $config['bucket'],
  38. 'maxsize' => $config['maxsize'],
  39. 'mimetype' => $config['mimetype'],
  40. 'multipart' => [],
  41. 'multiple' => $config['multiple'] ? true : false,
  42. 'storage' => 'alioss',
  43. 'chunking' => (bool)($config['chunking']??false)
  44. ];
  45. }
  46. else
  47. {
  48. $upload = array_merge($upload, [
  49. 'maxsize' => $config['maxsize'],
  50. 'mimetype' => $config['mimetype'],
  51. 'multiple' => $config['multiple'] ? true : false,
  52. ]);
  53. }
  54. }
  55. /**
  56. * 上传成功后
  57. */
  58. public function uploadAfter(Attachment $attachment)
  59. {
  60. $config = $this->getConfig();
  61. if ($config['uploadmode']/* === 'server'*/)
  62. {
  63. $file = ROOT_PATH . 'public' . str_replace('/', DIRECTORY_SEPARATOR, parse_url($attachment->url,PHP_URL_PATH));
  64. $name = basename($file);
  65. $md5 = md5_file($file);
  66. $auth = new \addons\alioss\library\Auth();
  67. $params = $auth->params($name, $md5, false);
  68. $multipart = [
  69. [
  70. 'name' => 'key',
  71. 'contents' => $params['key'],
  72. ],
  73. [
  74. 'name' => 'success_action_status',
  75. 'contents' => 200,
  76. ],
  77. [
  78. 'name' => 'OSSAccessKeyId',
  79. 'contents' => $params['id'],
  80. ],
  81. [
  82. 'name' => 'policy',
  83. 'contents' => $params['policy'],
  84. ],
  85. [
  86. 'name' => 'Signature',
  87. 'contents' => $params['signature'],
  88. ],
  89. [
  90. 'name' => 'file',
  91. 'contents' => fopen($file, 'r'),
  92. ],
  93. ];
  94. try
  95. {
  96. $uploadurl = 'http://' . $config['bucket'] . '.' . $config['endpoint'];
  97. $client = new \GuzzleHttp\Client();
  98. // $res = $client->request('POST', $uploadurl, [
  99. // 'multipart' => $multipart,
  100. // 'headers' => ['Accept-Encoding' => 'gzip'],
  101. // ]);
  102. $multipartStream = new \GuzzleHttp\Psr7\MultipartStream($multipart);
  103. $boundary = $multipartStream->getBoundary();
  104. $body = (string) $multipartStream;
  105. //默认的request方法会添加Content-Length字段,但Alioss不识别,所以需要移除
  106. $body = preg_replace('/Content\-Length:\s(\d+)[\r\n]+Content\-Type/i', "Content-Type", $body);
  107. $params = [
  108. 'headers' => [
  109. 'Connection' => 'close',
  110. 'Content-Type' => 'multipart/form-data; boundary=' . $boundary,
  111. ],
  112. 'body' => $body,
  113. ];
  114. $res = $client->request('POST', $uploadurl, $params);
  115. $code = $res->getStatusCode();
  116. //成功不做任何操作
  117. if($config['uploadmode']=='client'){
  118. if($attachment->id) {
  119. $attachment->delete();
  120. }
  121. unlink($file);
  122. }
  123. }
  124. catch (\GuzzleHttp\Exception\ClientException $e)
  125. {
  126. echo json_encode(['code' => 0, 'msg' => '无法上传到远程服务器,错误:' . $e->getMessage()]);
  127. exit;
  128. }
  129. }
  130. }
  131. }