Information.php 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. <?php
  2. namespace app\api\controller;
  3. use app\common\controller\Api;
  4. use app\common\model\Apply;
  5. use app\common\model\Like;
  6. use app\common\model\LikeMutually;
  7. use app\common\model\SystemMessages;
  8. use app\common\model\User;
  9. /**
  10. * 消息
  11. */
  12. class Information extends Api
  13. {
  14. protected $noNeedRight = ['*'];
  15. protected $noNeedLogin = [''];
  16. /**
  17. * 消息
  18. */
  19. public function index(){
  20. $uid = $this->auth->id;
  21. //彼此喜欢
  22. $LikeMutually = LikeMutually::where(['uid'=>$uid,'isread'=>0])->with('user')->order('id desc')->find();
  23. if($LikeMutually){
  24. $res['LikeMutually'] = ['new'=>1,'LikeMutually'=>$LikeMutually];
  25. }else{
  26. $LikeMutually = LikeMutually::where(['uid'=>$uid,'isread'=>1])->with('user')->order('id desc')->find();
  27. $res['LikeMutually'] = ['new'=>0,'LikeMutually'=>$LikeMutually];
  28. }
  29. //我申请的
  30. $apply = Apply::where(['uid'=>$uid,'u_is_read'=>0])->order('id desc')->find();
  31. if($apply){
  32. $res['apply'] = ['new'=>1,'apply'=>$apply];
  33. }else{
  34. $res['apply'] = ['new'=>0,'apply'=>$apply];
  35. }
  36. //系统通知
  37. $SystemMessages = SystemMessages::where(['uid'=>$uid,'isread'=>0,'type'=>1])->order('id desc')->find();
  38. if($SystemMessages){
  39. $res['SystemMessages'] = ['new'=>1,'SystemMessages'=>$SystemMessages];
  40. }else{
  41. $SystemMessages = LikeMutually::where(['uid'=>$uid,'isread'=>1])->order('id desc')->find();
  42. $res['SystemMessages'] = ['new'=>0,'SystemMessages'=>$SystemMessages];
  43. }
  44. $this->success('',$res);
  45. }
  46. /**
  47. * 彼此喜欢
  48. */
  49. public function eachLike(){
  50. $where = [
  51. 'uid'=>$this->auth->id
  52. ];
  53. $like = LikeMutually::with('user')->where($where)->order('id','desc')->select();
  54. // foreach ($like as $k=>&$v){
  55. // if($v['like']==null){
  56. // unset($like[$k]);
  57. // }else{
  58. // $v['like_user'] = User::where('id',$v['like']['uid'])->field('id,id_authentication,avatar,createtime,username')->find();
  59. // }
  60. // }
  61. LikeMutually::read($like);
  62. $this->success('',$like);
  63. }
  64. /**
  65. * 我申请的
  66. * @ApiReturnParams (name="status",description="状态0待同意1已同意2已拒绝3已过期")
  67. */
  68. public function weApply(){
  69. $uid = $this->auth->id;
  70. $data = Apply::where(['uid'=>$uid])->with('Nuser')->order('id','desc')->select();
  71. Apply::u_read($data);
  72. $this->success('',$data);
  73. }
  74. /**
  75. * 系统通知
  76. */
  77. public function systemMessages(){
  78. $uid = $this->auth->id;
  79. $systemMessages = SystemMessages::where(['uid'=>$uid,'type'=>1,'status'=>1])->order('id','desc')->select();
  80. foreach ($systemMessages as $k=>&$v){
  81. // if($v['title'] == '头像审核未通过'){
  82. // $v = $v->toarray();
  83. // $v['content'] = $v['content'] . '拒绝原因:' . User::where(['id'=>$uid])->value('avatar_reason');
  84. // }
  85. SystemMessages::where('id',$v['id'])->update(['isread'=>1]);
  86. }
  87. $this->success('',$systemMessages);
  88. }
  89. }