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

CommunityCategoryLogic.php 3.8KB

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