Publics.php 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. <?php
  2. namespace app\api\controller;
  3. use think\cache\driver\Redis;
  4. use think\Db;
  5. use think\facade\Validate;
  6. use think\Request;
  7. use OSS\OssClient;
  8. use OSS\Core\OssException;
  9. use Zxing\Qrcode\Decoder\DataBlock;
  10. /**
  11. * @title 公共类
  12. * @controller Publics
  13. */
  14. class Publics extends Base
  15. {
  16. /**
  17. * @title 上传图片
  18. * @desc 上传图片
  19. * @url /api/Publics/uploadLocality
  20. * @method POST
  21. * @tag 基础
  22. *
  23. * @param name:file type:file require:1 desc:上传
  24. * @return name:data@url type:string desc:图片地址
  25. **/
  26. public function uploadLocality(){
  27. $file = request()->file('file');
  28. $dir = dirname(realpath(dirname($_SERVER['SCRIPT_FILENAME']))) . '/public/upload';
  29. if(!file_exists($dir)){
  30. //检查是否有该文件夹,如果没有就创建,并给予最高权限
  31. mkdir($dir, 0700,true);
  32. }
  33. $info = $file->move($dir);
  34. $newName = $info->getSaveName();
  35. $data['url'] = 'http://'.$_SERVER['SERVER_NAME']."/upload/{$newName}";
  36. $this->success('上传成功',$data);
  37. }
  38. /**
  39. * @title 获取系统配置
  40. * @desc 获取系统配置
  41. * @url /api/Publics/config_info
  42. * @method POST
  43. * @tag 基础
  44. *
  45. * @return name:agreement type:string desc:使用条款
  46. * @return name:privacy type:string desc:隐私协议
  47. * @return name:platform_agreement type:string desc:违规处罚
  48. * @return name:about_us type:string desc:关于我们
  49. * @return name:registration_agreement type:string desc:用户注册协议
  50. * @return name:terms_service type:string desc:联通统一认证服务条款
  51. * @return name:chain_on_query type:string desc:链上查询
  52. * @return name:examples_illustrate type:string desc:转赠说明
  53. * @return name:android_version type:string desc:安卓当前版本号
  54. * @return name:android_package type:string desc:安卓包地址
  55. * @return name:ios_package type:string desc:ios地址
  56. * @return name:newbie_guide type:string desc:新手指南
  57. * @return name:invite_rules type:string desc:邀请规则
  58. * @return name:service type:string desc:客服
  59. * @return name:advance_minutes type:string desc:提前抢购时间(分钟)
  60. * @return name:share_poster type:string desc:分享海报
  61. * @return name:secondary_sell_switch type:int desc:二级市场商品出售开关(1开启,0关闭)
  62. * @return name:withdraw_switch type:int desc:提现开关(1开启,0关闭)
  63. **/
  64. public function config_info(){
  65. $nameArray = [
  66. 'agreement',
  67. 'privacy',
  68. 'platform_agreement',
  69. 'newbie_guide',
  70. 'invite_rules',
  71. 'service',
  72. 'about_us',
  73. 'registration_agreement',
  74. 'terms_service',
  75. 'chain_on_query',
  76. 'examples_illustrate',
  77. 'android_version',
  78. 'android_package',
  79. 'ios_package',
  80. 'free_lucky_number',
  81. 'lucky_recharge_price',
  82. 'service_fee',
  83. 'royalties',
  84. 'advance_minutes',
  85. 'share_poster',
  86. 'secondary_sell_switch',
  87. 'withdraw_switch',
  88. 'turnover_switch',
  89. ];
  90. $array = getConfig($nameArray);
  91. $this->success('成功',$array);
  92. }
  93. /**
  94. * @title 获取分享的签名
  95. * @desc 获取分享的签名
  96. * @url /api/Publics/getWechatSign
  97. * @method POST
  98. * @tag 基础
  99. *
  100. **/
  101. public function getWechatSign(){
  102. $urls = input('url');
  103. $appid = 'wx8e47a12d0a1c007f';
  104. $secret = 'f19bfac2108af3aee75df0a31a1fee1c';
  105. $redis = new Redis();
  106. $access_token = $redis->get('access_token');
  107. if (!$access_token){
  108. $access_token = '';
  109. $url = "https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=$appid&secret=$secret";
  110. $res=curlRequest($url);
  111. $res = json_decode($res,true);
  112. if (isset($res['access_token'])){
  113. $redis->set('access_token',$res['access_token'],'7000');
  114. $access_token = $res['access_token'];
  115. }
  116. }
  117. $url2 ="https://api.weixin.qq.com/cgi-bin/ticket/getticket?access_token=".$access_token."&type=jsapi";
  118. $res2=curlRequest($url2);
  119. $res2 = json_decode($res2,true);
  120. if (!isset($res2) || $res2['errcode']!=0){
  121. $this->error('获取ticket失败');
  122. }
  123. $timestamp = time();
  124. $noncestr = get32Str(15);
  125. // $urls = 'http://jybl.hdlkeji.com/web/h5/';
  126. $string = "jsapi_ticket=".$res2['ticket']."&noncestr=$noncestr&timestamp=$timestamp&url=".$urls;
  127. $sign = sha1($string);
  128. $return = [
  129. 'appid'=>$appid,
  130. 'noncestr'=>$noncestr,
  131. 'timestamp'=>$timestamp,
  132. 'url'=>$urls,
  133. 'sign'=>$sign,
  134. 'ticket'=>$res2['ticket']
  135. ];
  136. $this->success('成功',$return);
  137. }
  138. /**
  139. * @title 获取余额提现配置
  140. * @desc 获取余额提现配置
  141. * @url /api/Publics/getWithdrawConfig
  142. * @method POST
  143. * @tag 基础
  144. * @return name:withdraw_switch type:int desc:提现开关(1开启,0关闭)
  145. * @return name:withdraw_min_price type:float desc:最小提现金额
  146. * @return name:withdraw_max_price type:float desc:最大提现金额
  147. * @return name:poundage_proportion type:int desc:提现手续费(计算时需要除以100)
  148. **/
  149. public function getWithdrawConfig()
  150. {
  151. $nameArray = [
  152. 'withdraw_switch',
  153. 'withdraw_min_price',
  154. 'withdraw_max_price',
  155. 'poundage_proportion',
  156. ];
  157. $array = getConfig($nameArray);
  158. $this->success('成功',$array);
  159. }
  160. /**
  161. * @title 云钱包提现设置
  162. * @desc 云钱包提现设置
  163. * @url /api/Publics/getCloudWalletConfig
  164. * @method POST
  165. * @tag 基础
  166. * @return name:cloud_min type:float desc:最小提现金额
  167. * @return name:cloud_max type:float desc:最大提现金额
  168. * @return name:cloud_fee type:int desc:提现手续费【固定金额】
  169. **/
  170. public function getCloudWalletConfig()
  171. {
  172. $this->success('成功',['cloud_min'=>5,'cloud_max'=>1000,'cloud_fee'=>2]);
  173. }
  174. }