Message.php 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. <?php
  2. namespace app\api\controller;
  3. use app\common\controller\Api;
  4. use app\common\model\CommunityModel;
  5. use think\Db;
  6. /**
  7. * 消息通知
  8. */
  9. class Message extends Api
  10. {
  11. protected $noNeedLogin = ['acvitityLists', 'Info', 'listInfo', 'qustion', 'qustionInfo', 'buildInfo', 'protable', 'trueTime', 'chooseTime', 'GgInfo'];
  12. protected $noNeedRight = ['*'];
  13. /**
  14. * 论坛动态
  15. */
  16. public function luntan()
  17. {
  18. $page = $this->request->get('page');
  19. $limit = $this->request->get('limit');
  20. if (!$page) {
  21. $pages = '0,10';
  22. } else {
  23. $page = $page - 1;
  24. if ($page < 0) $page = 0;
  25. $pages = $page . ',' . $limit;
  26. }
  27. $user = $this->auth->getUser();
  28. if ($user['luntan']==0) return $this->success('',[]);
  29. $userCommunity = CommunityModel::where('uid',$user['id'])->column('id');
  30. $str = implode(',',$userCommunity);
  31. $comment = Db::name('community_comment')
  32. ->where('c_id',"in",$str)
  33. ->limit($pages)
  34. ->order('create_time desc')->select();
  35. if (empty($comment)) return $this->success('',$comment);
  36. foreach ($comment as $k=>$v) {
  37. $comment[$k]['user'] = Db::name('user')->where('id',$v['uid'])
  38. ->where('status',1)
  39. ->field('id,avatar,username')
  40. ->find();
  41. }
  42. Db::name('user')->where('id',$user['id'])->update(['see_message_time'=>time()]);
  43. return json(['code'=>1,'data'=>$comment]);
  44. }
  45. /**
  46. * 活动动态
  47. */
  48. public function huodong()
  49. {
  50. $user = $this->auth->getUser();
  51. if ($user['huodong']==0) return $this->success('',[]);
  52. $data1 = Db::name('park_order o')
  53. ->join('park_activity a','o.a_id=a.id')
  54. ->where('o.uid',$user['id'])
  55. ->order('o.create_time desc')
  56. ->field('a.id,a.image')
  57. ->select();
  58. if (!empty($data1)) {
  59. foreach ($data1 as $k=>$v) {
  60. $data1[$k]['image'] = config('site.httpurl').$data1[$k]['image'];
  61. $data1[$k]['type'] = 1;
  62. }
  63. }
  64. $data2 = Db::name('acitivity_order o')
  65. ->join('avcitity a','o.a_id=a.id')
  66. ->where('o.uid',$user['id'])
  67. ->order('o.create_time desc')
  68. ->field('a.id,a.image')
  69. ->select();
  70. if (!empty($data2)) {
  71. foreach ($data2 as $m=>$n) {
  72. // $data2[$m]['image'] = config('site.httpurl').$data2[$m]['image'];
  73. $data2[$m]['type'] = 2;
  74. }
  75. }
  76. $data = array_merge($data1,$data2);
  77. return json(['code' =>1 ,'data'=>$data]);
  78. }
  79. /**
  80. * 服务动态
  81. */
  82. public function fuwu()
  83. {
  84. $page = $this->request->get('page');
  85. $limit = $this->request->get('limit');
  86. if (!$page) {
  87. $pages = '0,10';
  88. } else {
  89. $page = $page - 1;
  90. if ($page < 0) $page = 0;
  91. $pages = $page . ',' . $limit;
  92. }
  93. $user = $this->auth->getUser();
  94. if ($user['huodong']==0) return $this->success('',[]);
  95. $data = Db::name('business_declare d')
  96. ->join('business_lists l','d.lid=l.id')
  97. ->where('d.uid',$user['id'])
  98. ->limit($pages)
  99. ->order('d.create_time desc')
  100. ->field('l.id,l.image,l.title')
  101. ->select();
  102. if (empty($data)) return $this->success('',[]);
  103. foreach ( $data as $k=>$v) {
  104. $data[$k]['image'] = config('site.httpurl'). $data[$k]['image'];
  105. }
  106. return $this->success('',$data);
  107. }
  108. /**
  109. * 平台信息
  110. */
  111. public function pingtai()
  112. {
  113. $user = $this->auth->getUser();
  114. $page = $this->request->get('page');
  115. $limit = $this->request->get('limit');
  116. if (!$page) {
  117. $pages = '0,10';
  118. } else {
  119. $page = $page - 1;
  120. if ($page < 0) $page = 0;
  121. $pages = $page . ',' . $limit;
  122. }
  123. $data = Db::name('admin_message')->limit($pages)->order('create_time desc')->select();
  124. Db::name('user')->where('id',$user['id'])->update(['see_message_time'=>time()]);
  125. return $this->success('',$data);
  126. }
  127. }