Common.php 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258
  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\Selection;
  9. use app\common\model\Version;
  10. use fast\Random;
  11. use think\Config;
  12. use think\Hook;
  13. /**
  14. * 公共接口
  15. */
  16. class Common extends Api
  17. {
  18. protected $noNeedLogin = ['init','selection','category','selection','system_configuration'];
  19. protected $noNeedRight = '*';
  20. /**
  21. * 加载初始化
  22. *
  23. * @param string $version 版本号
  24. * @param string $lng 经度
  25. * @param string $lat 纬度
  26. */
  27. public function init()
  28. {
  29. if ($version = $this->request->request('version')) {
  30. $lng = $this->request->request('lng');
  31. $lat = $this->request->request('lat');
  32. //配置信息
  33. $upload = Config::get('upload');
  34. //如果非服务端中转模式需要修改为中转
  35. if ($upload['storage'] != 'local' && isset($upload['uploadmode']) && $upload['uploadmode'] != 'server') {
  36. //临时修改上传模式为服务端中转
  37. set_addon_config($upload['storage'], ["uploadmode" => "server"], false);
  38. $upload = \app\common\model\Config::upload();
  39. // 上传信息配置后
  40. Hook::listen("upload_config_init", $upload);
  41. $upload = Config::set('upload', array_merge(Config::get('upload'), $upload));
  42. }
  43. $upload['cdnurl'] = $upload['cdnurl'] ? $upload['cdnurl'] : cdnurl('', true);
  44. $upload['uploadurl'] = preg_match("/^((?:[a-z]+:)?\/\/)(.*)/i", $upload['uploadurl']) ? $upload['uploadurl'] : url($upload['storage'] == 'local' ? '/api/common/upload' : $upload['uploadurl'], '', false, true);
  45. $content = [
  46. 'citydata' => Area::getCityFromLngLat($lng, $lat),
  47. 'versiondata' => Version::check($version),
  48. 'uploaddata' => $upload,
  49. 'coverdata' => Config::get("cover"),
  50. ];
  51. $this->success('', $content);
  52. } else {
  53. $this->error(__('Invalid parameters'));
  54. }
  55. }
  56. /**
  57. * 上传文件
  58. * @ApiMethod (POST)
  59. * @param File $file 文件流
  60. */
  61. public function upload()
  62. {
  63. Config::set('default_return_type', 'json');
  64. //必须设定cdnurl为空,否则cdnurl函数计算错误
  65. Config::set('upload.cdnurl', '');
  66. $chunkid = $this->request->post("chunkid");
  67. if ($chunkid) {
  68. if (!Config::get('upload.chunking')) {
  69. $this->error(__('Chunk file disabled'));
  70. }
  71. $action = $this->request->post("action");
  72. $chunkindex = $this->request->post("chunkindex/d");
  73. $chunkcount = $this->request->post("chunkcount/d");
  74. $filename = $this->request->post("filename");
  75. $method = $this->request->method(true);
  76. if ($action == 'merge') {
  77. $attachment = null;
  78. //合并分片文件
  79. try {
  80. $upload = new Upload();
  81. $attachment = $upload->merge($chunkid, $chunkcount, $filename);
  82. } catch (UploadException $e) {
  83. $this->error($e->getMessage());
  84. }
  85. $this->success(__('Uploaded successful'), ['url' => $attachment->url, 'fullurl' => cdnurl($attachment->url, true)]);
  86. } elseif ($method == 'clean') {
  87. //删除冗余的分片文件
  88. try {
  89. $upload = new Upload();
  90. $upload->clean($chunkid);
  91. } catch (UploadException $e) {
  92. $this->error($e->getMessage());
  93. }
  94. $this->success();
  95. } else {
  96. //上传分片文件
  97. //默认普通上传文件
  98. $file = $this->request->file('file');
  99. try {
  100. $upload = new Upload($file);
  101. $upload->chunk($chunkid, $chunkindex, $chunkcount);
  102. } catch (UploadException $e) {
  103. $this->error($e->getMessage());
  104. }
  105. $this->success();
  106. }
  107. } else {
  108. $attachment = null;
  109. //默认普通上传文件
  110. $file = $this->request->file('file');
  111. try {
  112. $upload = new Upload($file);
  113. $attachment = $upload->upload();
  114. } catch (UploadException $e) {
  115. $this->error($e->getMessage());
  116. }
  117. $this->success(__('Uploaded successful'), ['url' => $attachment->url, 'fullurl' => cdnurl($attachment->url, true)]);
  118. }
  119. }
  120. /**
  121. * 获取系统配置
  122. * @ApiParams (name='site',description='officialwx官方微信 money狗粮充值配置 score喜欢数量充值配置 PrivacyAgreement隐私协议 VerifyAuthorization验证授权书 用户服务协议UserServiceAgreement 关于我们AboutUs 狗粮用户协议DogFoodUserAgreement')
  123. */
  124. public function system_configuration(){
  125. $this->success('请求成功',config('site.'.input('site')));
  126. }
  127. /**
  128. * 获取分类
  129. * @ApiParams (name='type',description='education学历分类 tag标签')
  130. */
  131. public function category(){
  132. $this->success('请求成功',Category::where('type',input('type'))->select());
  133. }
  134. /**
  135. * wechat支付
  136. */
  137. /* public function pay(){
  138. echo \addons\epay\library\Service::submitOrder("99.9", "订单号", "wechat", "订单标题", "回调地址", "返回地址", "支付方法");
  139. $params = [
  140. 'amount'=>"99.9",
  141. 'orderid'=>"订单号",
  142. 'type'=>"wechat",
  143. 'title'=>"订单标题",
  144. 'notifyurl'=>"回调地址",
  145. 'returnurl'=>"返回地址",
  146. 'method'=>"mp",
  147. 'openid'=>"用户的OpenID"
  148. ];
  149. echo \addons\epay\library\Service::submitOrder($params);
  150. }*/
  151. /**
  152. * 生成订单号
  153. * @return string
  154. */
  155. function getOrderId()
  156. {
  157. return date('Ymd') . str_pad(mt_rand(1, 99999), 5, '0', STR_PAD_LEFT);
  158. }
  159. /**
  160. * 获取openid
  161. * @ApiParams (name="code")
  162. */
  163. function getOpenid($code_ = ''){
  164. $code = $code_;
  165. $appid = 'wx5e111b790c719cae';
  166. $secret = 'a4e2a6d2a4fd06bd9e4ba279fd95e2d8';
  167. $get_token_url = 'https://api.weixin.qq.com/sns/oauth2/access_token?appid='.$appid.'&secret='.$secret.'&code='.$code.'&grant_type=authorization_code';
  168. $ch = curl_init();
  169. curl_setopt($ch,CURLOPT_URL,$get_token_url);
  170. curl_setopt($ch,CURLOPT_HEADER,0);
  171. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1 );
  172. curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 10);
  173. $res = curl_exec($ch);
  174. curl_close($ch);
  175. $json_obj = json_decode($res,true);
  176. if($json_obj['openid'])return $json_obj['openid'];
  177. $this->error('0',$json_obj);
  178. }
  179. /**
  180. * 选择项
  181. * @ApiParams (name="type",description="1年龄 2身高 3计划结婚")
  182. */
  183. public function selection(){
  184. $this->success('',Selection::all(['type'=>input('type'),'status'=>1]));
  185. }
  186. /**
  187. * 获取所有地区
  188. * @return void
  189. * @throws \think\db\exception\DataNotFoundException
  190. * @throws \think\db\exception\ModelNotFoundException
  191. * @throws \think\exception\DbException
  192. */
  193. public function getAllArea()
  194. {
  195. $field = ['id', 'pid', 'shortname', 'name', 'first'];
  196. $list = Area::with(['children' => function ($query) use ($field) {
  197. $query->field($field)->with(['children' => function ($query) use ($field) {
  198. $query->field($field);
  199. }]);
  200. }])
  201. ->where('pid', 0)->field($field)->select();
  202. $this->success('获取成功', $list);
  203. }
  204. /**
  205. * 获取所有的省市
  206. * @return void
  207. * @throws \think\db\exception\DataNotFoundException
  208. * @throws \think\db\exception\ModelNotFoundException
  209. * @throws \think\exception\DbException
  210. */
  211. public function get_area_city()
  212. {
  213. $field = ['id', 'pid', 'shortname', 'name', 'first'];
  214. $list = Area::with(['children' => function ($query) use ($field) {
  215. $query->field($field);
  216. }])
  217. ->where('pid', 0)->field($field)->select();
  218. $this->success('获取成功', $list);
  219. }
  220. /**
  221. * 根据城市id获取下一级
  222. * @ApiMethod (GET)
  223. * @ApiParams (name="pid", type="string", description="城市id")
  224. */
  225. public function get_area()
  226. {
  227. $pid = $this->request->get('pid', 0);
  228. $field = ['id', 'pid', 'shortname', 'name'];
  229. $list = Area::where('pid', $pid)->field($field)->select();
  230. $this->success('获取成功', $list);
  231. }
  232. }