Upload.php 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://demo.thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  12. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  13. // +----------------------------------------------------------------------
  14. namespace app\api\controller;
  15. use library\File;
  16. /**
  17. * @title OSS对象存储
  18. * @controller Upload
  19. * @group common
  20. */
  21. class Upload extends Base
  22. {
  23. protected $id= 'LTAI5tBUgBoi8dxsgkvBsE4q';
  24. protected $key= 'S3BvVTKNdM7PJDrmW5oIotcrn0KvMI';
  25. protected $host = 'https://xubeiwenhua.oss-cn-beijing.aliyuncs.com';
  26. /**
  27. * @title 文件上传
  28. * @desc 文件上传
  29. * @author qc
  30. * @url /api/Upload/upload
  31. * @method POST
  32. * @tag 文件上传
  33. */
  34. public function upload()
  35. {
  36. if (!($file = $this->getUploadFile()) || empty($file)) {
  37. $this->error('文件上传异常,文件可能过大或未上传!');
  38. }
  39. if (!$file->checkExt(strtolower(sysconf('storage_local_exts')))) {
  40. $this->error('文件上传类型受限,请在后台配置!');
  41. }
  42. if ($file->checkExt('php,sh')) {
  43. $this->error('可执行文件禁止上传到本地服务器!');
  44. }
  45. $this->safe = boolval(input('safe'));
  46. $this->uptype = $this->getUploadType();
  47. $this->extend = pathinfo($file->getInfo('name'), PATHINFO_EXTENSION);
  48. $name = File::name($file->getPathname(), $this->extend, '', 'md5_file');
  49. $info = File::instance($this->uptype)->save($name, file_get_contents($file->getRealPath()), $this->safe);
  50. if (is_array($info) && isset($info['url'])) {
  51. $url = $this->safe ? $name : $info['url'];
  52. $this->success('上传成功',$url);
  53. } else {
  54. $this->error('文件处理失败,请稍候再试!');
  55. }
  56. }
  57. /**
  58. * 获取本地文件对象
  59. * @return \think\File
  60. */
  61. private function getUploadFile()
  62. {
  63. try {
  64. return $this->request->file('file');
  65. } catch (\Exception $e) {
  66. $this->error(lang($e->getMessage()));
  67. }
  68. }
  69. /**
  70. * 获取文件上传方式
  71. * @return string
  72. * @throws \think\Exception
  73. * @throws \think\exception\PDOException
  74. */
  75. private function getUploadType()
  76. {
  77. $this->uptype = input('uptype');
  78. if (!in_array($this->uptype, ['local', 'oss', 'qiniu'])) {
  79. $this->uptype = sysconf('storage_type');
  80. }
  81. return $this->uptype;
  82. }
  83. /**
  84. * @title 获取配置
  85. * @desc 获取配置
  86. * @author QGF
  87. * @url /api/Upload/getSignedUrl
  88. * @method GET
  89. * @tag 配置信息
  90. * @param name:type type:string require:1 default:-- desc:
  91. */
  92. public function getSignedUrl(){
  93. $type=$this->request->get('type');
  94. $data=$this->getPolicy($type.'/');
  95. $this->success('操作成功',$data);
  96. }
  97. public function getPolicy($path,$maxSize=5000000){
  98. $now = time();
  99. $expire = 600; //设置该policy超时时间是10s. 即这个policy过了这个有效时间,将不能访问
  100. $end = $now + $expire;
  101. $expiration = $this->_gmt_iso8601($end);
  102. $policy = [
  103. 'expiration'=>$expiration,
  104. 'conditions'=>[
  105. ['content-length-range', 1, $maxSize],
  106. ['starts-with', '$key', $path],
  107. ]
  108. ];
  109. $policy = json_encode($policy);
  110. $policy = base64_encode($policy);
  111. $signature = base64_encode(hash_hmac('sha1', $policy, $this->key, true));
  112. $response = array();
  113. $response['OSSAccessKeyId'] = $this->id;
  114. $response['policy'] = $policy;
  115. $response['Signature'] = $signature;
  116. $response['host'] = $this->host;
  117. $response['expire'] = $end;
  118. $response['success_action_status'] = 200;
  119. //这个参数是设置用户上传指定的前缀
  120. $response['key'] = $path;
  121. return $response;
  122. }
  123. protected function _gmt_iso8601($time) {
  124. $dtStr = date("c", $time);
  125. $mydatetime = new \DateTime($dtStr);
  126. $expiration = $mydatetime->format(\DateTime::ISO8601);
  127. $pos = strpos($expiration, '+');
  128. $expiration = substr($expiration, 0, $pos);
  129. return $expiration."Z";
  130. }
  131. public function getSysDirection()
  132. {
  133. $data = [
  134. 'film_notice'=>htmlspecialchars_decode(sysconf('film_notice')),
  135. 'film_direction'=>htmlspecialchars_decode(sysconf('film_direction'))
  136. ];
  137. $this->success('获取成功',$data);
  138. }
  139. }