123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167 |
- <?php
-
-
- namespace app\admin\logic\community;
-
-
- use app\common\basics\Logic;
- use app\common\model\community\CommunityCategory;
- use app\common\model\community\CommunityTopic;
- use think\Exception;
-
-
- /**
- * 种草社区分类逻辑
- * Class CommunityCategoryLogic
- * @package app\admin\logic\content
- */
- class CommunityCategoryLogic extends Logic
- {
-
- /**
- * @notes 获取分类
- * @param $get
- * @return array
- * @throws \think\db\exception\DbException
- * @author 段誉
- * @date 2022/4/28 10:09
- */
- public static function lists($get)
- {
- $where = [
- ['del', '=', 0]
- ];
-
- if (!empty($get['name'])) {
- $where[] = ['name', 'like', '%'.$get['name'].'%'];
- }
-
- $model = new CommunityCategory();
- $lists = $model->field(true)
- ->where($where)
- ->order(['sort' => 'asc', 'id' => 'desc'])
- ->paginate([
- 'page' => $get['page'],
- 'list_rows' => $get['limit'],
- 'var_page' => 'page'
- ])
- ->toArray();
-
- return ['count' => $lists['total'], 'lists' => $lists['data']];
- }
-
-
- /**
- * @notes 获取分类
- * @return array
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- * @author 段誉
- * @date 2022/4/28 10:11
- */
- public static function getCategory()
- {
- return CommunityCategory::where(['del' => 0, 'is_show' => 1])
- ->order(['sort' => 'asc', 'id' => 'desc'])
- ->select()
- ->toArray();
- }
-
-
- /**
- * @notes 获取分类详情
- * @param $id
- * @return array
- * @author 段誉
- * @date 2022/4/28 10:11
- */
- public static function detail($id)
- {
- return CommunityCategory::findOrEmpty($id)->toArray();
- }
-
-
- /**
- * @notes 添加分类
- * @param $post
- * @return CommunityCategory|\think\Model
- * @author 段誉
- * @date 2022/4/28 10:23
- */
- public static function add($post)
- {
- return CommunityCategory::create([
- 'name' => $post['name'],
- 'is_show' => $post['is_show'],
- 'sort' => $post['sort'] ?? 255,
- 'create_time' => time()
- ]);
- }
-
-
- /**
- * @notes 编辑分类
- * @param $post
- * @return CommunityCategory
- * @author 段誉
- * @date 2022/4/28 10:24
- */
- public static function edit($post)
- {
- return CommunityCategory::update([
- 'name' => $post['name'],
- 'is_show' => $post['is_show'],
- 'sort' => $post['sort'] ?? 255,
- 'update_time' => time()
- ], ['id' => $post['id']]);
- }
-
-
-
- /**
- * @notes 删除分类
- * @param $id
- * @return bool
- * @author 段誉
- * @date 2022/4/28 15:19
- */
- public static function del($id)
- {
- try {
- $topic = CommunityTopic::where(['del' => 0, 'cid'=> $id])->findOrEmpty();
-
- if (!$topic->isEmpty()) {
- throw new Exception('该分类已关联话题,暂无法删除');
- }
-
- CommunityCategory::update([
- 'id' => $id,
- 'del' => 1,
- 'update_time' => time()
- ]);
-
- return true;
-
- } catch (Exception $e) {
- self::$error = $e->getMessage();
- return false;
- }
- }
-
-
-
- /**
- * @notes 设置显示状态
- * @param $post
- * @author 段誉
- * @date 2022/4/28 10:50
- */
- public static function setShowStatus($post)
- {
- CommunityCategory::update([
- 'is_show' => $post['is_show'],
- 'update_time' => time()
- ], ['id' => $post['id']]);
- }
- }
|