AdminCategoryController.php 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370
  1. <?php
  2. // +—————————————————————————————————————————————————————————————————————
  3. // | Created by Yunbao
  4. // +—————————————————————————————————————————————————————————————————————
  5. // | Copyright (c) 2013~2022 http://www.yunbaokj.com All rights reserved.
  6. // +—————————————————————————————————————————————————————————————————————
  7. // | Author: https://gitee.com/yunbaokeji
  8. // +—————————————————————————————————————————————————————————————————————
  9. // | Date: 2022-02-17
  10. // +—————————————————————————————————————————————————————————————————————
  11. namespace app\portal\controller;
  12. use app\admin\model\RouteModel;
  13. use cmf\controller\AdminBaseController;
  14. use app\portal\model\PortalCategoryModel;
  15. use think\Db;
  16. use app\admin\model\ThemeModel;
  17. class AdminCategoryController extends AdminBaseController
  18. {
  19. /**
  20. * 文章分类列表
  21. * @adminMenu(
  22. * 'name' => '分类管理',
  23. * 'parent' => 'portal/AdminIndex/default',
  24. * 'display'=> true,
  25. * 'hasView'=> true,
  26. * 'order' => 10000,
  27. * 'icon' => '',
  28. * 'remark' => '文章分类列表',
  29. * 'param' => ''
  30. * )
  31. * @return mixed
  32. * @throws \think\db\exception\DataNotFoundException
  33. * @throws \think\db\exception\ModelNotFoundException
  34. * @throws \think\exception\DbException
  35. */
  36. public function index()
  37. {
  38. $content = hook_one('portal_admin_category_index_view');
  39. if (!empty($content)) {
  40. return $content;
  41. }
  42. $portalCategoryModel = new PortalCategoryModel();
  43. $keyword = $this->request->param('keyword');
  44. if (empty($keyword)) {
  45. $categoryTree = $portalCategoryModel->adminCategoryTableTree();
  46. $this->assign('category_tree', $categoryTree);
  47. } else {
  48. $categories = $portalCategoryModel->where('name', 'like', "%{$keyword}%")
  49. ->where('delete_time', 0)->select();
  50. $this->assign('categories', $categories);
  51. }
  52. $this->assign('keyword', $keyword);
  53. return $this->fetch();
  54. }
  55. /**
  56. * 添加文章分类
  57. * @adminMenu(
  58. * 'name' => '添加文章分类',
  59. * 'parent' => 'index',
  60. * 'display'=> false,
  61. * 'hasView'=> true,
  62. * 'order' => 10000,
  63. * 'icon' => '',
  64. * 'remark' => '添加文章分类',
  65. * 'param' => ''
  66. * )
  67. * @return mixed
  68. * @throws \think\db\exception\DataNotFoundException
  69. * @throws \think\db\exception\ModelNotFoundException
  70. * @throws \think\exception\DbException
  71. */
  72. public function add()
  73. {
  74. $content = hook_one('portal_admin_category_add_view');
  75. if (!empty($content)) {
  76. return $content;
  77. }
  78. $parentId = $this->request->param('parent', 0, 'intval');
  79. $portalCategoryModel = new PortalCategoryModel();
  80. $categoriesTree = $portalCategoryModel->adminCategoryTree($parentId);
  81. $themeModel = new ThemeModel();
  82. $listThemeFiles = $themeModel->getActionThemeFiles('portal/List/index');
  83. $articleThemeFiles = $themeModel->getActionThemeFiles('portal/Article/index');
  84. $this->assign('list_theme_files', $listThemeFiles);
  85. $this->assign('article_theme_files', $articleThemeFiles);
  86. $this->assign('categories_tree', $categoriesTree);
  87. return $this->fetch();
  88. }
  89. /**
  90. * 添加文章分类提交
  91. * @adminMenu(
  92. * 'name' => '添加文章分类提交',
  93. * 'parent' => 'index',
  94. * 'display'=> false,
  95. * 'hasView'=> false,
  96. * 'order' => 10000,
  97. * 'icon' => '',
  98. * 'remark' => '添加文章分类提交',
  99. * 'param' => ''
  100. * )
  101. */
  102. public function addPost()
  103. {
  104. $portalCategoryModel = new PortalCategoryModel();
  105. $data = $this->request->param();
  106. $result = $this->validate($data, 'PortalCategory');
  107. if ($result !== true) {
  108. $this->error($result);
  109. }
  110. $result = $portalCategoryModel->addCategory($data);
  111. if ($result === false) {
  112. $this->error('添加失败!');
  113. }
  114. $this->success('添加成功!', url('AdminCategory/index'));
  115. }
  116. /**
  117. * 编辑文章分类
  118. * @adminMenu(
  119. * 'name' => '编辑文章分类',
  120. * 'parent' => 'index',
  121. * 'display'=> false,
  122. * 'hasView'=> true,
  123. * 'order' => 10000,
  124. * 'icon' => '',
  125. * 'remark' => '编辑文章分类',
  126. * 'param' => ''
  127. * )
  128. * @return mixed
  129. * @throws \think\db\exception\DataNotFoundException
  130. * @throws \think\db\exception\ModelNotFoundException
  131. * @throws \think\exception\DbException
  132. */
  133. public function edit()
  134. {
  135. $content = hook_one('portal_admin_category_edit_view');
  136. if (!empty($content)) {
  137. return $content;
  138. }
  139. $id = $this->request->param('id', 0, 'intval');
  140. if ($id > 0) {
  141. $portalCategoryModel = new PortalCategoryModel();
  142. $category = $portalCategoryModel->get($id)->toArray();
  143. $categoriesTree = $portalCategoryModel->adminCategoryTree($category['parent_id'], $id);
  144. $themeModel = new ThemeModel();
  145. $listThemeFiles = $themeModel->getActionThemeFiles('portal/List/index');
  146. $articleThemeFiles = $themeModel->getActionThemeFiles('portal/Article/index');
  147. $routeModel = new RouteModel();
  148. $alias = $routeModel->getUrl('portal/List/index', ['id' => $id]);
  149. $category['alias'] = $alias;
  150. $this->assign($category);
  151. $this->assign('list_theme_files', $listThemeFiles);
  152. $this->assign('article_theme_files', $articleThemeFiles);
  153. $this->assign('categories_tree', $categoriesTree);
  154. return $this->fetch();
  155. } else {
  156. $this->error('操作错误!');
  157. }
  158. }
  159. /**
  160. * 编辑文章分类提交
  161. * @adminMenu(
  162. * 'name' => '编辑文章分类提交',
  163. * 'parent' => 'index',
  164. * 'display'=> false,
  165. * 'hasView'=> false,
  166. * 'order' => 10000,
  167. * 'icon' => '',
  168. * 'remark' => '编辑文章分类提交',
  169. * 'param' => ''
  170. * )
  171. */
  172. public function editPost()
  173. {
  174. $data = $this->request->param();
  175. $result = $this->validate($data, 'PortalCategory');
  176. if ($result !== true) {
  177. $this->error($result);
  178. }
  179. $portalCategoryModel = new PortalCategoryModel();
  180. $result = $portalCategoryModel->editCategory($data);
  181. if ($result === false) {
  182. $this->error('保存失败!');
  183. }
  184. $this->success('保存成功!');
  185. }
  186. /**
  187. * 文章分类选择对话框
  188. * @adminMenu(
  189. * 'name' => '文章分类选择对话框',
  190. * 'parent' => 'index',
  191. * 'display'=> false,
  192. * 'hasView'=> true,
  193. * 'order' => 10000,
  194. * 'icon' => '',
  195. * 'remark' => '文章分类选择对话框',
  196. * 'param' => ''
  197. * )
  198. * @return mixed
  199. * @throws \think\db\exception\DataNotFoundException
  200. * @throws \think\db\exception\ModelNotFoundException
  201. * @throws \think\exception\DbException
  202. */
  203. public function select()
  204. {
  205. $ids = $this->request->param('ids');
  206. $selectedIds = explode(',', $ids);
  207. $portalCategoryModel = new PortalCategoryModel();
  208. $tpl = <<<tpl
  209. <tr class='data-item-tr'>
  210. <td>
  211. <input type='checkbox' class='js-check' data-yid='js-check-y' data-xid='js-check-x' name='ids[]'
  212. value='\$id' data-name='\$name' \$checked>
  213. </td>
  214. <td>\$id</td>
  215. <td>\$spacer <a href='\$url' target='_blank'>\$name</a></td>
  216. </tr>
  217. tpl;
  218. $categoryTree = $portalCategoryModel->adminCategoryTableTree($selectedIds, $tpl);
  219. $categories = $portalCategoryModel->where('delete_time', 0)->select();
  220. $this->assign('categories', $categories);
  221. $this->assign('selectedIds', $selectedIds);
  222. $this->assign('categories_tree', $categoryTree);
  223. return $this->fetch();
  224. }
  225. /**
  226. * 文章分类排序
  227. * @adminMenu(
  228. * 'name' => '文章分类排序',
  229. * 'parent' => 'index',
  230. * 'display'=> false,
  231. * 'hasView'=> false,
  232. * 'order' => 10000,
  233. * 'icon' => '',
  234. * 'remark' => '文章分类排序',
  235. * 'param' => ''
  236. * )
  237. */
  238. public function listOrder()
  239. {
  240. parent::listOrders(Db::name('portal_category'));
  241. $this->success("排序更新成功!", '');
  242. }
  243. /**
  244. * 文章分类显示隐藏
  245. * @adminMenu(
  246. * 'name' => '文章分类显示隐藏',
  247. * 'parent' => 'index',
  248. * 'display'=> false,
  249. * 'hasView'=> false,
  250. * 'order' => 10000,
  251. * 'icon' => '',
  252. * 'remark' => '文章分类显示隐藏',
  253. * 'param' => ''
  254. * )
  255. */
  256. public function toggle()
  257. {
  258. $data = $this->request->param();
  259. $portalCategoryModel = new PortalCategoryModel();
  260. $ids = $this->request->param('ids/a');
  261. if (isset($data['ids']) && !empty($data["display"])) {
  262. $portalCategoryModel->where('id', 'in', $ids)->update(['status' => 1]);
  263. $this->success("更新成功!");
  264. }
  265. if (isset($data['ids']) && !empty($data["hide"])) {
  266. $portalCategoryModel->where('id', 'in', $ids)->update(['status' => 0]);
  267. $this->success("更新成功!");
  268. }
  269. }
  270. /**
  271. * 删除文章分类
  272. * @adminMenu(
  273. * 'name' => '删除文章分类',
  274. * 'parent' => 'index',
  275. * 'display'=> false,
  276. * 'hasView'=> false,
  277. * 'order' => 10000,
  278. * 'icon' => '',
  279. * 'remark' => '删除文章分类',
  280. * 'param' => ''
  281. * )
  282. */
  283. public function delete()
  284. {
  285. $portalCategoryModel = new PortalCategoryModel();
  286. $id = $this->request->param('id');
  287. //获取删除的内容
  288. $findCategory = $portalCategoryModel->where('id', $id)->find();
  289. if (empty($findCategory)) {
  290. $this->error('分类不存在!');
  291. }
  292. //判断此分类有无子分类(不算被删除的子分类)
  293. $categoryChildrenCount = $portalCategoryModel->where(['parent_id' => $id, 'delete_time' => 0])->count();
  294. if ($categoryChildrenCount > 0) {
  295. $this->error('此分类有子类无法删除!');
  296. }
  297. $categoryPostCount = Db::name('portal_category_post')->where('category_id', $id)->count();
  298. if ($categoryPostCount > 0) {
  299. $this->error('此分类有文章无法删除!');
  300. }
  301. $data = [
  302. 'object_id' => $findCategory['id'],
  303. 'create_time' => time(),
  304. 'table_name' => 'portal_category',
  305. 'name' => $findCategory['name']
  306. ];
  307. $result = $portalCategoryModel
  308. ->where('id', $id)
  309. ->update(['delete_time' => time()]);
  310. if ($result) {
  311. Db::name('recycleBin')->insert($data);
  312. $this->success('删除成功!');
  313. } else {
  314. $this->error('删除失败');
  315. }
  316. }
  317. }