Dynamic.php 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294
  1. <?php
  2. namespace app\api\controller;
  3. use app\common\model\Dynamic as Dynamics;
  4. use app\common\controller\Api;
  5. use think\facade\Validate;
  6. /**
  7. * 动态
  8. * Class Index
  9. */
  10. class Dynamic extends Api
  11. {
  12. /**
  13. * 写动态、修改动态
  14. */
  15. public function write_up_dynamic(){
  16. $this->check_login();
  17. $topic_id = input('topic_id'); //话题ID
  18. $content = input('content'); //内容
  19. $imgs = input('imgs'); //图片
  20. $id = input('id'); //动态ID ,有则修改,无则添加
  21. if (!$topic_id) $this->error('话题为空');
  22. if (!$content && !$imgs) $this->error('参数错误');
  23. if ($imgs)
  24. $imgs = implode(',',$imgs);
  25. $result = Dynamics::writeUpDynamic($topic_id,$content,$imgs,$id);
  26. if ($result['code']){
  27. $this->success($result['msg']);
  28. }else{
  29. $this->error($result['msg']);
  30. }
  31. }
  32. /**
  33. * 删除动态
  34. */
  35. public function del_dynamic(){
  36. $this->check_login();
  37. $id = input('id'); //动态ID
  38. if (!$id) $this->error('参数错误');
  39. $result = Dynamics::delDynamic($id);
  40. if ($result['code']){
  41. $this->success($result['msg']);
  42. }else{
  43. $this->error($result['msg']);
  44. }
  45. }
  46. /**
  47. * 我的,别人的动态列表
  48. */
  49. public function dynamic_list(){
  50. $this->check_login();
  51. $sel_user_id = input('sel_user_id');
  52. $Nowpage = input('page',1);
  53. $limits = input("limit",10);
  54. $result = Dynamics::dynamicList($sel_user_id,$Nowpage,$limits);
  55. $this->success($result['msg'],$result['data']);
  56. }
  57. /**
  58. * 动态详情页
  59. */
  60. public function dynamic_detail(){
  61. $this->check_login();
  62. $id = input('id'); //动态ID
  63. if (!$id) $this->error('参数错误');
  64. $result = Dynamics::dynamicDetail($id);
  65. $this->success($result['msg'],$result['data']);
  66. }
  67. /**
  68. * 动态点赞用户列表
  69. */
  70. public function dynamic_zan_list(){
  71. $this->check_login();
  72. $id = input('id'); //动态ID
  73. $Nowpage = input('page',1);
  74. $limits = input("limit",10);
  75. if (!$id) $this->error('参数错误');
  76. $result = Dynamics::dynamicZanList($id,$Nowpage,$limits);
  77. $this->success($result['msg'],$result['data']);
  78. }
  79. /**
  80. * 动态评论列表
  81. */
  82. public function dynamic_comments_list(){
  83. $this->check_login();
  84. $id = input('id'); //动态ID
  85. $Nowpage = input('page',1);
  86. $limits = input("limit",10);
  87. if (!$id) $this->error('参数错误');
  88. $result = Dynamics::dynamicCommentsList($id,$Nowpage,$limits);
  89. $this->success($result['msg'],$result['data']);
  90. }
  91. /**
  92. * 评论详情页
  93. */
  94. public function dynamic_comments_detail(){
  95. $this->check_login();
  96. $id = input('id'); //评论ID
  97. $Nowpage = input('page',1);
  98. $limits = input("limit",10);
  99. if (!$id) $this->error('参数错误');
  100. $result = Dynamics::dynamicCommentsDetail($id,$Nowpage,$limits);
  101. $this->success($result['msg'],$result['data']);
  102. }
  103. /**
  104. * 删除评论(自己的评论)
  105. */
  106. public function del_comments_by_my(){
  107. $this->check_login();
  108. $id = input('id'); //评论(回复)ID
  109. if (!$id) $this->error('参数错误');
  110. $result = Dynamics::delCommentsByMy($id);
  111. if ($result['code']){
  112. $this->success($result['msg']);
  113. }else{
  114. $this->error($result['msg']);
  115. }
  116. }
  117. /**
  118. * 点赞
  119. */
  120. public function zan(){
  121. $this->check_login();
  122. $type = input('type',1); //1:动态点赞 2:评论点赞
  123. $link_id = input('link_id'); //关联ID
  124. if (!$link_id) $this->error('参数错误');
  125. $result = Dynamics::zan($type,$link_id);
  126. if ($result['code']){
  127. $this->success($result['msg']);
  128. }else{
  129. $this->error($result['msg']);
  130. }
  131. }
  132. /**
  133. * 取消赞
  134. */
  135. public function del_zan(){
  136. $this->check_login();
  137. $type = input('type',1); //1:动态点赞 2:评论点赞
  138. $link_id = input('link_id'); //关联ID
  139. if (!$link_id) $this->error('参数错误');
  140. $result = Dynamics::delZan($type,$link_id);
  141. if ($result['code']){
  142. $this->success($result['msg']);
  143. }else{
  144. $this->error($result['msg']);
  145. }
  146. }
  147. /**
  148. * 评论/回复
  149. */
  150. public function comments(){
  151. $this->check_login();
  152. $dynamic_id = input('dynamic_id'); //动态ID
  153. $type = input('type',1); //1:评论动态 2:回复评论
  154. $comments_id = input('comments_id'); //回复的评论ID
  155. $to_user_id = input('to_user_id'); //被回复的用户ID
  156. $content = input('content'); //回复内容
  157. if (!$dynamic_id || !$content) $this->error('参数错误');
  158. if ($type==2){
  159. if (!$comments_id || !$to_user_id)
  160. $this->error('参数错误');
  161. }
  162. $result = Dynamics::comments($dynamic_id,$type,$content,$comments_id,$to_user_id);
  163. if ($result['code']){
  164. $this->success($result['msg']);
  165. }else{
  166. $this->error($result['msg']);
  167. }
  168. }
  169. /**
  170. * 不看他的动态
  171. */
  172. public function shielding_user(){
  173. $this->check_login();
  174. $to_user_id = input('to_user_id'); //被屏蔽的用户ID
  175. if (!$to_user_id) $this->error('参数错误');
  176. $result = Dynamics::shieldingUser($to_user_id);
  177. if ($result['code']){
  178. $this->success($result['msg']);
  179. }else{
  180. $this->error($result['msg']);
  181. }
  182. }
  183. /**
  184. * 举报
  185. */
  186. public function dynamic_report(){
  187. $this->check_login();
  188. $type = input('type',1); //1:举报动态 2:举报评论回复
  189. $link_id = input('link_id'); //举报的ID
  190. $content = input('content'); //举报内容
  191. if (!$link_id || !$content) $this->error('参数错误');
  192. $result = Dynamics::dynamicReport($type,$link_id,$content);
  193. if ($result['code']){
  194. $this->success($result['msg']);
  195. }else{
  196. $this->error($result['msg']);
  197. }
  198. }
  199. /**
  200. * 星球首页
  201. */
  202. public function dynamic_index(){
  203. $this->check_login();
  204. $type = input('type',1); //1:全部 2:男或者女
  205. $Nowpage = input('page',1);
  206. $limits = input("limit",10);
  207. $result = Dynamics::dynamicIndex($type,$Nowpage,$limits);
  208. $this->success($result['msg'],$result['data']);
  209. }
  210. /**
  211. * 话题下动态列表
  212. */
  213. public function topic_dynamic_list(){
  214. $this->check_login();
  215. $type = input('type',1); //1:按热度 2:按时间
  216. $topic_id = input('topic_id'); //话题ID
  217. $Nowpage = input('page',1);
  218. $limits = input("limit",10);
  219. if (!$topic_id) $this->error('参数错误');
  220. $result = Dynamics::topicDynamicList($type,$topic_id,$Nowpage,$limits);
  221. $this->success($result['msg'],$result['data']);
  222. }
  223. /**
  224. * 我屏蔽的用户列表
  225. */
  226. public function shielding_users_list(){
  227. $this->check_login();
  228. $Nowpage = input('page',1);
  229. $limits = input("limit",10);
  230. $result = Dynamics::shieldingUsersList($Nowpage,$limits);
  231. $this->success($result['msg'],$result['data']);
  232. }
  233. /**
  234. * 取消屏蔽
  235. */
  236. public function del_shielding(){
  237. $this->check_login();
  238. $id = input('id');
  239. if (!$id) $this->error('参数错误');
  240. $result = Dynamics::delShielding($id);
  241. if ($result['code']){
  242. $this->success($result['msg']);
  243. }else{
  244. $this->error($result['msg']);
  245. }
  246. }
  247. }