Index.php 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458
  1. <?php
  2. namespace app\api\controller;
  3. use app\common\controller\Api;
  4. use app\common\model\Apply;
  5. use app\common\model\Area;
  6. use app\common\model\Banner;
  7. use app\common\model\Like;
  8. use app\common\model\LikeMutually;
  9. use app\common\model\Report;
  10. use app\common\model\Shield;
  11. use app\common\model\Unlockprogress;
  12. use app\common\model\User;
  13. use app\common\model\UserObject;
  14. use DateTime;
  15. use think\Db;
  16. use think\Exception;
  17. /**
  18. * 首页接口
  19. */
  20. class Index extends Api
  21. {
  22. protected $noNeedLogin = ['index','slideshow','recommend'];
  23. protected $noNeedRight = ['*'];
  24. /**
  25. * 首页
  26. *
  27. */
  28. public function index()
  29. {
  30. $this->success('请求成功');
  31. }
  32. /**
  33. * 搜索
  34. * @param string $min_age 最小年龄
  35. * @param string $max_age 最大年龄
  36. * @param string $min_height 最小身高
  37. * @param string $max_height 最大身高
  38. * @param string $region_province 家乡所在省份id
  39. * @param string $region_city 家乡所在市区id
  40. * @param string $province 所在城市省份id
  41. * @param string $city 所在城市市区id
  42. * @param string $education 学历
  43. * @param string $gender 男女1男0女
  44. */
  45. public function search(){
  46. $where = [
  47. 'status'=>'normal',
  48. 'id'=>['neq',$this->auth->id]
  49. ];
  50. $where['height']=['Between',[input('min_height'),input('max_height')]];
  51. if(input('region_province')){
  52. $where['region_province']=input('region_province');
  53. $where['region_city']=input('region_city');
  54. }
  55. if(input('province')){
  56. $where['province']=input('province');
  57. $where['city']=input('city');
  58. }
  59. input('education')?$where['education']=input('education'):'';
  60. if(input('gender')!='')$where['gender']=input('gender');
  61. //屏蔽用户
  62. $shield = Shield::where(['uid'=>$this->auth->id])->field('nid')->select();
  63. $shieldArr = [];
  64. foreach ($shield as $v){
  65. array_push($shieldArr,$v['nid']);
  66. }
  67. if($shieldArr){
  68. $data = User::where($where)
  69. ->where(['id_authentication'=>1])
  70. ->whereNotIn('id',$shieldArr)
  71. ->field('id,avatar,height,region_province,region_city,province,city,birthday,education,nickname,gender')
  72. ->select();
  73. }else{
  74. $data = User::where($where)
  75. ->where(['id_authentication'=>1])
  76. ->field('id,avatar,height,region_province,region_city,province,city,birthday,education,nickname,gender')
  77. ->select();
  78. }
  79. foreach ($data as $k=>&$v){
  80. $v['birthday'] = getAge($v['birthday']);
  81. if($v['birthday']<input('min_age') || $v['birthday']>input('max_age')){
  82. unset($data[$k]);
  83. }
  84. }
  85. $data = array_values($data);
  86. $this->success('',$data);
  87. }
  88. /**
  89. * 搜索内容详情
  90. * @ApiMethod (POST)
  91. * @param string $nid 解锁用户id
  92. */
  93. public function searchDetails(){
  94. $where = [
  95. 'uid'=>$this->auth->id,
  96. 'nid'=>input('nid')
  97. ];
  98. $res = User::where('id',input('nid'))
  99. ->with('userObject.education,education,marriedtime')
  100. ->find();
  101. $unlockprogress = Unlockprogress::where($where)->find();
  102. if($unlockprogress){
  103. $res['unlockprogress'] =$unlockprogress['status'];
  104. }else{
  105. $res['unlockprogress'] =0;
  106. }
  107. $res['birthday'] = getAge($res['birthday']);
  108. $res['province'] = Area::where('id',$res['province'])->value('name');
  109. $res['city'] = Area::where('id',$res['city'])->value('name');
  110. $res['area'] = Area::where('id',$res['area'])->value('name');
  111. Like::where($where)->where('type',1)->find()?$res['like']=1:$res['like']=0;
  112. $u_user = user::get(['id'=>$this->auth->id]);
  113. if($u_user&&$u_user['constellation']&&$u_user['birthday']&&$u_user['height']&&$u_user['marriage']&&$u_user['children']&&$u_user['marriedtime']&&$u_user['education']&&$u_user['school']&&$u_user['house']&&$u_user['car']&&$u_user['father_work']&&$u_user['mother_work']&&$u_user['brother']){
  114. $res['is_about_yourself'] = 1;
  115. }else{
  116. $res['is_about_yourself'] = 0;
  117. }
  118. $UserObject = UserObject::get(['uid'=>input('nid')]);
  119. if($UserObject&&$UserObject['constellation']&&$UserObject['min_age']&&$UserObject['min_height']&&$UserObject['education']&&$UserObject['car']&&$UserObject['house']&&$UserObject['marry']&&$UserObject['children']&&$UserObject['locality']){
  120. $res['is_about_object'] = 1;
  121. }else{
  122. $res['is_about_object'] = 0;
  123. }
  124. if($res)$this->success('',$res);
  125. }
  126. /**
  127. * 解锁进度页
  128. * @ApiMethod (POST)
  129. * @param string $nid 解锁用户id
  130. * @param string $type 解锁类型1照片2资料3微信
  131. */
  132. public function unlockProgress(){
  133. $type = input('type');
  134. $uid = $this->auth->id;
  135. $uid==input('nid')?$this->error('违规操作'):'';
  136. if($type > 1) {
  137. $user = Unlockprogress::where(['uid'=>$this->auth->id,'nid'=>input('nid')])->find();
  138. if(isset($user)){
  139. if($user['status'] == input('type')){
  140. $this->error('无需重复解锁');
  141. }
  142. }else{
  143. $this->error('非法操作');
  144. }
  145. }
  146. if($type == 1){
  147. $cost = config('site.expenditure_grain')['解锁用户照片'];
  148. if($cost>$this->auth->money)$this->error('余额不足');
  149. Db::startTrans();
  150. try {
  151. $data = [
  152. 'uid'=>$this->auth->id,
  153. 'nid'=>input('nid'),
  154. 'status'=>1
  155. ];
  156. Unlockprogress::insert($data);
  157. user::money(-$cost,$uid,'解锁用户照片');
  158. //发送微信模板消息
  159. Apply::wxUnlockMessage($uid,input('nid'),Date('Y-m-d H:i:s'),2);
  160. Db::commit();
  161. $this->success('解锁照片成功');
  162. }catch (Exception $e){
  163. Db::rollback();
  164. $this->error($e);
  165. return false;
  166. }
  167. }elseif($type == 2){
  168. $cost = config('site.expenditure_grain')['解锁用户资料'];
  169. if($cost>$this->auth->money)$this->error('余额不足');
  170. Db::startTrans();
  171. try {
  172. $update = ['status'=>2];
  173. $user->save($update);
  174. $look = [
  175. 'uid'=>$this->auth->id,
  176. 'nid'=>input('nid'),
  177. 'type'=>2,
  178. 'status'=>0
  179. ];
  180. Like::insert($look);
  181. user::money(-$cost,$uid,'解锁用户资料');
  182. //发送微信模板消息
  183. Apply::wxUnlockMessage($uid,input('nid'),Date('Y-m-d H:i:s'),3);
  184. Db::commit();
  185. $this->success('解锁资料成功');
  186. }catch (Exception $e){
  187. Db::rollback();
  188. $this->error($e);
  189. return false;
  190. }
  191. }elseif($type == 3){
  192. $cost = config('site.expenditure_grain')['申请认识支出'];
  193. if($cost>$this->auth->money)$this->error('余额不足');
  194. Db::startTrans();
  195. try {
  196. $update = ['status'=>3];
  197. $user->save($update);
  198. $apply=[
  199. 'uid'=>$this->auth->id,
  200. 'nid'=>input('nid'),
  201. 'status'=>0,
  202. 'grain'=>$cost
  203. ];
  204. Apply::insert($apply);
  205. user::money(-$cost,$uid,'申请认识支出');
  206. //Apply::wxMessage(input('nid'),Date('Y-m-d H:i:s'));
  207. //发送微信模板消息
  208. Apply::wxKnowMessage($this->auth->id,input('nid'),Date('Y-m-d H:i:s'));
  209. Db::commit();
  210. $this->success('解锁成功');
  211. }catch (Exception $e){
  212. Db::rollback();
  213. $this->error($e);
  214. return false;
  215. }
  216. }
  217. }
  218. /**
  219. * 轮播图
  220. */
  221. public function slideshow(){
  222. $this->success('',Banner::all());
  223. }
  224. /**
  225. * 首页推荐会员
  226. * @ApiMethod (POST)
  227. * @param string $gender 性别
  228. * @param string $city 城市
  229. */
  230. public function recommend(){
  231. $uid = $this->auth->id;
  232. $city = $this->request->post('city');
  233. if($this->auth->gender){
  234. $gender = 0;
  235. }else{
  236. $gender = 1;
  237. }
  238. //我屏蔽的用户
  239. $shield = Shield::where(['uid'=>$uid])->field('nid')->select();
  240. $shieldArr = [];
  241. foreach ($shield as $v){
  242. array_push($shieldArr,$v['nid']);
  243. }
  244. //屏蔽我的用户
  245. $shield1 = Shield::where(['nid'=>$uid])->field('uid')->select();
  246. foreach ($shield1 as $v){
  247. array_push($shieldArr,$v['uid']);
  248. }
  249. $where = [
  250. 'gender'=>input('gender',$gender),
  251. 'is_recommend'=>1,
  252. 'id'=>['neq',$uid]
  253. ];
  254. if($city)$where['city']=$city;
  255. if($shieldArr){
  256. $recommenduser = user::where($where)->whereNotIn('id',$shieldArr)->order('recommend_weight','desc')->paginate(3);
  257. }else{
  258. $recommenduser = user::where($where)->order('recommend_weight','desc')->paginate(3);
  259. }
  260. foreach ($recommenduser as $k=>&$v){
  261. $v['birthday'] = $v['birthday']?getAge($v['birthday']):'';
  262. Like::get(['uid'=>$uid,'nid'=>$v['id'],'type'=>1])?$v['is_like']=1:$v['is_like']=0;
  263. Apply::get(['uid'=>$uid,'nid'=>$v['id'],'status'=>['in','1,2']])?$v['is_apply']=1:$v['is_apply']=0;
  264. $v['province'] = $v['province']?Area::where('id',$v['province'])->value('name'):'';
  265. $v['city'] = $v['city']?Area::where('id',$v['city'])->value('name'):'';
  266. $v['area'] = $v['area']?Area::where('id',$v['area'])->value('name'):'';
  267. }
  268. $this->success('',$recommenduser);
  269. }
  270. /**
  271. * 会员详情
  272. * @ApiMethod (POST)
  273. * @param string $id 会员id
  274. */
  275. public function recommendUserDetail(){
  276. $recommenduser = user::where('id',input('id'))
  277. ->with('userObject.education,education,marriedtime')
  278. ->find();
  279. $is_wx_message = input('is_wx_message');
  280. $recommenduser['birthday'] = $recommenduser['birthday']?getAge($recommenduser['birthday']):0;
  281. $recommenduser['photo'] = explode(',',$recommenduser['photo']);
  282. $recommenduser['province'] = Area::where('id',$recommenduser['province'])->value('name');
  283. $recommenduser['city'] = Area::where('id',$recommenduser['city'])->value('name');
  284. $recommenduser['area'] = Area::where('id',$recommenduser['area'])->value('name');
  285. $recommenduser['age'] = $recommenduser['birthday'];
  286. Like::where([
  287. 'uid'=>$this->auth->id,
  288. 'nid'=>input('id')
  289. ])->where('type',1)->find()?$recommenduser['like']=1:$recommenduser['like']=0;
  290. $u_user = user::get(['id'=>$this->auth->id]);
  291. if($u_user&&$u_user['constellation']&&$u_user['birthday']&&$u_user['height']&&$u_user['marriage']&&$u_user['children']&&$u_user['marriedtime']&&$u_user['education']&&$u_user['school']&&$u_user['house']&&$u_user['car']&&$u_user['father_work']&&$u_user['mother_work']&&$u_user['brother']){
  292. $recommenduser['is_about_yourself'] = 1;
  293. }else{
  294. $recommenduser['is_about_yourself'] = 0;
  295. }
  296. $UserObject = UserObject::get(['uid'=>$this->auth->id]);
  297. if($UserObject&&$UserObject['constellation']&&$UserObject['min_age']&&$UserObject['min_height']&&$UserObject['education']&&$UserObject['car']&&$UserObject['house']&&$UserObject['marry']&&$UserObject['children']&&$UserObject['locality']){
  298. $recommenduser['is_about_object'] = 1;
  299. }else{
  300. $recommenduser['is_about_object'] = 0;
  301. }
  302. //查看
  303. $look = Like::get(['uid'=>$this->auth->id,'nid'=>input('id')]);
  304. if(!$look && $this->auth->id!=input('id')){
  305. $look = [
  306. 'uid'=>$this->auth->id,
  307. 'nid'=>input('id'),
  308. 'type'=>2,
  309. 'status'=>0
  310. ];
  311. Like::insert($look);
  312. Apply::wxVisitorMessage($u_user['username'],input('id'),Date('Y-m-d H:i:s'));
  313. }
  314. Apply::get(['nid'=>$recommenduser['id'],'uid'=>$this->auth->id])?$recommenduser['is_user_wx']=1:$recommenduser['is_user_wx']=0;
  315. if($is_wx_message == 1){
  316. //发送微信模板消息
  317. }
  318. $this->success('',$recommenduser);
  319. }
  320. /**
  321. * 喜欢
  322. * @ApiMethod (POST)
  323. * @param string $nid 喜欢用户id
  324. */
  325. public function like(){
  326. $uid = $this->auth->id;
  327. $uid==input('nid')?$this->error('不可喜欢自己'):'';
  328. if($this->auth->score > 0){
  329. $data = [
  330. 'uid'=>$uid,
  331. 'nid'=>input('nid'),
  332. 'type'=>1
  333. ];
  334. $user = Like::where($data)->find();
  335. if($user)$this->error('您已喜欢该用户');
  336. User::score(-1,$uid,'喜欢用户');
  337. if(Like::insert($data)){
  338. //查询是否喜欢我
  339. $mutually = [
  340. 'uid' => input('nid'),
  341. 'nid' => $uid
  342. ];
  343. $mutually_data = Like::get($mutually);
  344. if($mutually_data){
  345. $like_mutually = [
  346. 'uid'=>$uid,
  347. 'nid'=>input('nid')
  348. ];
  349. LikeMutually::create($like_mutually);
  350. $like_mutually2 = [
  351. 'uid'=>input('nid'),
  352. 'nid'=>$uid
  353. ];
  354. LikeMutually::create($like_mutually2);
  355. }
  356. //发送微信模板消息
  357. Apply::wxUnlockMessage($uid,input('nid'),Date('Y-m-d H:i:s'),1);
  358. $this->success('已喜欢');
  359. }else{
  360. $this->error('系统异常');
  361. }
  362. }else{
  363. $this->error('喜欢额度不足');
  364. }
  365. }
  366. /**
  367. * 解锁微信
  368. * @ApiMethod (POST)
  369. * @param (name="id",description='解锁用户id')
  370. */
  371. public function unlockWx(){
  372. $this->auth->id==input('id')?$this->error('违规操作'):'';
  373. $cost = config('site.expenditure_grain')['申请认识支出'];
  374. if($cost>$this->auth->money)$this->error('余额不足');
  375. $apply_=Apply::where(['nid'=>input('id'),'status'=>0])->find();
  376. $apply_?$this->error('您已申请认识'):'';
  377. Db::startTrans();
  378. try {
  379. $apply=[
  380. 'uid'=>$this->auth->id,
  381. 'nid'=>input('id'),
  382. 'status'=>0,
  383. 'grain'=>$cost
  384. ];
  385. Apply::insert($apply);
  386. user::money(-$cost,$this->auth->id,'申请认识支出');
  387. //发送微信模板消息
  388. Apply::wxKnowMessage($this->auth->id,input('id'),Date('Y-m-d H:i:s'));
  389. Db::commit();
  390. $this->success('解锁成功');
  391. }catch (Exception $e){
  392. Db::rollback();
  393. $this->error($e);
  394. return false;
  395. }
  396. }
  397. /**
  398. * 举报
  399. * @ApiMethod (POST)
  400. * @param string $nid 举报用户id
  401. * @param string $content 举报内容
  402. * @param string $image 举报图片
  403. */
  404. public function report(){
  405. $rule = [
  406. 'content|举报内容'=>'require',
  407. 'image|图片'=>'require',
  408. 'nid|举报用户'=>'require'
  409. ];
  410. $data = $this->_validate($rule);
  411. $data['uid'] = $this->auth->id;
  412. $res = Report::insert($data);
  413. if($res){
  414. $this->success('提交成功');
  415. }
  416. $this->error('提交失败');
  417. }
  418. /**
  419. * 屏蔽
  420. * @ApiMethod (POST)
  421. * @param string $type 1屏蔽2解除屏蔽
  422. * @param string $nid 屏蔽用户id(type为1时传)
  423. * @param string $id id(type为2时传)
  424. */
  425. public function shield(){
  426. if(input('type') == 1){
  427. $data = [
  428. 'uid'=>$this->auth->id,
  429. 'nid'=>input('nid')
  430. ];
  431. Shield::where($data)->find()?$this->error('您已屏蔽该用户,无需重复操作'):Shield::insert($data);
  432. $this->success('操作成功');
  433. }else{
  434. Shield::where('id',input('id'))->delete()?$this->success('解除成功'):$this->error('解除失败');
  435. }
  436. }
  437. /**
  438. * 申请认识你弹窗
  439. * @ApiReturnParams (name='count',description='会员个数')
  440. */
  441. public function applyList(){
  442. $data = Apply::all(['nid'=>$this->auth->id,'n_is_read'=>0],['uidinfo']);
  443. $count = count($data);
  444. $this->success('',['data'=>$data,'count'=>$count]);
  445. }
  446. }