截流自动化的商城平台
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

CommunityArticleLogic.php 5.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  1. <?php
  2. namespace app\admin\logic\community;
  3. use app\common\basics\Logic;
  4. use app\common\enum\CommunityLikeEnum;
  5. use app\common\model\community\CommunityArticle;
  6. use app\common\model\community\CommunityComment;
  7. use app\common\model\community\CommunityLike;
  8. use app\common\model\community\CommunityTopic;
  9. use app\common\logic\CommunityArticleLogic as CommonArticleLogic;
  10. use app\common\server\UrlServer;
  11. use think\Exception;
  12. use think\facade\Db;
  13. /**
  14. * 种草社区文章逻辑
  15. * Class CommunityArticleLogic
  16. * @package app\admin\logic\community
  17. */
  18. class CommunityArticleLogic extends Logic
  19. {
  20. /**
  21. * @notes 文章列表
  22. * @param $get
  23. * @return array
  24. * @author 段誉
  25. * @date 2022/5/10 11:07
  26. */
  27. public static function lists($get)
  28. {
  29. $where = [
  30. ['a.del', '=', 0]
  31. ];
  32. if (!empty($get['keyword'])) {
  33. $where[] = ['u.sn|u.nickname|u.mobile', 'like', '%' . $get['keyword'] . '%'];
  34. }
  35. if (!empty($get['content'])) {
  36. $where[] = ['a.content', 'like', '%' . $get['content'] . '%'];
  37. }
  38. if (isset($get['status']) && $get['status'] != '') {
  39. $where[] = ['a.status', '=', $get['status']];
  40. }
  41. if (isset($get['start_time']) && $get['start_time'] != '') {
  42. $where[] = ['a.audit_time', '>=', strtotime($get['start_time'])];
  43. }
  44. if (isset($get['end_time']) && $get['end_time'] != '') {
  45. $where[] = ['a.audit_time', '<=', strtotime($get['end_time'])];
  46. }
  47. $model = new CommunityArticle();
  48. $lists = $model->with(['images'])->alias('a')
  49. ->field('a.*,u.nickname,u.avatar,u.sn')
  50. ->join('user u', 'u.id = a.user_id')
  51. ->where($where)
  52. ->order(['id' => 'desc'])
  53. ->append(['status_desc'])
  54. ->paginate([
  55. 'page' => $get['page'],
  56. 'list_rows' => $get['limit'],
  57. 'var_page' => 'page'
  58. ])
  59. ->toArray();
  60. foreach ($lists['data'] as &$item) {
  61. $item['avatar'] = !empty($item['avatar']) ? UrlServer::getFileUrl($item['avatar']) : '';
  62. }
  63. return ['count' => $lists['total'], 'lists' => $lists['data']];
  64. }
  65. /**
  66. * @notes 文章详情
  67. * @param $id
  68. * @return array
  69. * @author 段誉
  70. * @date 2022/5/10 16:53
  71. */
  72. public static function detail($id)
  73. {
  74. $detail = CommunityArticle::with(['images', 'topic', 'user' => function ($query) {
  75. $query->field(['id', 'nickname', 'sn']);
  76. }])
  77. ->append(['shop_data', 'goods_data', 'status_desc'])
  78. ->findOrEmpty($id);
  79. $detail['cate_name'] = $detail['topic']['cate']['name'] ?? '';
  80. $detail['audit_time'] = date('Y-m-d H:i:s', $detail['audit_time']);
  81. return $detail->toArray();
  82. }
  83. /**
  84. * @notes 删除文章
  85. * @param $id
  86. * @return bool
  87. * @author 段誉
  88. * @date 2022/5/10 16:34
  89. */
  90. public static function del($id)
  91. {
  92. Db::startTrans();
  93. try {
  94. $article = CommunityArticle::find($id);
  95. $article->del = 1;
  96. $article->update_time = time();
  97. $article->save();
  98. if (!empty($article['topic_id'])) {
  99. CommunityTopic::decArticleNum($article['topic_id']);
  100. }
  101. Db::commit();
  102. return true;
  103. } catch (Exception $e) {
  104. Db::rollback();
  105. self::$error = $e->getMessage();
  106. return false;
  107. }
  108. }
  109. /**
  110. * @notes 审核文章
  111. * @param $post
  112. * @return bool
  113. * @author 段誉
  114. * @date 2022/5/12 16:57
  115. */
  116. public static function audit($post)
  117. {
  118. Db::startTrans();
  119. try {
  120. $article = CommunityArticle::findOrEmpty($post['id']);
  121. $article->status = $post['status'];
  122. $article->audit_remark = $post['audit_remark'] ?? '';
  123. $article->audit_time = time();
  124. $article->save();
  125. // 通知粉丝有新文章发布
  126. CommonArticleLogic::noticeFans($article['user_id'], $post['status']);
  127. Db::commit();
  128. return true;
  129. } catch (\Exception $e) {
  130. Db::rollback();
  131. self::$error = $e->getMessage();
  132. return false;
  133. }
  134. }
  135. /**
  136. * @notes 文章关联评论及点赞
  137. * @param $get
  138. * @return array
  139. * @throws \think\db\exception\DbException
  140. * @author 段誉
  141. * @date 2022/5/11 10:14
  142. */
  143. public static function getRelationData($get)
  144. {
  145. $type = $get['type'] ?? 'comment';
  146. if ($type == 'comment') {
  147. $lists = CommunityComment::with(['user'])
  148. ->where([
  149. 'del' => 0,
  150. 'article_id' => $get['id'],
  151. ])->paginate([
  152. 'page' => $get['page'],
  153. 'list_rows' => $get['limit'],
  154. 'var_page' => 'page'
  155. ])
  156. ->toArray();
  157. } else {
  158. $lists = CommunityLike::with(['user'])
  159. ->where([
  160. 'relation_id' => $get['id'],
  161. 'type' => CommunityLikeEnum::TYPE_ARTICLE
  162. ])
  163. ->paginate([
  164. 'page' => $get['page'],
  165. 'list_rows' => $get['limit'],
  166. 'var_page' => 'page'
  167. ])
  168. ->toArray();
  169. }
  170. return ['count' => $lists['total'], 'lists' => $lists['data']];
  171. }
  172. }