截流自动化的商城平台
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.

CommunityTopicLogic.php 3.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. <?php
  2. namespace app\admin\logic\community;
  3. use app\common\basics\Logic;
  4. use app\common\model\community\CommunityArticle;
  5. use app\common\model\community\CommunityTopic;
  6. /**
  7. * 种草社区话题逻辑
  8. * Class CommunityTopicLogic
  9. * @package app\admin\logic\content
  10. */
  11. class CommunityTopicLogic extends Logic
  12. {
  13. /**
  14. * @notes 获取话题
  15. * @param $get
  16. * @return array
  17. * @throws \think\db\exception\DbException
  18. * @author 段誉
  19. * @date 2022/4/28 10:09
  20. */
  21. public static function lists($get)
  22. {
  23. $where = [
  24. ['del', '=', 0]
  25. ];
  26. if (!empty($get['name'])) {
  27. $where[] = ['name', 'like', '%'.$get['name'].'%'];
  28. }
  29. if (!empty($get['cid'])) {
  30. $where[] = ['cid', '=', $get['cid']];
  31. }
  32. $model = new CommunityTopic();
  33. $lists = $model->with(['cate'])
  34. ->where($where)
  35. ->order(['sort' => 'asc', 'id' => 'desc'])
  36. ->paginate([
  37. 'page' => $get['page'],
  38. 'list_rows' => $get['limit'],
  39. 'var_page' => 'page'
  40. ])
  41. ->toArray();
  42. foreach ($lists['data'] as &$item) {
  43. $item['cate_name'] = $item['cate']['name'] ?? '';
  44. }
  45. return ['count' => $lists['total'], 'lists' => $lists['data']];
  46. }
  47. /**
  48. * @notes 获取话题详情
  49. * @param $id
  50. * @return array
  51. * @author 段誉
  52. * @date 2022/4/28 10:11
  53. */
  54. public static function detail($id)
  55. {
  56. return CommunityTopic::findOrEmpty($id)->toArray();
  57. }
  58. /**
  59. * @notes 添加话题
  60. * @param $post
  61. * @return CommunityTopic|\think\Model
  62. * @author 段誉
  63. * @date 2022/4/28 10:23
  64. */
  65. public static function add($post)
  66. {
  67. return CommunityTopic::create([
  68. 'name' => $post['name'],
  69. 'image' => $post['image'],
  70. 'cid' => $post['cid'],
  71. 'is_show' => $post['is_show'],
  72. 'is_recommend' => $post['is_recommend'],
  73. 'sort' => $post['sort'] ?? 255,
  74. 'create_time' => time()
  75. ]);
  76. }
  77. /**
  78. * @notes 编辑话题
  79. * @param $post
  80. * @return CommunityTopic
  81. * @author 段誉
  82. * @date 2022/4/28 10:24
  83. */
  84. public static function edit($post)
  85. {
  86. return CommunityTopic::update([
  87. 'name' => $post['name'],
  88. 'image' => $post['image'],
  89. 'cid' => $post['cid'],
  90. 'is_show' => $post['is_show'],
  91. 'is_recommend' => $post['is_recommend'],
  92. 'sort' => $post['sort'] ?? 255,
  93. 'update_time' => time()
  94. ], ['id' => $post['id']]);
  95. }
  96. /**
  97. * @notes 删除话题
  98. * @param $id
  99. * @return bool
  100. * @author 段誉
  101. * @date 2022/5/10 15:53
  102. */
  103. public static function del($id)
  104. {
  105. try {
  106. $check = CommunityArticle::where(['topic_id' => $id, 'del' => 0])->findOrEmpty();
  107. if (!$check->isEmpty()) {
  108. throw new \Exception('该话题下已关联文章,不可删除');
  109. }
  110. CommunityTopic::where(['id' => $id])->update([
  111. 'del' => 1,
  112. 'update_time' => time()
  113. ]);
  114. return true;
  115. } catch (\Exception $e) {
  116. self::$error = $e->getMessage();
  117. return false;
  118. }
  119. }
  120. /**
  121. * @notes 设置显示状态
  122. * @param $post
  123. * @author 段誉
  124. * @date 2022/4/28 10:50
  125. */
  126. public static function setStatus($post)
  127. {
  128. CommunityTopic::update([
  129. $post['field'] => $post['value'],
  130. 'update_time' => time()
  131. ], ['id' => $post['id']]);
  132. }
  133. }