Index.php 13 KB

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