截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CommunityCommentLogic.php 3.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. <?php
  2. namespace app\admin\logic\community;
  3. use app\common\basics\Logic;
  4. use app\common\enum\CommunityCommentEnum;
  5. use app\common\model\community\CommunityArticle;
  6. use app\common\model\community\CommunityComment;
  7. use app\common\server\UrlServer;
  8. /**
  9. * 种草社区评论
  10. * Class CommunityCommentLogic
  11. * @package app\admin\logic\community
  12. */
  13. class CommunityCommentLogic extends Logic
  14. {
  15. /**
  16. * @notes 评论列表
  17. * @param $get
  18. * @return array
  19. * @author 段誉
  20. * @date 2022/5/10 12:06
  21. */
  22. public static function lists($get)
  23. {
  24. $where = [
  25. ['c.del', '=', 0]
  26. ];
  27. if (!empty($get['keyword'])) {
  28. $where[] = ['u.sn|u.nickname|u.mobile', 'like', '%' . $get['keyword'] . '%'];
  29. }
  30. if (!empty($get['comment'])) {
  31. $where[] = ['c.comment', 'like', '%' . $get['comment'] . '%'];
  32. }
  33. if (isset($get['status']) && $get['status'] != '') {
  34. $where[] = ['c.status', '=', $get['status']];
  35. }
  36. $model = new CommunityComment();
  37. $lists = $model->alias('c')
  38. ->with(['article' => function($query) {
  39. $query->field('id,content,topic_id');
  40. }])
  41. ->field('c.*,u.nickname,u.avatar,u.sn')
  42. ->join('user u', 'u.id = c.user_id')
  43. ->where($where)
  44. ->order(['id' => 'desc'])
  45. ->append(['status_desc'])
  46. ->paginate([
  47. 'page' => $get['page'],
  48. 'list_rows' => $get['limit'],
  49. 'var_page' => 'page'
  50. ]);
  51. foreach ($lists as &$item) {
  52. $item['avatar'] = !empty($item['avatar']) ? UrlServer::getFileUrl($item['avatar']) : '';
  53. $item['status_desc'] = CommunityCommentEnum::getStatusDesc($item['status']);
  54. $item['topic_name'] = $item['article']['topic']['name'] ?? '';
  55. }
  56. return ['count' => $lists->total(), 'lists' => $lists->getCollection()];
  57. }
  58. /**
  59. * @notes 详情
  60. * @param $id
  61. * @return array
  62. * @author 段誉
  63. * @date 2022/5/10 12:15
  64. */
  65. public static function detail($id)
  66. {
  67. return CommunityComment::with(['article'])->findOrEmpty($id)->toArray();
  68. }
  69. /**
  70. * @notes 审核成功
  71. * @param $post
  72. * @return CommunityComment
  73. * @author 段誉
  74. * @date 2022/5/10 15:11
  75. */
  76. public static function audit($post)
  77. {
  78. return CommunityComment::where(['id' => $post['id']])->update([
  79. 'status' => $post['status'],
  80. 'update_time' => time()
  81. ]);
  82. }
  83. /**
  84. * @notes 删除评论
  85. * @param $id
  86. * @throws \think\db\exception\DataNotFoundException
  87. * @throws \think\db\exception\DbException
  88. * @throws \think\db\exception\ModelNotFoundException
  89. * @author 段誉
  90. * @date 2022/5/10 15:23
  91. */
  92. public static function del($id)
  93. {
  94. // 删除评论
  95. $comment = CommunityComment::find($id);
  96. $comment->del = 1;
  97. $comment->update_time = time();
  98. $comment->save();
  99. // 更新文章评论数
  100. CommunityArticle::where([
  101. ['id', '=', $comment['article_id']],
  102. ['comment', '>=', 1]]
  103. )->dec('comment')->update();
  104. }
  105. }