News.php 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217
  1. <?php
  2. namespace app\data\controller\api\auth;
  3. use app\data\controller\api\Auth;
  4. use app\data\service\NewsService;
  5. /**
  6. * 文章评论内容
  7. * Class News
  8. * @package app\data\controller\api\auth
  9. */
  10. class News extends Auth
  11. {
  12. /**
  13. * 绑定数据表
  14. * @var string
  15. */
  16. protected $table = 'DataNewsXCollect';
  17. /**
  18. * 用户评论内容
  19. * @throws \think\db\exception\DbException
  20. */
  21. public function addComment()
  22. {
  23. $data = $this->_vali([
  24. 'uid.value' => $this->uuid,
  25. 'type.value' => 4,
  26. 'status.value' => 1,
  27. 'code.require' => '文章不能为空!',
  28. 'reply.require' => '评论不能为空!',
  29. ]);
  30. if ($this->app->db->name($this->table)->insert($data) !== false) {
  31. NewsService::instance()->syncNewsTotal($data['code']);
  32. $this->success('添加评论成功!');
  33. } else {
  34. $this->error('添加评论失败!');
  35. }
  36. }
  37. /**
  38. * 获取我的评论
  39. * @throws \think\db\exception\DataNotFoundException
  40. * @throws \think\db\exception\DbException
  41. * @throws \think\db\exception\ModelNotFoundException
  42. */
  43. public function getComment()
  44. {
  45. $query = $this->_query($this->table)->where(['uid' => $this->uuid, 'type' => 4]);
  46. $result = $query->whereIn('status', [1, 2])->order('id desc')->page(true, false, false, 15);
  47. NewsService::instance()->buildListByUidAndCode($result);
  48. $this->success('获取评论列表成功', $result);
  49. }
  50. /**
  51. * 删除内容评论
  52. * @throws \think\db\exception\DbException
  53. */
  54. public function delComment()
  55. {
  56. $data = $this->_vali([
  57. 'uid.value' => $this->uuid,
  58. 'type.value' => 4,
  59. 'id.require' => '评论编号不能为空!',
  60. 'code.require' => '文章编号不能为空!',
  61. ]);
  62. if ($this->app->db->name('DataNewsXCollect')->where($data)->delete() !== false) {
  63. $this->success('评论删除成功!');
  64. } else {
  65. $this->error('认证删除失败!');
  66. }
  67. }
  68. /**
  69. * 添加内容收藏
  70. * @throws \think\db\exception\DbException
  71. */
  72. public function addCollect()
  73. {
  74. $data = $this->_vali([
  75. 'uid.value' => $this->uuid,
  76. 'type.value' => 1,
  77. 'status.value' => 2,
  78. 'code.require' => '文章编号不能为空!',
  79. ]);
  80. if ($this->app->db->name('DataNewsXCollect')->where($data)->count() > 0) {
  81. $this->success('您已收藏!');
  82. }
  83. if ($this->app->db->name('DataNewsXCollect')->insert($data) !== false) {
  84. NewsService::instance()->syncNewsTotal($data['code']);
  85. $this->success('收藏成功!');
  86. } else {
  87. $this->error('收藏失败!');
  88. }
  89. }
  90. /**
  91. * 取消收藏文章
  92. * @throws \think\db\exception\DbException
  93. */
  94. public function delCollect()
  95. {
  96. $data = $this->_vali([
  97. 'uid.value' => $this->uuid,
  98. 'type.value' => 1,
  99. 'code.require' => '文章编号不能为空!',
  100. ]);
  101. if ($this->app->db->name('DataNewsXCollect')->where($data)->delete() !== false) {
  102. NewsService::instance()->syncNewsTotal($data['code']);
  103. $this->success('取消收藏成功!');
  104. } else {
  105. $this->error('取消收藏失败!');
  106. }
  107. }
  108. /**
  109. * 获取用户收藏的资讯
  110. * @throws \think\db\exception\DbException
  111. */
  112. public function getCollect()
  113. {
  114. $map = ['uid' => $this->uuid, 'type' => 1];
  115. $query = $this->_query('DataNewsXCollect')->where($map);
  116. $result = $query->order('id desc')->page(true, false, false, 15);
  117. NewsService::instance()->buildListByUidAndCode($result['list']);
  118. $this->success('获取收藏记录成功!', $result);
  119. }
  120. /**
  121. * 添加内容点赞
  122. * @throws \think\db\exception\DbException
  123. */
  124. public function addLike()
  125. {
  126. $data = $this->_vali([
  127. 'uid.value' => $this->uuid,
  128. 'type.value' => 2,
  129. 'status.value' => 2,
  130. 'code.require' => '文章编号不能为空!',
  131. ]);
  132. if ($this->app->db->name('DataNewsXCollect')->where($data)->count() > 0) {
  133. $this->success('您已点赞!');
  134. }
  135. if ($this->app->db->name('DataNewsXCollect')->insert($data) !== false) {
  136. NewsService::instance()->syncNewsTotal($data['code']);
  137. $this->success('点赞成功!');
  138. } else {
  139. $this->error('点赞失败!');
  140. }
  141. }
  142. /**
  143. * 取消内容点赞
  144. * @throws \think\db\exception\DbException
  145. */
  146. public function delLike()
  147. {
  148. $data = $this->_vali([
  149. 'uid.value' => $this->uuid,
  150. 'type.value' => 2,
  151. 'code.require' => '文章编号不能为空!',
  152. ]);
  153. if ($this->app->db->name('DataNewsXCollect')->where($data)->delete() !== false) {
  154. NewsService::instance()->syncNewsTotal($data['code']);
  155. $this->success('取消点赞成功!');
  156. } else {
  157. $this->error('取消点赞失败!');
  158. }
  159. }
  160. /**
  161. * 获取用户收藏的资讯
  162. * @throws \think\db\exception\DbException
  163. */
  164. public function getLike()
  165. {
  166. $query = $this->_query('DataNewsXCollect');
  167. $query->where(['uid' => $this->uuid, 'type' => 2, 'status' => 2]);
  168. $result = $query->order('id desc')->page(true, false, false, 15);
  169. NewsService::instance()->buildListByUidAndCode($result['list']);
  170. $this->success('获取点赞记录成功!', $result);
  171. }
  172. /**
  173. * 添加用户的浏览历史
  174. * @throws \think\db\exception\DbException
  175. */
  176. public function addHistory()
  177. {
  178. $data = $this->_vali([
  179. 'uid.value' => $this->uuid,
  180. 'type.value' => 2,
  181. 'status.value' => 2,
  182. 'code.require' => '文章编号不能为空!',
  183. ]);
  184. $this->app->db->name('DataNewsXCollect')->where($data)->delete();
  185. $this->app->db->name('DataNewsXCollect')->insert($data);
  186. $this->success('添加浏览历史成功!');
  187. }
  188. /**
  189. * 获取用户的浏览历史
  190. * @throws \think\db\exception\DataNotFoundException
  191. * @throws \think\db\exception\DbException
  192. * @throws \think\db\exception\ModelNotFoundException
  193. */
  194. public function getHistory()
  195. {
  196. $query = $this->_query('DataNewsXCollect');
  197. $query->where(['uid' => $this->uuid, 'type' => 3, 'status' => 2]);
  198. $result = $query->order('id desc')->page(true, false, false, 15);
  199. NewsService::instance()->buildListByUidAndCode($result['list']);
  200. $this->success('获取浏览历史成功!', $result);
  201. }
  202. }