Upload.php 5.1 KB

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