Index.php 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449
  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. if($type > 1) {
  136. $user = Unlockprogress::where(['uid'=>$this->auth->id,'nid'=>input('nid')])->find();
  137. if(isset($user)){
  138. if($user['status'] == input('type')){
  139. $this->error('无需重复解锁');
  140. }
  141. }else{
  142. $this->error('非法操作');
  143. }
  144. }
  145. if($type == 1){
  146. $cost = config('site.expenditure_grain')['解锁用户照片'];
  147. if($cost>$this->auth->money)$this->error('余额不足');
  148. Db::startTrans();
  149. try {
  150. $data = [
  151. 'uid'=>$this->auth->id,
  152. 'nid'=>input('nid'),
  153. 'status'=>1
  154. ];
  155. Unlockprogress::insert($data);
  156. user::money(-$cost,$uid,'解锁用户照片');
  157. //发送微信模板消息
  158. Apply::wxUnlockMessage($uid,input('nid'),Date('Y-m-d H:i:s'),2);
  159. Db::commit();
  160. $this->success('解锁照片成功');
  161. }catch (Exception $e){
  162. Db::rollback();
  163. $this->error($e);
  164. return false;
  165. }
  166. }elseif($type == 2){
  167. $cost = config('site.expenditure_grain')['解锁用户资料'];
  168. if($cost>$this->auth->money)$this->error('余额不足');
  169. Db::startTrans();
  170. try {
  171. $update = ['status'=>2];
  172. $user->save($update);
  173. $look = [
  174. 'uid'=>$this->auth->id,
  175. 'nid'=>input('nid'),
  176. 'type'=>2,
  177. 'status'=>0
  178. ];
  179. Like::insert($look);
  180. user::money(-$cost,$uid,'解锁用户资料');
  181. //发送微信模板消息
  182. Apply::wxUnlockMessage($uid,input('nid'),Date('Y-m-d H:i:s'),3);
  183. Db::commit();
  184. $this->success('解锁资料成功');
  185. }catch (Exception $e){
  186. Db::rollback();
  187. $this->error($e);
  188. return false;
  189. }
  190. }elseif($type == 3){
  191. $cost = config('site.expenditure_grain')['申请认识支出'];
  192. if($cost>$this->auth->money)$this->error('余额不足');
  193. Db::startTrans();
  194. try {
  195. $update = ['status'=>3];
  196. $user->save($update);
  197. $apply=[
  198. 'uid'=>$this->auth->id,
  199. 'nid'=>input('nid'),
  200. 'status'=>0,
  201. 'grain'=>$cost
  202. ];
  203. Apply::insert($apply);
  204. user::money(-$cost,$uid,'申请认识支出');
  205. //Apply::wxMessage(input('nid'),Date('Y-m-d H:i:s'));
  206. //发送微信模板消息
  207. Apply::wxKnowMessage($this->auth->id,input('nid'),Date('Y-m-d H:i:s'));
  208. Db::commit();
  209. $this->success('解锁成功');
  210. }catch (Exception $e){
  211. Db::rollback();
  212. $this->error($e);
  213. return false;
  214. }
  215. }
  216. }
  217. /**
  218. * 轮播图
  219. */
  220. public function slideshow(){
  221. $this->success('',Banner::all());
  222. }
  223. /**
  224. * 首页推荐会员
  225. * @ApiMethod (POST)
  226. * @param string $gender 性别
  227. * @param string $city 城市
  228. */
  229. public function recommend(){
  230. $uid = $this->auth->id;
  231. $city = $this->request->post('city');
  232. if($this->auth->gender){
  233. $gender = 0;
  234. }else{
  235. $gender = 1;
  236. }
  237. //屏蔽用户
  238. $shield = Shield::where(['uid'=>$uid])->field('nid')->select();
  239. $shieldArr = [];
  240. foreach ($shield as $v){
  241. array_push($shieldArr,$v['nid']);
  242. }
  243. $where = [
  244. 'gender'=>input('gender',$gender),
  245. 'is_recommend'=>1,
  246. 'id'=>['neq',$uid]
  247. ];
  248. if($city)$where['city']=$city;
  249. if($shieldArr){
  250. $recommenduser = user::where($where)->whereNotIn('id',$shieldArr)->order('recommend_weight','desc')->paginate(3);
  251. }else{
  252. $recommenduser = user::where($where)->order('recommend_weight','desc')->paginate(3);
  253. }
  254. foreach ($recommenduser as $k=>&$v){
  255. $v['birthday'] = $v['birthday']?getAge($v['birthday']):'';
  256. Like::get(['uid'=>$uid,'nid'=>$v['id'],'type'=>1])?$v['is_like']=1:$v['is_like']=0;
  257. Apply::get(['uid'=>$uid,'nid'=>$v['id'],'status'=>['in','1,2']])?$v['is_apply']=1:$v['is_apply']=0;
  258. $v['province'] = $v['province']?Area::where('id',$v['province'])->value('name'):'';
  259. $v['city'] = $v['city']?Area::where('id',$v['city'])->value('name'):'';
  260. $v['area'] = $v['area']?Area::where('id',$v['area'])->value('name'):'';
  261. }
  262. $this->success('',$recommenduser);
  263. }
  264. /**
  265. * 会员详情
  266. * @ApiMethod (POST)
  267. * @param string $id 会员id
  268. */
  269. public function recommendUserDetail(){
  270. $recommenduser = user::where('id',input('id'))
  271. ->with('userObject.education,education,marriedtime')
  272. ->find();
  273. $is_wx_message = input('is_wx_message');
  274. $recommenduser['birthday'] = $recommenduser['birthday']?getAge($recommenduser['birthday']):0;
  275. $recommenduser['photo'] = explode(',',$recommenduser['photo']);
  276. $recommenduser['province'] = Area::where('id',$recommenduser['province'])->value('name');
  277. $recommenduser['city'] = Area::where('id',$recommenduser['city'])->value('name');
  278. $recommenduser['area'] = Area::where('id',$recommenduser['area'])->value('name');
  279. $recommenduser['age'] = $recommenduser['birthday'];
  280. Like::where([
  281. 'uid'=>$this->auth->id,
  282. 'nid'=>input('id')
  283. ])->where('type',1)->find()?$recommenduser['like']=1:$recommenduser['like']=0;
  284. $u_user = user::get(['id'=>$this->auth->id]);
  285. 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']){
  286. $recommenduser['is_about_yourself'] = 1;
  287. }else{
  288. $recommenduser['is_about_yourself'] = 0;
  289. }
  290. $UserObject = UserObject::get(['uid'=>$this->auth->id]);
  291. if($UserObject&&$UserObject['constellation']&&$UserObject['min_age']&&$UserObject['min_height']&&$UserObject['education']&&$UserObject['car']&&$UserObject['house']&&$UserObject['marry']&&$UserObject['children']&&$UserObject['locality']){
  292. $recommenduser['is_about_object'] = 1;
  293. }else{
  294. $recommenduser['is_about_object'] = 0;
  295. }
  296. //查看
  297. $look = Like::get(['uid'=>$this->auth->id,'nid'=>input('id')]);
  298. if(!$look){
  299. $look = [
  300. 'uid'=>$this->auth->id,
  301. 'nid'=>input('id'),
  302. 'type'=>2,
  303. 'status'=>0
  304. ];
  305. Like::insert($look);
  306. Apply::wxVisitorMessage($u_user['username'],input('id'),Date('Y-m-d H:i:s'));
  307. }
  308. Apply::get(['nid'=>$recommenduser['id'],'uid'=>$this->auth->id])?$recommenduser['is_user_wx']=1:$recommenduser['is_user_wx']=0;
  309. if($is_wx_message == 1){
  310. //发送微信模板消息
  311. }
  312. $this->success('',$recommenduser);
  313. }
  314. /**
  315. * 喜欢
  316. * @ApiMethod (POST)
  317. * @param string $nid 喜欢用户id
  318. */
  319. public function like(){
  320. $uid = $this->auth->id;
  321. if($this->auth->score > 0){
  322. $data = [
  323. 'uid'=>$uid,
  324. 'nid'=>input('nid'),
  325. 'type'=>1
  326. ];
  327. $user = Like::where($data)->find();
  328. if($user)$this->error('您已喜欢该用户');
  329. User::score(-1,$uid,'喜欢用户');
  330. if(Like::insert($data)){
  331. //查询是否喜欢我
  332. $mutually = [
  333. 'uid' => input('nid'),
  334. 'nid' => $uid
  335. ];
  336. $mutually_data = Like::get($mutually);
  337. if($mutually_data){
  338. $like_mutually = [
  339. 'uid'=>$uid,
  340. 'nid'=>input('nid')
  341. ];
  342. LikeMutually::create($like_mutually);
  343. $like_mutually2 = [
  344. 'uid'=>input('nid'),
  345. 'nid'=>$uid
  346. ];
  347. LikeMutually::create($like_mutually2);
  348. }
  349. //发送微信模板消息
  350. Apply::wxUnlockMessage($uid,input('nid'),Date('Y-m-d H:i:s'),1);
  351. $this->success('已喜欢');
  352. }else{
  353. $this->error('系统异常');
  354. }
  355. }else{
  356. $this->error('喜欢额度不足');
  357. }
  358. }
  359. /**
  360. * 解锁微信
  361. * @ApiMethod (POST)
  362. * @param (name="id",description='解锁用户id')
  363. */
  364. public function unlockWx(){
  365. $cost = config('site.expenditure_grain')['申请认识支出'];
  366. if($cost>$this->auth->money)$this->error('余额不足');
  367. $apply_=Apply::where(['nid'=>input('id'),'status'=>0])->find();
  368. $apply_?$this->error('您已申请认识'):'';
  369. Db::startTrans();
  370. try {
  371. $apply=[
  372. 'uid'=>$this->auth->id,
  373. 'nid'=>input('id'),
  374. 'status'=>0,
  375. 'grain'=>$cost
  376. ];
  377. Apply::insert($apply);
  378. user::money(-$cost,$this->auth->id,'申请认识支出');
  379. //发送微信模板消息
  380. Apply::wxKnowMessage($this->auth->id,input('id'),Date('Y-m-d H:i:s'));
  381. Db::commit();
  382. $this->success('解锁成功');
  383. }catch (Exception $e){
  384. Db::rollback();
  385. $this->error($e);
  386. return false;
  387. }
  388. }
  389. /**
  390. * 举报
  391. * @ApiMethod (POST)
  392. * @param string $nid 举报用户id
  393. * @param string $content 举报内容
  394. * @param string $image 举报图片
  395. */
  396. public function report(){
  397. $rule = [
  398. 'content|举报内容'=>'require',
  399. 'image|图片'=>'require',
  400. 'nid|举报用户'=>'require'
  401. ];
  402. $data = $this->_validate($rule);
  403. $data['uid'] = $this->auth->id;
  404. $res = Report::insert($data);
  405. if($res){
  406. $this->success('提交成功');
  407. }
  408. $this->error('提交失败');
  409. }
  410. /**
  411. * 屏蔽
  412. * @ApiMethod (POST)
  413. * @param string $type 1屏蔽2解除屏蔽
  414. * @param string $nid 屏蔽用户id(type为1时传)
  415. * @param string $id id(type为2时传)
  416. */
  417. public function shield(){
  418. if(input('type') == 1){
  419. $data = [
  420. 'uid'=>$this->auth->id,
  421. 'nid'=>input('nid')
  422. ];
  423. Shield::where($data)->find()?$this->error('您已屏蔽该用户,无需重复操作'):Shield::insert($data);
  424. $this->success('操作成功');
  425. }else{
  426. Shield::where('id',input('id'))->delete()?$this->success('解除成功'):$this->error('解除失败');
  427. }
  428. }
  429. /**
  430. * 申请认识你弹窗
  431. * @ApiReturnParams (name='count',description='会员个数')
  432. */
  433. public function applyList(){
  434. $data = Apply::all(['nid'=>$this->auth->id,'n_is_read'=>0],['uidinfo']);
  435. $count = count($data);
  436. $this->success('',['data'=>$data,'count'=>$count]);
  437. }
  438. }