Common.php 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  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\Category;
  8. use app\common\model\Version;
  9. use fast\Random;
  10. use think\Config;
  11. use think\Hook;
  12. /**
  13. * 公共接口
  14. */
  15. class Common extends Api
  16. {
  17. protected $noNeedLogin = ['init'];
  18. protected $noNeedRight = '*';
  19. /**
  20. * 加载初始化
  21. *
  22. * @param string $version 版本号
  23. * @param string $lng 经度
  24. * @param string $lat 纬度
  25. */
  26. public function init()
  27. {
  28. if ($version = $this->request->request('version')) {
  29. $lng = $this->request->request('lng');
  30. $lat = $this->request->request('lat');
  31. //配置信息
  32. $upload = Config::get('upload');
  33. //如果非服务端中转模式需要修改为中转
  34. if ($upload['storage'] != 'local' && isset($upload['uploadmode']) && $upload['uploadmode'] != 'server') {
  35. //临时修改上传模式为服务端中转
  36. set_addon_config($upload['storage'], ["uploadmode" => "server"], false);
  37. $upload = \app\common\model\Config::upload();
  38. // 上传信息配置后
  39. Hook::listen("upload_config_init", $upload);
  40. $upload = Config::set('upload', array_merge(Config::get('upload'), $upload));
  41. }
  42. $upload['cdnurl'] = $upload['cdnurl'] ? $upload['cdnurl'] : cdnurl('', true);
  43. $upload['uploadurl'] = preg_match("/^((?:[a-z]+:)?\/\/)(.*)/i", $upload['uploadurl']) ? $upload['uploadurl'] : url($upload['storage'] == 'local' ? '/api/common/upload' : $upload['uploadurl'], '', false, true);
  44. $content = [
  45. 'citydata' => Area::getCityFromLngLat($lng, $lat),
  46. 'versiondata' => Version::check($version),
  47. 'uploaddata' => $upload,
  48. 'coverdata' => Config::get("cover"),
  49. ];
  50. $this->success('', $content);
  51. } else {
  52. $this->error(__('Invalid parameters'));
  53. }
  54. }
  55. /**
  56. * 上传文件
  57. * @ApiMethod (POST)
  58. * @param File $file 文件流
  59. */
  60. public function upload()
  61. {
  62. Config::set('default_return_type', 'json');
  63. //必须设定cdnurl为空,否则cdnurl函数计算错误
  64. Config::set('upload.cdnurl', '');
  65. $chunkid = $this->request->post("chunkid");
  66. if ($chunkid) {
  67. if (!Config::get('upload.chunking')) {
  68. $this->error(__('Chunk file disabled'));
  69. }
  70. $action = $this->request->post("action");
  71. $chunkindex = $this->request->post("chunkindex/d");
  72. $chunkcount = $this->request->post("chunkcount/d");
  73. $filename = $this->request->post("filename");
  74. $method = $this->request->method(true);
  75. if ($action == 'merge') {
  76. $attachment = null;
  77. //合并分片文件
  78. try {
  79. $upload = new Upload();
  80. $attachment = $upload->merge($chunkid, $chunkcount, $filename);
  81. } catch (UploadException $e) {
  82. $this->error($e->getMessage());
  83. }
  84. $this->success(__('Uploaded successful'), ['url' => $attachment->url, 'fullurl' => cdnurl($attachment->url, true)]);
  85. } elseif ($method == 'clean') {
  86. //删除冗余的分片文件
  87. try {
  88. $upload = new Upload();
  89. $upload->clean($chunkid);
  90. } catch (UploadException $e) {
  91. $this->error($e->getMessage());
  92. }
  93. $this->success();
  94. } else {
  95. //上传分片文件
  96. //默认普通上传文件
  97. $file = $this->request->file('file');
  98. try {
  99. $upload = new Upload($file);
  100. $upload->chunk($chunkid, $chunkindex, $chunkcount);
  101. } catch (UploadException $e) {
  102. $this->error($e->getMessage());
  103. }
  104. $this->success();
  105. }
  106. } else {
  107. $attachment = null;
  108. //默认普通上传文件
  109. $file = $this->request->file('file');
  110. try {
  111. $upload = new Upload($file);
  112. $attachment = $upload->upload();
  113. } catch (UploadException $e) {
  114. $this->error($e->getMessage());
  115. }
  116. $this->success(__('Uploaded successful'), ['url' => $attachment->url, 'fullurl' => cdnurl($attachment->url, true)]);
  117. }
  118. }
  119. /**
  120. * 获取系统配置
  121. * @param string $site money 狗粮充值配置
  122. */
  123. public function system_configuration(){
  124. $this->success('请求成功',config('site.'.input('site')));
  125. }
  126. /**
  127. * 获取分类
  128. * @param string $type education学历分类 tag标签
  129. */
  130. public function category(){
  131. $this->success('请求成功',Category::where('type',input('type'))->select());
  132. }
  133. /**
  134. * wechat支付
  135. */
  136. /* public function pay(){
  137. echo \addons\epay\library\Service::submitOrder("99.9", "订单号", "wechat", "订单标题", "回调地址", "返回地址", "支付方法");
  138. $params = [
  139. 'amount'=>"99.9",
  140. 'orderid'=>"订单号",
  141. 'type'=>"wechat",
  142. 'title'=>"订单标题",
  143. 'notifyurl'=>"回调地址",
  144. 'returnurl'=>"返回地址",
  145. 'method'=>"mp",
  146. 'openid'=>"用户的OpenID"
  147. ];
  148. echo \addons\epay\library\Service::submitOrder($params);
  149. }*/
  150. /**
  151. * 生成订单号
  152. * @return string
  153. */
  154. function getOrderId()
  155. {
  156. return date('Ymd') . str_pad(mt_rand(1, 99999), 5, '0', STR_PAD_LEFT);
  157. }
  158. /**
  159. * 获取openid
  160. */
  161. function getOpenid($code_ = ''){
  162. $code = $code_;
  163. $appid = 'wx5e111b790c719cae';
  164. $secret = 'a4e2a6d2a4fd06bd9e4ba279fd95e2d8';
  165. $get_token_url = 'https://api.weixin.qq.com/sns/oauth2/access_token?appid='.$appid.'&secret='.$secret.'&code='.$code.'&grant_type=authorization_code';
  166. $ch = curl_init();
  167. curl_setopt($ch,CURLOPT_URL,$get_token_url);
  168. curl_setopt($ch,CURLOPT_HEADER,0);
  169. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1 );
  170. curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 10);
  171. $res = curl_exec($ch);
  172. curl_close($ch);
  173. $json_obj = json_decode($res,true);
  174. if($json_obj['openid'])return $json_obj['openid'];
  175. $this->error('0',$json_obj);
  176. }
  177. }