Topic.php 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <?php
  2. namespace app\api\controller;
  3. use app\common\model\Topic as Topics;
  4. use app\common\controller\Api;
  5. use think\facade\Validate;
  6. /**
  7. * 话题
  8. * Class Index
  9. */
  10. class Topic extends Api
  11. {
  12. /**
  13. * 话题列表
  14. */
  15. public function topic_list(){
  16. $this->check_login();
  17. $type = input('type',0); //1:banner列表 2:导航列表 3:推荐列表
  18. $attention = input('attention',0); //1:我关注的
  19. $result = Topics::topicList($type,$attention);
  20. $this->success($result['msg'],$result['data']);
  21. }
  22. /**
  23. * 关注话题
  24. */
  25. public function attention_topic(){
  26. $this->check_login();
  27. $topic_id = input('topic_id'); //话题ID
  28. if (!$topic_id) $this->error('参数错误');
  29. $result = Topics::attentionTopic($topic_id);
  30. if ($result['code']){
  31. $this->success($result['msg']);
  32. }else{
  33. $this->error($result['msg']);
  34. }
  35. }
  36. /**
  37. * 取消关注话题
  38. */
  39. public function del_attention_topic(){
  40. $this->check_login();
  41. $topic_id = input('topic_id'); //话题ID
  42. if (!$topic_id) $this->error('参数错误');
  43. $result = Topics::delAttentionTopic($topic_id);
  44. if ($result['code']){
  45. $this->success($result['msg']);
  46. }else{
  47. $this->error($result['msg']);
  48. }
  49. }
  50. /**
  51. * 话题主页
  52. */
  53. public function topic_detail(){
  54. $this->check_login();
  55. $topic_id = input('topic_id'); //话题ID
  56. if (!$topic_id) $this->error('参数错误');
  57. $result = Topics::topicDetail($topic_id);
  58. $this->success($result['msg'],$result['data']);
  59. }
  60. }