Forum.php 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. <?php
  2. namespace app\api\controller;
  3. use app\common\controller\Api;
  4. use think\Db;
  5. class Forum extends Api
  6. {
  7. /**
  8. * @return void
  9. * @throws \think\db\exception\DataNotFoundException
  10. * @throws \think\db\exception\ModelNotFoundException
  11. * @throws \think\exception\DbException
  12. * 论坛推荐
  13. */
  14. public function index(){
  15. $mid = $this->check_login();
  16. $page = input('page',1);
  17. $page_num = input('page_num',10);
  18. $list = Db::name('store_forum')
  19. ->where(array('status'=>2,'is_deleted'=>0))
  20. ->order('id','DESC')
  21. ->paginate($page_num,'',['page'=>$page]);
  22. $list= $list->items();
  23. foreach ($list as $k=>$v){
  24. $list[$k]['show_images'] = explode(',', $list[$k]['show_images']);
  25. $list[$k]['guanzhu'] = is_follow($mid,$list[$k]['m_id']);
  26. $list[$k]['is_give'] = is_give($mid,$list[$k]['id']);
  27. $list[$k]['give'] = Db::name('store_forum_give')->where('f_id',$list[$k]['id'])->count();
  28. $list[$k]['comment'] = Db::name('store_forum_comment')->where('f_id',$list[$k]['id'])->count();
  29. $user = Db::name('store_member')->where('id',$list[$k]['m_id'])->field('nickname,sex,province_id,headimg,age')->find();
  30. $list[$k]['nickame'] = $user['nickname'];
  31. $list[$k]['headimg'] = $user['headimg'];
  32. $list[$k]['sex'] = $user['sex'];
  33. $list[$k]['city'] = areaname($user['province_id']);
  34. $list[$k]['age']=$user['age'];
  35. }
  36. $this->success('论坛推荐',$list);
  37. }
  38. /**
  39. * @return void
  40. * @throws \think\db\exception\DataNotFoundException
  41. * @throws \think\db\exception\ModelNotFoundException
  42. * @throws \think\exception\DbException
  43. * 详情
  44. */
  45. public function forumdetails(){
  46. $mid = $this->check_login();
  47. $data = input();
  48. $id = $data['id'];
  49. $info = Db::name('store_forum')
  50. ->where(array('status'=>2,'is_deleted'=>0))
  51. ->where('id',$id)
  52. ->find();
  53. $info['show_images'] = explode(',', $info['show_images']);
  54. $user = Db::name('store_member')->where('id',$info['m_id'])->field('nickname,province_id,headimg,age')->find();
  55. $info['nickame'] = $user['nickname'];
  56. $info['headimg']=$user['headimg'];
  57. $info['age'] = $user['age'];
  58. $info['city'] = areaname($user['province_id']);
  59. $info['give'] = Db::name('store_forum_give')->alias('f')->join('store_member m','m.id=f.m_id')->join('store_area a','m.province_id=a.id')->where('f_id',$info['id'])->field('m.id,nickname,headimg,age,shortname')->select();
  60. foreach ($info['give'] as $k=>$v){
  61. $info['give'][$k]['guanzhu'] = is_follow($mid,$info['give'][$k]['id']);
  62. }
  63. $info['comment'] = Db::name('store_forum_comment')->alias('f')->join('store_member m','m.id=f.m_id')->join('store_area a','m.province_id=a.id')->where('f_id',$info['id'])->field('m.id,nickname,headimg,age,shortname,f.comment,f.create_at')->select();
  64. foreach ($info['comment'] as $k1=>$v1){
  65. $info['comment'][$k1]['guanzhu'] = is_follow($mid,$info['comment'][$k1]['id']);
  66. }
  67. $this->success('查看详情',$info);
  68. }
  69. /**
  70. * @return void
  71. *发布动态
  72. */
  73. public function releaseforum(){
  74. $mid = $this->check_login();
  75. $data = input();
  76. if(empty($data['image'])){
  77. $this->error('图片/视频不能为空');
  78. }
  79. $file = explode('.',$data['image']);
  80. $suffix = end($file);
  81. $data= [
  82. 'content'=>$data['content'],
  83. 'show_images'=>$data['image'],
  84. 'suffix' =>$suffix,
  85. 'm_id' =>$mid,
  86. 'create_at'=>date('Y-m-d H:i:s'),
  87. ];
  88. Db::name('store_forum')->insert($data);
  89. $this->success('发布成功等待审核');
  90. }
  91. /**
  92. * @return void
  93. * @throws \think\Exception
  94. * @throws \think\db\exception\DataNotFoundException
  95. * @throws \think\db\exception\ModelNotFoundException
  96. * @throws \think\exception\DbException
  97. * @throws \think\exception\PDOException
  98. * 动态点赞
  99. */
  100. public function forum_give(){
  101. $mid = $this->check_login();
  102. $fid = input('fid');
  103. $give = is_give($mid,$fid);
  104. if($give){
  105. Db::name('store_forum_give')->where(array('m_id' => $mid, 'f_id' => $fid))->delete();
  106. $this->success('取消点赞');
  107. }
  108. else{
  109. Db::name('store_forum_give')->insert(['m_id'=>$mid,'f_id'=>$fid,'create_at'=>date('Y-m-d H:i:s')]);
  110. $this->success('感谢你的点赞');
  111. }
  112. }
  113. /**
  114. * @return void
  115. * 论坛评论
  116. */
  117. public function forum_comment(){
  118. $mid = $this->check_login();
  119. $data = input();
  120. $insert = [
  121. 'f_id'=>$data['fid'],
  122. 'm_id'=>$mid,
  123. 'comment'=>$data['comment'],
  124. 'create_at'=>date('Y-m-d H:i:s')
  125. ];
  126. Db::name('store_forum_comment')->insert($insert);
  127. $this->success('评论成功');
  128. }
  129. }