Api.php 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195
  1. <?php
  2. namespace Community\Src;
  3. use Dever;
  4. use Collection\Lib\Core;
  5. class Api extends Core
  6. {
  7. public function __construct()
  8. {
  9. $this->cate_id = Dever::input('cate_id');
  10. $this->type = Dever::input('type', 3);
  11. $this->type_id = Dever::input('type_id', 1);
  12. parent::__construct();
  13. }
  14. # 获取社区下的分类
  15. public function category()
  16. {
  17. $info_id = $this->id;
  18. $page_id = $this->page_id;
  19. $content_id = Dever::input('content_id');
  20. # 之后要通过合集id获取名字
  21. $cate_data = Dever::db('community/cate')->getAll();
  22. $where['info_id'] = $info_id;
  23. $community = Dever::db('collection/community')->one($where);
  24. $data['cate'] = array();
  25. if ($community && $community['cate']) {
  26. $cate = $community['cate'];
  27. $cate = explode(',', $cate);
  28. $cate_name = explode(',', $community['cate_name']);
  29. $i = 0;
  30. foreach ($cate_data as $k => $v) {
  31. if (in_array($v['id'], $cate)) {
  32. if (isset($cate_name[$i]) && $cate_name[$i]) {
  33. $v['name'] = $cate_name[$i];
  34. }
  35. $data['cate'][$i] = $v;
  36. $i++;
  37. }
  38. }
  39. }
  40. return $data;
  41. }
  42. # 获取社区下的帖子
  43. public function info()
  44. {
  45. $id = Dever::input('info_id');
  46. $data = Dever::load('community/lib/info')->getData('getAll', $this->uid, $this->cate_id, $this->type, $this->type_id, false, $id, $this->times, $this->day, $this->id);
  47. return $data;
  48. }
  49. # 获取弹幕、评论
  50. public function comment()
  51. {
  52. $user = Dever::input('user', false);
  53. $data = Dever::load('community/lib/comment')->getData('getAll', $this->uid, $this->type, $this->type_id, $user, $this->id);
  54. return $data;
  55. }
  56. # 获取聊天泡泡
  57. public function tips()
  58. {
  59. $user = Dever::input('user', false);
  60. $data = Dever::load('community/lib/tips')->getData('getAll', $this->uid, $this->type, $this->type_id, $user, $this->id);
  61. return $data;
  62. }
  63. # 发布弹幕、评论
  64. public function addComment()
  65. {
  66. $pic = Dever::input('pic');
  67. $playtime = Dever::input('playtime');
  68. $content = Dever::input('content');
  69. if (!$content) {
  70. Dever::alert('请填写内容');
  71. }
  72. $type_id = Dever::input('type_id');
  73. if (!$type_id) {
  74. Dever::alert('错误的信息');
  75. }
  76. $type = Dever::input('type');
  77. if (!$type) {
  78. Dever::alert('错误的信息');
  79. }
  80. if ($type == 'content/product') {
  81. # 对这种评论需要验证是否有权限
  82. $buy = Dever::load('goods/lib/order')->checkBuy($this->uid, $type_id);
  83. if (!$buy) {
  84. Dever::alert('未购买,您没有权限评价');
  85. }
  86. }
  87. Dever::load('community/lib/comment')->submit($this->uid, $type_id, $type, $pic, $content, $playtime, 'collection/info', $this->id);
  88. return 'yes';
  89. }
  90. # 发布聊天泡泡
  91. public function addTips()
  92. {
  93. $pic = Dever::input('pic');
  94. $playtime = Dever::input('playtime');
  95. $content = Dever::input('content');
  96. if (!$content) {
  97. Dever::alert('请填写内容');
  98. }
  99. $type_id = Dever::input('type_id');
  100. if (!$type_id) {
  101. Dever::alert('错误的信息');
  102. }
  103. $type = Dever::input('type');
  104. if (!$type) {
  105. Dever::alert('错误的信息');
  106. }
  107. $seat = Dever::db('user/seat')->one($type_id);
  108. if (!$seat || $seat['uid'] != $this->uid) {
  109. Dever::alert('这不是您的座位');
  110. }
  111. Dever::load('community/lib/tips')->submit($this->uid, $type_id, $type, $pic, $content, $playtime, 'collection/info', $this->id);
  112. return 'yes';
  113. }
  114. # 发布信息
  115. public function add()
  116. {
  117. $pic = Dever::input('pic');
  118. $content = Dever::input('content');
  119. if (!$content) {
  120. Dever::alert('请填写内容');
  121. }
  122. $cate_id = Dever::input('cate_id');
  123. if (!$cate_id) {
  124. Dever::alert('错误的信息');
  125. }
  126. $type_id = Dever::input('type_id');
  127. if (!$type_id) {
  128. Dever::alert('错误的信息');
  129. }
  130. $type = Dever::input('type');
  131. if (!$type) {
  132. Dever::alert('错误的信息');
  133. }
  134. $to_id = Dever::input('to_id');
  135. $to_uid = Dever::input('to_uid');
  136. Dever::load('community/lib/info')->submit($this->uid, $cate_id, $type_id, $type, $pic, $content, $to_id, $to_uid, $this->day, 'collection/info', $this->id);
  137. return 'yes';
  138. }
  139. # 点赞
  140. public function up()
  141. {
  142. $id = Dever::input('id');
  143. if (!$id) {
  144. Dever::alert('错误的信息');
  145. }
  146. $type = Dever::input('type', 20);
  147. if (!$type) {
  148. Dever::alert('错误的信息');
  149. }
  150. Dever::load('community/lib/up')->submit($this->uid, $id, $type);
  151. return 'yes';
  152. }
  153. # 反对
  154. public function oppose()
  155. {
  156. $id = Dever::input('id');
  157. if (!$id) {
  158. Dever::alert('错误的信息');
  159. }
  160. $type = Dever::input('type', 20);
  161. if (!$type) {
  162. Dever::alert('错误的信息');
  163. }
  164. Dever::load('community/lib/oppose')->submit($this->uid, $id, $type);
  165. return 'yes';
  166. }
  167. }