Usercenter.php 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  1. <?php
  2. namespace app\api\controller;
  3. use app\common\controller\Api;
  4. use think\Db;
  5. use app\common\model\wallet;
  6. use Redis;
  7. /**
  8. * 会员中心,不是个人中心
  9. */
  10. class Usercenter extends Api
  11. {
  12. protected $noNeedLogin = [];
  13. protected $noNeedRight = '*';
  14. protected $allowFields = [
  15. 'id',
  16. 'username',
  17. 'nickname',
  18. // 'truename',
  19. 'mobile',
  20. 'avatar',
  21. // 'real_status',
  22. 'gender',
  23. 'height',
  24. 'weight',
  25. 'birthday',
  26. 'bio',
  27. 'idcard_status',
  28. 'cityname',
  29. 'photo_images',
  30. 'tag_ids',
  31. 'attribute',
  32. 'shoesize',
  33. 'wechat_account',
  34. ];
  35. //获取他人用户信息,留下足迹
  36. public function getuserinfo(){
  37. $uid = input_post('uid',0);
  38. $userinfo = Db::name('user')->field($this->allowFields)->where('id|username',$uid)->find();
  39. if(!$userinfo){
  40. $this->error('不存在的用户');
  41. }
  42. //用户数据
  43. $userinfo = info_domain_image($userinfo,['avatar','photo_images']);
  44. $idcard_confirm = Db::name('user_idconfirm')->where('user_id',$uid)->find();
  45. $new_data = [
  46. 'age' => birthtime_to_age($userinfo['birthday']),
  47. 'truename' => ($userinfo['idcard_status'] == 1 && isset($idcard_confirm['truename'])) ? $idcard_confirm['truename'] : '',
  48. ];
  49. //合并
  50. $userinfo = array_merge($userinfo,$new_data);
  51. //枚举
  52. $userinfo['tag'] = Db::name('enum_tag')->where('id','IN',$userinfo['tag_ids'])->field(['id','name'])->select();
  53. //vip
  54. $userinfo['vip_endtime'] = Db::name('user_wallet')->where('user_id',$uid)->value('vip_endtime');
  55. $userinfo['is_vip'] = $userinfo['vip_endtime'] > time() ? 1 : 0;
  56. //是否喜欢和关注
  57. $is_follow = Db::name('user_follow')->where(['uid'=>$this->auth->id,'follow_uid'=>$uid])->find();
  58. $userinfo['is_follow'] = $is_follow ? 1 : 0;
  59. $is_like = Db::name('user_like')->where(['uid'=>$this->auth->id,'like_uid'=>$uid])->find();
  60. $userinfo['is_like'] = $is_like ? 1 : 0;
  61. //是否拉黑
  62. $is_black = Db::name('user_black')->where(['uid'=>$this->auth->id,'black_uid'=>$uid])->find();
  63. $userinfo['is_black'] = $is_black ? 1 : 0;
  64. //关注人数,粉丝人数
  65. $follow_num = Db::name('user_follow')->where(['uid'=>$this->auth->id])->count('id');
  66. $fans_num = Db::name('user_follow')->where(['follow_uid'=>$this->auth->id])->count('id');
  67. $userinfo['follow_num'] = $follow_num;
  68. $userinfo['fans_num'] = $fans_num;
  69. //查看别人信息,就要留下痕迹
  70. if($this->user_power($this->auth->id,'wuhen') != 1){
  71. $data = [
  72. 'uid' => $this->auth->id,
  73. 'to_uid' => $uid,
  74. ];
  75. $check = Db::name('user_visit')->where($data)->find();
  76. if($check){
  77. Db::name('user_visit')->where($data)->update(['number'=>$check['number']+1,'updatetime'=>time()]);
  78. }else{
  79. $data['number'] = 1;
  80. $data['updatetime'] = time();
  81. Db::name('user_visit')->insertGetId($data);
  82. }
  83. }
  84. //活跃,在线
  85. $userinfo['active_info'] = $this->user_activeinfo($uid);
  86. //用户权限
  87. //$userinfo['power'] = Db::name('user_power')->where('user_id',$uid)->find();
  88. $this->success('success',$userinfo);
  89. }
  90. /**
  91. * calc_map_distance() , 根据地图上的两个点各自的x,y坐标,计算出2点之间的直线距离
  92. * @param array $point_1 第1个点的x,y坐标 array( 101 , 202 )
  93. * @param array $point_2 第2个点的x,y坐标 array( 101 , 202 )
  94. * @param bool $calc_as_string 是否计算为字符串公里距离 , 如果未否返回数字
  95. * @return float | false | string
  96. */
  97. private function calc_map_distance( $point_1=array( ) , $point_2=array( ) , $calc_as_string=false ) {
  98. if( empty( $point_1 ) || empty( $point_2 ) ){
  99. return false;
  100. }
  101. // 经纬度不存在,或者经纬度超过最大范围 +-180 , +-90 ,返回false
  102. $p1_x = $point_1[0];
  103. $p1_y = $point_1[1];
  104. $p2_x = $point_2[0];
  105. $p2_y = $point_2[1];
  106. if(
  107. $p1_x < -180 || $p1_x > 180
  108. || $p2_x < -180 || $p2_x > 180
  109. || $p1_y < -90 || $p1_y > 90
  110. || $p2_y < -90 || $p2_y > 90
  111. ){
  112. return '0公里';
  113. }
  114. // 根据2点各自的坐标,计算2点之间直线距离的公式
  115. $distance = round(6378.138*2*asin(sqrt(pow(sin(( $p1_x *pi()/180-$p2_x*pi()/180)/2),2)+cos( $p1_x *pi()/180)*cos($p2_x*pi()/180)* pow(sin(( $p1_y *pi()/180-$p2_y*pi()/180)/2),2)))*1000);
  116. // 是否计算为字符串公里距离
  117. if( !$calc_as_string ){
  118. return (string)round( $distance / 1000 , 1 ) . '公里';
  119. }
  120. // 如果计算为字符串公里距离
  121. if( $distance / 1000 > 1 ){
  122. $k = (string)round( $distance / 1000 , 1 );
  123. $m = (string)$distance % 1000 ;
  124. $distance = "{$k}公里{$m}米";
  125. }
  126. else{
  127. $distance = "{$distance}米";
  128. }
  129. return $distance;
  130. }
  131. //地图api,根据两地坐标,获得两地距离,打卡用的
  132. //type=0直线,type=1开车
  133. private function getmapjuli($start_lon,$start_lat,$end_lon,$end_lat,$type = 0){
  134. $result = 0;
  135. $apiurl = 'https://restapi.amap.com/v3/distance?';
  136. $param = [
  137. 'key' => '398c424811d1a59beac2f915323d334e',
  138. 'origins' => $start_lon.','.$start_lat,
  139. 'destination' => $end_lon.','.$end_lat,
  140. 'type' => $type,
  141. 'output' => 'json',
  142. ];
  143. $apiurl .= http_build_query($param);
  144. $request_rs = json_decode(curl_get($apiurl),true);
  145. if(isset($request_rs['status']) && $request_rs['status'] == 1){
  146. if(isset($request_rs['results'][0]['distance']))
  147. {
  148. $result = $request_rs['results'][0]['distance'];
  149. }
  150. }
  151. //dump($result);
  152. return $result;
  153. }
  154. public function distance()
  155. {
  156. $a = $this->calc_map_distance([118.339282,35.028445],[118.437399,35.017438]);
  157. dump($a);
  158. $a = $this->calc_map_distance([118.339282,35.028445],[118.437399,35.017438],true);
  159. dump($a);
  160. $b = $this->getmapjuli(118.339282,35.028445,118.437399,35.017438,1);
  161. dump($b);
  162. $b = $this->getmapjuli(118.339282,35.028445,118.437399,35.017438,0);
  163. dump($b);
  164. }
  165. }