Upload.php 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260
  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 ;
  25. protected $key;
  26. protected $host;
  27. public function initialize(){
  28. $this->id = config('app.ali_set.Key');
  29. $this->key = config('app.ali_set.secret');
  30. $this->host = config('app.ali_set.host');
  31. }
  32. /**
  33. * @title 文件上传
  34. * @desc 文件上传
  35. * @author qc
  36. * @url /api/upload/upload
  37. * @method GET||POST
  38. * @tag 文件上传
  39. * @header name:Authorization require:1 desc:Token
  40. * @param name:file require:1 desc:文件名
  41. *
  42. */
  43. public function upload()
  44. {
  45. if (!($file = $this->getUploadFile()) || empty($file)) {
  46. $this->error('文件上传异常,文件可能过大或未上传!');
  47. }
  48. if (!$file->checkExt(strtolower(sysconf('storage_local_exts')))) {
  49. $this->error('文件上传类型受限,请在后台配置!');
  50. }
  51. if ($file->checkExt('php,sh')) {
  52. $this->error('可执行文件禁止上传到本地服务器!');
  53. }
  54. $this->safe = boolval(input('safe'));
  55. $this->uptype = $this->getUploadType();
  56. $this->extend = pathinfo($file->getInfo('name'), PATHINFO_EXTENSION);
  57. $name = File::name($file->getPathname(), $this->extend, '', 'md5_file');
  58. $info = File::instance($this->uptype)->save(date('Y-m-d').'/'.$name, file_get_contents($file->getRealPath()), $this->safe);
  59. if (is_array($info) && isset($info['url'])) {
  60. $url = $this->safe ? $name : $info['url'];
  61. $this->success('上传成功',$url);
  62. } else {
  63. $this->error('文件处理失败,请稍候再试!');
  64. }
  65. }
  66. /**
  67. * @title 文件上传 格式二
  68. * @desc 文件上传 格式二
  69. * @author qc
  70. * @url /api/upload/upload
  71. * @method GET||POST
  72. * @tag 文件上传
  73. * @header name:Authorization require:1 desc:Token
  74. * @param name:file require:1 desc:文件名
  75. *
  76. */
  77. public function uploadlay()
  78. {
  79. if (!($file = $this->getUploadFile()) || empty($file)) {
  80. $this->error('文件上传异常,文件可能过大或未上传!');
  81. }
  82. if (!$file->checkExt(strtolower(sysconf('storage_local_exts')))) {
  83. $this->error('文件上传类型受限,请在后台配置!');
  84. }
  85. if ($file->checkExt('php,sh')) {
  86. $this->error('可执行文件禁止上传到本地服务器!');
  87. }
  88. $this->safe = boolval(input('safe'));
  89. $this->uptype = $this->getUploadType();
  90. $this->extend = pathinfo($file->getInfo('name'), PATHINFO_EXTENSION);
  91. $name = File::name($file->getPathname(), $this->extend, '', 'md5_file');
  92. $info = File::instance($this->uptype)->save(date('Y-m-d').'/'.$name, file_get_contents($file->getRealPath()), $this->safe);
  93. if (is_array($info) && isset($info['url'])) {
  94. $url = $this->safe ? $name : $info['url'];
  95. $this->error('上传成功',['src'=>$url]);
  96. } else {
  97. $this->error('文件处理失败,请稍候再试!');
  98. }
  99. }
  100. /**
  101. * @title 文件上传【pdf加密】
  102. * @desc pdf加密
  103. * @author qc
  104. * @url /api/upload/pdfUpload
  105. * @method GET||POST
  106. * @param name:file require:1 desc:文件名
  107. *
  108. */
  109. public function pdfUpload()
  110. {
  111. if (!($file = $this->getUploadFile()) || empty($file)) $this->error('文件上传异常,文件可能过大或未上传!');
  112. if (!$file->checkExt(strtolower(sysconf('storage_local_exts')))) $this->error('文件上传类型受限,请在后台配置!');
  113. if ($file->checkExt('php,sh')) $this->error('可执行文件禁止上传到本地服务器!');
  114. $file_info = $file->getInfo();
  115. $ext = pathinfo($file_info['name'],PATHINFO_EXTENSION);
  116. if(strtolower($ext) !== 'pdf') $this->error('请上传pdf格式文件');
  117. $file_name = pathinfo($file_info['name'],PATHINFO_FILENAME);
  118. $new_name = $file_name.date("Y-m-d H:i:s").'.'.$ext;
  119. $save_path = $_SERVER['DOCUMENT_ROOT'].'/static/pdf/'.$new_name;
  120. move_uploaded_file($file_info['tmp_name'],$save_path);
  121. $res = pdfCurl($save_path);
  122. unlink($save_path);
  123. if(!empty($res) && $res['code'] == 1) $this->success('上传成功',$res['data']);
  124. $this->error('上传失败');
  125. }
  126. /**
  127. * @title 文件上传【pdf加密】
  128. * @desc pdf加密
  129. * @author qc
  130. * @url /api/upload/pdfUploadNew
  131. * @method GET||POST
  132. * @param name:file require:1 desc:文件名
  133. *
  134. */
  135. public function pdfUploadNew()
  136. {
  137. if (!($file = $this->getUploadFile()) || empty($file)) $this->error('文件上传异常,文件可能过大或未上传!');
  138. if (!$file->checkExt(strtolower(sysconf('storage_local_exts')))) $this->error('文件上传类型受限,请在后台配置!');
  139. if ($file->checkExt('php,sh')) $this->error('可执行文件禁止上传到本地服务器!');
  140. $file_info = $file->getInfo();
  141. $ext = pathinfo($file_info['name'],PATHINFO_EXTENSION);
  142. if(strtolower($ext) !== 'pdf') $this->error('请上传pdf格式文件');
  143. $this->safe = boolval(input('safe'));
  144. $this->uptype = $this->getUploadType();
  145. $this->extend = pathinfo($file->getInfo('name'), PATHINFO_EXTENSION);
  146. if(strtolower($this->extend) !== 'pdf') $this->error('请上传pdf格式文件');
  147. $name = File::name($file->getPathname(), $this->extend, '', 'md5_file');
  148. $info = File::instance($this->uptype)->save($name, file_get_contents($file->getRealPath()), $this->safe);
  149. if (is_array($info) && isset($info['url'])) {
  150. $url = $this->safe ? $name : $info['url'];
  151. $pdf_url = pdfCurl($url,2);
  152. //var_dump($pdf_url);
  153. $this->success('上传成功',$pdf_url['data']);
  154. } else {
  155. $this->error('文件处理失败,请稍候再试!');
  156. }
  157. }
  158. /**
  159. * 获取本地文件对象
  160. * @return \think\File
  161. */
  162. private function getUploadFile()
  163. {
  164. try {
  165. return $this->request->file('file');
  166. } catch (\Exception $e) {
  167. $this->error(lang($e->getMessage()));
  168. }
  169. }
  170. /**
  171. * 获取文件上传方式
  172. * @return string
  173. * @throws \think\Exception
  174. * @throws \think\exception\PDOException
  175. */
  176. private function getUploadType()
  177. {
  178. $this->uptype = input('uptype');
  179. if (!in_array($this->uptype, ['local', 'oss', 'qiniu'])) {
  180. $this->uptype = sysconf('storage_type');
  181. }
  182. return $this->uptype;
  183. }
  184. /**
  185. * @title 获取配置
  186. * @desc 获取配置
  187. * @author QGF
  188. * @url /api/Upload/getSignedUrl
  189. * @method GET
  190. * @tag 配置信息
  191. * @param name:type type:string require:1 default:-- desc:
  192. */
  193. public function getSignedUrl(){
  194. $type=$this->request->get('type','video');
  195. $data=$this->getPolicy($type.'/');
  196. $this->success('操作成功',$data);
  197. }
  198. public function getPolicy($path,$maxSize=5000000){
  199. $now = time();
  200. $expire = 600; //设置该policy超时时间是10s. 即这个policy过了这个有效时间,将不能访问
  201. $end = $now + $expire;
  202. $expiration = $this->_gmt_iso8601($end);
  203. $policy = [
  204. 'expiration'=>$expiration,
  205. 'conditions'=>[
  206. ['content-length-range', 1, $maxSize],
  207. ['starts-with', '$key', $path],
  208. ]
  209. ];
  210. $policy = json_encode($policy);
  211. $policy = base64_encode($policy);
  212. $signature = base64_encode(hash_hmac('sha1', $policy, $this->key, true));
  213. $response = array();
  214. $response['OSSAccessKeyId'] = $this->id;
  215. $response['policy'] = $policy;
  216. $response['Signature'] = $signature;
  217. $response['host'] = $this->host;
  218. $response['expire'] = $end;
  219. $response['success_action_status'] = 200;
  220. //这个参数是设置用户上传指定的前缀
  221. $response['key'] = $path;
  222. return $response;
  223. }
  224. protected function _gmt_iso8601($time) {
  225. $dtStr = date("c", $time);
  226. $mydatetime = new \DateTime($dtStr);
  227. $expiration = $mydatetime->format(\DateTime::ISO8601);
  228. $pos = strpos($expiration, '+');
  229. $expiration = substr($expiration, 0, $pos);
  230. return $expiration."Z";
  231. }
  232. public function getSysDirection()
  233. {
  234. $data = [
  235. 'film_notice'=>htmlspecialchars_decode(sysconf('film_notice')),
  236. 'film_direction'=>htmlspecialchars_decode(sysconf('film_direction'))
  237. ];
  238. $this->success('获取成功',$data);
  239. }
  240. }