Index.php 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419
  1. <?php
  2. namespace app\api\controller;
  3. use app\common\controller\Api;
  4. use think\Db;
  5. use think\Cache;
  6. /**
  7. * 首页接口
  8. */
  9. class Index extends Api
  10. {
  11. protected $noNeedLogin = ['index'];
  12. protected $noNeedRight = ['*'];
  13. public function index(){
  14. echo 'apisuccess';
  15. exit;
  16. }
  17. //附近
  18. //是vip,且开启了隐身的,不能在内
  19. public function fujin(){
  20. $cityname = input('cityname','');
  21. /*if(empty($cityname)){
  22. $cityname = $this->auth->cityname;
  23. }*/
  24. $where = [
  25. 'user.id' => ['neq',$this->auth->id],
  26. 'user.status' => 1,
  27. //'user.cityname' => $cityname,
  28. 'power.yinshen' => 0,
  29. ];
  30. if(!empty($cityname) && $cityname != $this->auth->cityname){
  31. $where['user.cityname'] = $cityname;
  32. }else{
  33. //$where['user.provincename'] = $this->auth->provincename;//仅以此缩小范围
  34. }
  35. //性别
  36. $gender = input('gender','all');
  37. if($gender != 'all'){
  38. $where['user.gender'] = $gender;
  39. }
  40. //排除黑名单的
  41. $where_black = [];
  42. $black_ids = Db::name('user_black')->where(['uid'=>$this->auth->id])->column('black_uid');
  43. if(!empty($black_ids)){
  44. $where_black['user.id'] = ['NOTIN',$black_ids];
  45. }
  46. //年龄
  47. $agemin = input('agemin',18);
  48. if($agemin > 18){
  49. $where['user.birthday'] = ['lt',time()-$agemin*31536000];
  50. }
  51. $agemax = input('agemax',100);
  52. if($agemax < 100){
  53. $where['user.birthday'] = ['gt',time()-$agemax*31536000];
  54. }
  55. if($agemin > 18 && $agemax < 100){
  56. $where['user.birthday'] = ['between',[time()-$agemax*31536000,time()-$agemin*31536000]];
  57. }
  58. //距离
  59. $having_dis = '';
  60. $distancemin = input('distancemin',0);
  61. if($distancemin > 0){
  62. $having_dis = 'distance > '.$distancemin*1000;
  63. }
  64. $distancemax = input('distancemax',100);
  65. $distancemax = $distancemax > 100 ? 100 : $distancemax;//最大100
  66. if($distancemax > 0){
  67. $having_dis = 'distance < '.$distancemax*1000;
  68. }
  69. if($distancemin > 0 && $distancemax > 0){
  70. $having_dis = 'distance > '.$distancemin*1000 .' and distance < '.$distancemax*1000;
  71. }
  72. //当异地漫游的时候,距离条件作废
  73. if(!empty($cityname) && $cityname != $this->auth->cityname){
  74. $having_dis = '';
  75. }
  76. // dump($where);
  77. // dump($having_dis);
  78. $field = [
  79. 'user.id',
  80. 'user.username',
  81. 'user.nickname',
  82. 'user.avatar',
  83. 'user.photo_images',
  84. 'user.gender',
  85. 'user.birthday',
  86. 'user.cityname',
  87. 'user.longitude',
  88. 'user.latitude',
  89. 'user.is_active',
  90. 'wallet.vip_endtime',
  91. '(st_distance(point (' . $this->auth->longitude . ', ' . $this->auth->latitude . '),point(user.longitude,user.latitude))*111195) as distance',
  92. 'active.requesttime',
  93. ];
  94. $list = Db::name('user')->alias('user')->field($field)
  95. ->join('user_wallet wallet','user.id = wallet.user_id','LEFT')
  96. ->join('user_power power' ,'user.id = power.user_id','LEFT')
  97. ->join('user_active active' ,'user.id = active.user_id','LEFT')
  98. ->where($where)
  99. ->where($where_black)
  100. ->having($having_dis)
  101. ->order('user.is_active desc,distance asc,user.id desc')
  102. ->autopage()
  103. ->select();
  104. $list = list_domain_image($list,['avatar','photo_images']);
  105. foreach($list as $key => &$val){
  106. $val['age'] = birthtime_to_age($val['birthday']);
  107. $val['photo_images'] = explode(',',$val['photo_images'])[0];
  108. $val['is_vip'] = $val['vip_endtime'] > time() ? 1 : 0;
  109. $val['distance'] = bcdiv(intval($val['distance']),1000,1).'km';
  110. if($this->auth->longitude == 0 || $val['longitude'] == 0){
  111. $val['distance'] = '未知';
  112. }
  113. $val['active_info'] = $this->user_activeinfo($val['id'],$val['requesttime']);
  114. //vip如果开了隐私保护,需要隐藏距离
  115. $yinsi = $this->user_power($val['id'],'yinsi');
  116. if($yinsi == 1){
  117. $val['distance'] = '';
  118. }
  119. }
  120. $this->success(1,$list);
  121. }
  122. //推荐
  123. //真人认证的,是推荐用户的,可能也要限制vip的
  124. public function tuijian(){
  125. /*$cityname = input('cityname','');
  126. if(empty($cityname)){
  127. $cityname = $this->auth->cityname;
  128. }*/
  129. //强制条件
  130. $where = [
  131. 'user.id' => ['neq',$this->auth->id],
  132. 'user.status' => 1,
  133. // 'power.yinshen' => 0,
  134. ];
  135. //搜索条件 性别
  136. $gender = input('gender','all');
  137. if($gender != 'all'){
  138. $where['user.gender'] = $gender;
  139. }
  140. //搜索条件 年龄
  141. $agemin = input('agemin',18);
  142. if($agemin > 18){
  143. $where['user.birthday'] = ['lt',time()-$agemin*31536000];
  144. }
  145. $agemax = input('agemax',100);
  146. if($agemax < 100){
  147. $where['user.birthday'] = ['gt',time()-$agemax*31536000];
  148. }
  149. if($agemin > 18 && $agemax < 100){
  150. $where['user.birthday'] = ['between',[time()-$agemax*31536000,time()-$agemin*31536000]];
  151. }
  152. //排除黑名单的
  153. $where_black = [];
  154. $black_ids = Db::name('user_black')->where(['uid'=>$this->auth->id])->column('black_uid');
  155. if(!empty($black_ids)){
  156. $where_black['user.id'] = ['NOTIN',$black_ids];
  157. }
  158. //其他条件 与 推荐条件是 或的关系
  159. $where_other = [
  160. 'user.avatar' => ['neq',''],
  161. 'user.idcard_status' => 1,
  162. ];
  163. if(config('site.index_tuijian_vip_limit') == 1){
  164. $where_other['wallet.vip_endtime'] = ['gt',time()];
  165. }
  166. //选择了推荐,就强制推荐
  167. $where_tuijian = [
  168. 'user.is_tuijian' => 1,
  169. ];
  170. //距离
  171. $having_dis = '';
  172. $distancemin = input('distancemin',0);
  173. if($distancemin > 0){
  174. $having_dis = 'distance > '.$distancemin*1000;
  175. }
  176. $distancemax = input('distancemax',0);
  177. if($distancemax > 0){
  178. $having_dis = 'distance < '.$distancemax*1000;
  179. }
  180. if($distancemin > 0 && $distancemax > 0){
  181. $having_dis = 'distance > '.$distancemin*1000 .' and distance < '.$distancemax*1000;
  182. }
  183. $field = [
  184. 'user.id',
  185. 'user.username',
  186. 'user.nickname',
  187. 'user.avatar',
  188. 'user.photo_images',
  189. 'user.gender',
  190. 'user.birthday',
  191. 'user.cityname',
  192. 'user.longitude',
  193. 'user.latitude',
  194. 'user.is_active',
  195. 'wallet.vip_endtime',
  196. '(st_distance(point (' . $this->auth->longitude . ', ' . $this->auth->latitude . '),point(user.longitude,user.latitude))*111195) as distance',
  197. 'active.requesttime',
  198. ];
  199. $list = Db::name('user')->alias('user')->field($field)
  200. ->join('user_wallet wallet','user.id = wallet.user_id','LEFT')
  201. ->join('user_power power' ,'user.id = power.user_id','LEFT')
  202. ->join('user_active active' ,'user.id = active.user_id','LEFT')
  203. ->where($where)
  204. ->where($where_black)
  205. ->where(
  206. function($query)use($where_other,$where_tuijian){
  207. $query->where(
  208. function($query)use($where_other){
  209. $query->where($where_other);
  210. }
  211. );
  212. $query->whereOr($where_tuijian);
  213. })
  214. //->having($having_dis)推荐完全不受距离限制
  215. ->order('user.is_tuijian desc,user.is_active desc,distance asc')
  216. ->autopage()
  217. ->select();
  218. $list = list_domain_image($list,['avatar','photo_images']);
  219. foreach($list as $key => &$val){
  220. $val['age'] = birthtime_to_age($val['birthday']);
  221. $val['photo_images'] = explode(',',$val['photo_images'])[0];
  222. $val['is_vip'] = $val['vip_endtime'] > time() ? 1 : 0;
  223. $val['distance'] = bcdiv(intval($val['distance']),1000,1).'km';
  224. if($this->auth->longitude == 0 || $val['longitude'] == 0){
  225. $val['distance'] = '未知';
  226. }
  227. $val['active_info'] = $this->user_activeinfo($val['id'],$val['requesttime']);
  228. //vip如果开了隐私保护,需要隐藏距离,隐藏所在城市
  229. $yinsi = $this->user_power($val['id'],'yinsi');
  230. if($yinsi == 1){
  231. $val['distance'] = '';
  232. $val['cityname'] = '';
  233. }
  234. }
  235. $this->success(1,$list);
  236. }
  237. //匹配配置
  238. public function pipei_config(){
  239. $result = [
  240. 'index_pipei_switch' => config('site.index_pipei_switch'), //匹配开关
  241. ];
  242. //首页匹配每天每人匹配次数
  243. $user_id = $this->auth->id;
  244. $is_vip = $this->is_vip($this->auth->id);
  245. $times_limit = $is_vip == 1 ? config('site.pipei_oneday_vipuser_times') : config('site.index_pipei_oneday_user_times');
  246. $times_limit_redis = 'pipei_times_limit_'.$user_id;
  247. $user_times = Cache::get($times_limit_redis) ?: 0;
  248. if($times_limit > -1){
  249. $remain_times = $times_limit - $user_times;
  250. if($remain_times < 0){
  251. $remain_times = 0;
  252. }
  253. }else{
  254. $remain_times = -1;
  255. }
  256. $result['remain_times'] = $remain_times;
  257. $this->success(1,$result);
  258. }
  259. //匹配
  260. //做防止重复处理,参照荔枝
  261. public function pipei(){
  262. //首页匹配功能开关
  263. $index_pipei_switch = config('site.index_pipei_switch');
  264. if($index_pipei_switch != 1){
  265. $this->error('匹配功能维护中,请稍后再试');
  266. }
  267. //缓存,防重复
  268. $user_id = $this->auth->id;
  269. $user_id_redis = 'pipei_repeat_'.$user_id;
  270. $redis_ids = json_decode(Cache::get($user_id_redis),true);
  271. //首页匹配每天每人匹配次数
  272. $is_vip = $this->is_vip($this->auth->id);
  273. $times_limit = $is_vip == 1 ? config('site.pipei_oneday_vipuser_times') : config('site.index_pipei_oneday_user_times');
  274. $times_limit_redis = 'pipei_times_limit_'.$user_id;
  275. $user_times = Cache::get($times_limit_redis) ?: 0;
  276. if($times_limit > -1 && $user_times >= $times_limit){
  277. $this->error('今日已超匹配上限'.$times_limit.'次');
  278. }
  279. //where
  280. $where = [
  281. 'user.id' => ['neq',$this->auth->id],
  282. 'user.status' => 1,
  283. 'user.is_active' => 1,
  284. ];
  285. //性别
  286. $gender = input('gender','all');
  287. if($gender != 'all'){
  288. $where['user.gender'] = $gender;
  289. }
  290. //排除黑名单的
  291. $where_black = [];
  292. $black_ids = Db::name('user_black')->where(['uid'=>$this->auth->id])->column('black_uid');
  293. if(!empty($black_ids)){
  294. $where_black['user.id'] = ['NOTIN',$black_ids];
  295. }
  296. //匹配一个
  297. $result = $this->pipei_action($redis_ids,$where,$where_black);
  298. //匹配不到,移除防重复
  299. if(!$result) {
  300. Cache::rm($user_id_redis);
  301. $redis_ids = [];
  302. $result = $this->pipei_action($redis_ids,$where,$where_black);
  303. }
  304. // 追加一个防重复
  305. if($result){
  306. if($redis_ids) {
  307. $redis_ids[] = $result;
  308. } else {
  309. $redis_ids = [$result];
  310. }
  311. Cache::set($user_id_redis,json_encode($redis_ids));
  312. //设置次数
  313. $second = strtotime(date('Y-m-d'))+86400 - time();
  314. Cache::set($times_limit_redis,$user_times+1,$second);
  315. }else{
  316. Cache::rm($user_id_redis);
  317. }
  318. $this->success(1,$result);
  319. }
  320. private function pipei_action($redis_ids,$where,$where_black){
  321. $where_op = [];
  322. if(!empty($redis_ids)){
  323. $where_op['user.id'] = ['NOTIN',$redis_ids];
  324. }
  325. $result = Db::name('user')->alias('user')
  326. //->join('user_active active' ,'user.id = active.user_id','LEFT')
  327. ->where($where)
  328. ->where($where_op)
  329. ->where($where_black)
  330. ->orderRaw('rand()')
  331. ->value('user.id');
  332. return $result;
  333. }
  334. ///////////////////////////////////
  335. public function test(){
  336. //缓存,防重复
  337. $user_id = $this->auth->id;
  338. $user_id_redis = 'pipei_repeat_'.$user_id;
  339. $redis_ids = json_decode(Cache::get($user_id_redis),true);
  340. dump($redis_ids);
  341. $times_limit_redis = 'pipei_times_limit_'.$user_id;
  342. $user_times = Cache::get($times_limit_redis) ?: 0;
  343. dump($user_times);
  344. }
  345. public function testrm(){
  346. $user_id = $this->auth->id;
  347. $user_id_redis = 'pipei_repeat_'.$user_id;
  348. Cache::rm($user_id_redis);
  349. $times_limit_redis = 'pipei_times_limit_'.$user_id;
  350. Cache::rm($times_limit_redis);
  351. }
  352. }