Category.php 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  1. <?php
  2. namespace app\admin\controller;
  3. use app\common\controller\Backend;
  4. use app\common\model\Category as CategoryModel;
  5. use app\common\model\Video;
  6. use fast\Tree;
  7. /**
  8. * 分类管理
  9. *
  10. * @icon fa fa-list
  11. * @remark 用于管理网站的所有分类,分类可进行无限级分类,分类类型请在常规管理->系统配置->字典配置中添加
  12. */
  13. class Category extends Backend
  14. {
  15. /**
  16. * @var \app\common\model\Category
  17. */
  18. protected $model = null;
  19. protected $categorylist = [];
  20. protected $noNeedRight = ['selectpage'];
  21. public function _initialize()
  22. {
  23. parent::_initialize();
  24. $this->model = model('app\common\model\Category');
  25. $tree = Tree::instance();
  26. $tree->init(collection($this->model->order('weigh desc,id desc')->select())->toArray(), 'pid');
  27. $this->categorylist = $tree->getTreeList($tree->getTreeArray(0), 'name');
  28. $categorydata = [0 => ['type' => 'all', 'name' => __('None')]];
  29. foreach ($this->categorylist as $k => $v) {
  30. $categorydata[$v['id']] = $v;
  31. }
  32. $typeList = CategoryModel::getTypeList();
  33. $this->view->assign("flagList", $this->model->getFlagList());
  34. $this->view->assign("typeList", $typeList);
  35. $this->view->assign("parentList", $categorydata);
  36. $this->assignconfig('typeList', $typeList);
  37. }
  38. /**
  39. * 查看
  40. */
  41. public function index()
  42. {
  43. //设置过滤方法
  44. $this->request->filter(['strip_tags']);
  45. if ($this->request->isAjax()) {
  46. $search = $this->request->request("search");
  47. $type = $this->request->request("type");
  48. //构造父类select列表选项数据
  49. $list = [];
  50. foreach ($this->categorylist as $k => $v) {
  51. if ($search) {
  52. if ($v['type'] == $type && stripos($v['name'], $search) !== false || stripos($v['nickname'], $search) !== false) {
  53. if ($type == "all" || $type == null) {
  54. $list = $this->categorylist;
  55. } else {
  56. $list[] = $v;
  57. }
  58. }
  59. } else {
  60. if ($type == "all" || $type == null) {
  61. $list = $this->categorylist;
  62. } elseif ($v['type'] == $type) {
  63. $list[] = $v;
  64. }
  65. }
  66. }
  67. $total = count($list);
  68. $result = array("total" => $total, "rows" => $list);
  69. return json($result);
  70. }
  71. return $this->view->fetch();
  72. }
  73. /**
  74. * 添加
  75. */
  76. public function add()
  77. {
  78. if ($this->request->isPost()) {
  79. $this->token();
  80. }
  81. return parent::add();
  82. }
  83. /**
  84. * 编辑
  85. */
  86. public function edit($ids = null)
  87. {
  88. $row = $this->model->get($ids);
  89. if (!$row) {
  90. $this->error(__('No Results were found'));
  91. }
  92. $adminIds = $this->getDataLimitAdminIds();
  93. if (is_array($adminIds)) {
  94. if (!in_array($row[$this->dataLimitField], $adminIds)) {
  95. $this->error(__('You have no permission'));
  96. }
  97. }
  98. if ($this->request->isPost()) {
  99. $this->token();
  100. $params = $this->request->post("row/a");
  101. if ($params) {
  102. $params = $this->preExcludeFields($params);
  103. /*if ($params['pid'] != $row['pid']) {
  104. $childrenIds = Tree::instance()->init(collection(\app\common\model\Category::select())->toArray())->getChildrenIds($row['id'], true);
  105. if (in_array($params['pid'], $childrenIds)) {
  106. $this->error(__('Can not change the parent to child or itself'));
  107. }
  108. }*/
  109. try {
  110. //是否采用模型验证
  111. if ($this->modelValidate) {
  112. $name = str_replace("\\model\\", "\\validate\\", get_class($this->model));
  113. $validate = is_bool($this->modelValidate) ? ($this->modelSceneValidate ? $name . '.edit' : $name) : $this->modelValidate;
  114. $row->validate($validate);
  115. }
  116. $result = $row->allowField(true)->save($params);
  117. if ($result !== false) {
  118. $this->success();
  119. } else {
  120. $this->error($row->getError());
  121. }
  122. } catch (\think\exception\PDOException $e) {
  123. $this->error($e->getMessage());
  124. } catch (\think\Exception $e) {
  125. $this->error($e->getMessage());
  126. }
  127. }
  128. $this->error(__('Parameter %s can not be empty', ''));
  129. }
  130. $this->view->assign("row", $row);
  131. return $this->view->fetch();
  132. }
  133. /**
  134. * Selectpage搜索
  135. *
  136. * @internal
  137. */
  138. public function selectpage()
  139. {
  140. return parent::selectpage();
  141. }
  142. public function del($ids = "")
  143. {
  144. $video=Video::where('category_id','in',$ids)->find();
  145. if($video){
  146. $this->error('该分类存在视频,请删除视频再试');
  147. }
  148. parent::del($ids);
  149. }
  150. }