Index.php 13 KB

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