Common.php 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  1. <?php
  2. namespace app\api\controller;
  3. use app\common\controller\Api;
  4. use app\common\exception\UploadException;
  5. use app\common\library\Upload;
  6. use app\common\model\Area;
  7. use app\common\model\Version;
  8. use app\admin\model\books\Certificate; //体验卡
  9. use fast\Random;
  10. use think\captcha\Captcha;
  11. use think\Config;
  12. use think\Db;
  13. use dh2y\qrcode\QRcode;
  14. use think\Hook;
  15. /**
  16. * 公共接口
  17. */
  18. class Common extends Api
  19. {
  20. protected $noNeedLogin = ['init', 'captcha','getQRcode','expireCertificate','getHelpConfig'];
  21. protected $noNeedRight = '*';
  22. public function _initialize()
  23. {
  24. if (isset($_SERVER['HTTP_ORIGIN'])) {
  25. header('Access-Control-Expose-Headers: __token__');//跨域让客户端获取到
  26. }
  27. //跨域检测
  28. check_cors_request();
  29. if (!isset($_COOKIE['PHPSESSID'])) {
  30. Config::set('session.id', $this->request->server("HTTP_SID"));
  31. }
  32. parent::_initialize();
  33. }
  34. /**
  35. * 加载初始化
  36. *
  37. * @param string $version 版本号
  38. * @param string $lng 经度
  39. * @param string $lat 纬度
  40. */
  41. public function init()
  42. {
  43. if ($version = $this->request->request('version')) {
  44. $lng = $this->request->request('lng');
  45. $lat = $this->request->request('lat');
  46. //配置信息
  47. $upload = Config::get('upload');
  48. //如果非服务端中转模式需要修改为中转
  49. if ($upload['storage'] != 'local' && isset($upload['uploadmode']) && $upload['uploadmode'] != 'server') {
  50. //临时修改上传模式为服务端中转
  51. set_addon_config($upload['storage'], ["uploadmode" => "server"], false);
  52. $upload = \app\common\model\Config::upload();
  53. // 上传信息配置后
  54. Hook::listen("upload_config_init", $upload);
  55. $upload = Config::set('upload', array_merge(Config::get('upload'), $upload));
  56. }
  57. $upload['cdnurl'] = $upload['cdnurl'] ? $upload['cdnurl'] : cdnurl('', true);
  58. $upload['uploadurl'] = preg_match("/^((?:[a-z]+:)?\/\/)(.*)/i", $upload['uploadurl']) ? $upload['uploadurl'] : url($upload['storage'] == 'local' ? '/api/common/upload' : $upload['uploadurl'], '', false, true);
  59. $content = [
  60. 'citydata' => Area::getCityFromLngLat($lng, $lat),
  61. 'versiondata' => Version::check($version),
  62. 'uploaddata' => $upload,
  63. 'coverdata' => Config::get("cover"),
  64. ];
  65. $this->success('', $content);
  66. } else {
  67. $this->error(__('Invalid parameters'));
  68. }
  69. }
  70. /**
  71. * 上传文件
  72. * @ApiMethod (POST)
  73. * @param File $file 文件流
  74. */
  75. public function upload()
  76. {
  77. Config::set('default_return_type', 'json');
  78. //必须设定cdnurl为空,否则cdnurl函数计算错误
  79. Config::set('upload.cdnurl', '');
  80. $chunkid = $this->request->post("chunkid");
  81. if ($chunkid) {
  82. if (!Config::get('upload.chunking')) {
  83. $this->error(__('Chunk file disabled'));
  84. }
  85. $action = $this->request->post("action");
  86. $chunkindex = $this->request->post("chunkindex/d");
  87. $chunkcount = $this->request->post("chunkcount/d");
  88. $filename = $this->request->post("filename");
  89. $method = $this->request->method(true);
  90. if ($action == 'merge') {
  91. $attachment = null;
  92. //合并分片文件
  93. try {
  94. $upload = new Upload();
  95. $attachment = $upload->merge($chunkid, $chunkcount, $filename);
  96. } catch (UploadException $e) {
  97. $this->error($e->getMessage());
  98. }
  99. $this->success(__('Uploaded successful'), ['url' => $attachment->url, 'fullurl' => cdnurl($attachment->url, true)]);
  100. } elseif ($method == 'clean') {
  101. //删除冗余的分片文件
  102. try {
  103. $upload = new Upload();
  104. $upload->clean($chunkid);
  105. } catch (UploadException $e) {
  106. $this->error($e->getMessage());
  107. }
  108. $this->success();
  109. } else {
  110. //上传分片文件
  111. //默认普通上传文件
  112. $file = $this->request->file('file');
  113. try {
  114. $upload = new Upload($file);
  115. $upload->chunk($chunkid, $chunkindex, $chunkcount);
  116. } catch (UploadException $e) {
  117. $this->error($e->getMessage());
  118. }
  119. $this->success();
  120. }
  121. } else {
  122. $attachment = null;
  123. //默认普通上传文件
  124. $file = $this->request->file('file');
  125. try {
  126. $upload = new Upload($file);
  127. $attachment = $upload->upload();
  128. } catch (UploadException $e) {
  129. $this->error($e->getMessage());
  130. }
  131. $this->success(__('Uploaded successful'), ['url' => $attachment->url, 'fullurl' => cdnurl($attachment->url, true)]);
  132. }
  133. }
  134. /**
  135. * 验证码
  136. * @param $id
  137. * @return \think\Response
  138. */
  139. public function captcha($id = "")
  140. {
  141. \think\Config::set([
  142. 'captcha' => array_merge(config('captcha'), [
  143. 'fontSize' => 44,
  144. 'imageH' => 150,
  145. 'imageW' => 350,
  146. ])
  147. ]);
  148. $captcha = new Captcha((array)Config::get('captcha'));
  149. return $captcha->entry($id);
  150. }
  151. /**
  152. * 获取帮助中心 关于我们
  153. * @param $id
  154. * @return \think\Response
  155. */
  156. public function getHelpConfig(){
  157. $list = Db::name('config')->where('name','in','help,about_us,privacy_services,service_agreement')->field('name','value')->select();
  158. // $arr = [
  159. // 'help' => $list['help'],
  160. // 'about_us' => $list['about_us'],
  161. // ];
  162. $this->success('操作成功',$list);
  163. }
  164. /**
  165. * 体验卡自动过期
  166. * @param $id
  167. * @return \think\Response
  168. */
  169. public function expireCertificate(){
  170. $Certificate = new Certificate();
  171. $date = date('Y-m-d H:i:s');
  172. $arr = [
  173. 'is_expire' => 0
  174. ];
  175. $Certificate->where('status',1)
  176. ->where('is_deleted',1)
  177. ->where('free_end_time','<',$date)
  178. ->update($arr);
  179. $this->success('执行成功');
  180. }
  181. /**
  182. * 生成二维码
  183. * @param $id
  184. * @return \think\Response
  185. */
  186. public function getQRcode($url = 'www.baidu.com'){
  187. $code = new QRcode();
  188. $res = $code->png('https://www.baidu.com/',false, 10)->getPath();
  189. //$data = json_decode($res);
  190. // dump($res);
  191. return cdnurl($res,true);
  192. }
  193. }