PortalCategoryModel.php 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkCMF [ WE CAN DO IT MORE SIMPLE ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2013-2019 http://www.thinkcmf.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
  8. // +----------------------------------------------------------------------
  9. // | Author: 老猫 <thinkcmf@126.com>
  10. // +----------------------------------------------------------------------
  11. namespace app\portal\model;
  12. use app\admin\model\RouteModel;
  13. use think\db\Query;
  14. use think\Model;
  15. use tree\Tree;
  16. class PortalCategoryModel extends Model
  17. {
  18. protected $type = [
  19. 'more' => 'array',
  20. ];
  21. /**
  22. * 生成分类 select树形结构
  23. * @param int $selectId 需要选中的分类 id
  24. * @param int $currentCid 需要隐藏的分类 id
  25. * @return string
  26. * @throws \think\db\exception\DataNotFoundException
  27. * @throws \think\db\exception\ModelNotFoundException
  28. * @throws \think\exception\DbException
  29. */
  30. public function adminCategoryTree($selectId = 0, $currentCid = 0)
  31. {
  32. $categories = $this->order("list_order ASC")
  33. ->where('delete_time', 0)
  34. ->where(function (Query $query) use ($currentCid) {
  35. if (!empty($currentCid)) {
  36. $query->where('id', 'neq', $currentCid);
  37. }
  38. })
  39. ->select()->toArray();
  40. $tree = new Tree();
  41. $tree->icon = ['&nbsp;&nbsp;│', '&nbsp;&nbsp;├─', '&nbsp;&nbsp;└─'];
  42. $tree->nbsp = '&nbsp;&nbsp;';
  43. $newCategories = [];
  44. foreach ($categories as $item) {
  45. $item['selected'] = $selectId == $item['id'] ? "selected" : "";
  46. array_push($newCategories, $item);
  47. }
  48. $tree->init($newCategories);
  49. $str = '<option value=\"{$id}\" {$selected}>{$spacer}{$name}</option>';
  50. $treeStr = $tree->getTree(0, $str);
  51. return $treeStr;
  52. }
  53. /**
  54. * 分类树形结构
  55. * @param int $currentIds
  56. * @param string $tpl
  57. * @return string
  58. * @throws \think\db\exception\DataNotFoundException
  59. * @throws \think\db\exception\ModelNotFoundException
  60. * @throws \think\exception\DbException
  61. */
  62. public function adminCategoryTableTree($currentIds = 0, $tpl = '')
  63. {
  64. // if (!empty($currentCid)) {
  65. // $where['id'] = ['neq', $currentCid];
  66. // }
  67. $categories = $this->order("list_order ASC")->where('delete_time', 0)->select()->toArray();
  68. $tree = new Tree();
  69. $tree->icon = ['&nbsp;&nbsp;│', '&nbsp;&nbsp;├─', '&nbsp;&nbsp;└─'];
  70. $tree->nbsp = '&nbsp;&nbsp;';
  71. if (!is_array($currentIds)) {
  72. $currentIds = [$currentIds];
  73. }
  74. $newCategories = [];
  75. foreach ($categories as $item) {
  76. $item['parent_id_node'] = ($item['parent_id']) ? ' class="child-of-node-' . $item['parent_id'] . '"' : '';
  77. $item['style'] = empty($item['parent_id']) ? '' : 'display:none;';
  78. $item['status_text'] = empty($item['status']) ? '<span class="label label-warning">隐藏</span>' : '<span class="label label-success">显示</span>';
  79. $item['checked'] = in_array($item['id'], $currentIds) ? "checked" : "";
  80. $item['url'] = cmf_url('portal/List/index', ['id' => $item['id']]);
  81. $item['str_action'] = '<a class="btn btn-xs btn-primary" href="' . url("AdminCategory/add", ["parent" => $item['id']]) . '">添加子分类</a> <a class="btn btn-xs btn-primary" href="' . url("AdminCategory/edit", ["id" => $item['id']]) . '">' . lang('EDIT') . '</a> <a class="btn btn-xs btn-danger js-ajax-delete" href="' . url("AdminCategory/delete", ["id" => $item['id']]) . '">' . lang('DELETE') . '</a> ';
  82. if ($item['status']) {
  83. $item['str_action'] .= '<a class="btn btn-xs btn-warning js-ajax-dialog-btn" data-msg="您确定隐藏此分类吗" href="' . url('AdminCategory/toggle', ['ids' => $item['id'], 'hide' => 1]) . '">隐藏</a>';
  84. } else {
  85. $item['str_action'] .= '<a class="btn btn-xs btn-success js-ajax-dialog-btn" data-msg="您确定显示此分类吗" href="' . url('AdminCategory/toggle', ['ids' => $item['id'], 'display' => 1]) . '">显示</a>';
  86. }
  87. array_push($newCategories, $item);
  88. }
  89. $tree->init($newCategories);
  90. if (empty($tpl)) {
  91. $tpl = " <tr id='node-\$id' \$parent_id_node style='\$style' data-parent_id='\$parent_id' data-id='\$id'>
  92. <td style='padding-left:20px;'><input type='checkbox' class='js-check' data-yid='js-check-y' data-xid='js-check-x' name='ids[]' value='\$id' data-parent_id='\$parent_id' data-id='\$id'></td>
  93. <td><input name='list_orders[\$id]' type='text' size='3' value='\$list_order' class='input-order'></td>
  94. <td>\$id</td>
  95. <td>\$spacer <a href='\$url' target='_blank'>\$name</a></td>
  96. <td>\$description</td>
  97. <td>\$status_text</td>
  98. <td>\$str_action</td>
  99. </tr>";
  100. }
  101. $treeStr = $tree->getTree(0, $tpl);
  102. return $treeStr;
  103. }
  104. /**
  105. * 添加文章分类
  106. * @param $data
  107. * @return bool
  108. */
  109. public function addCategory($data)
  110. {
  111. $result = true;
  112. self::startTrans();
  113. try {
  114. if (!empty($data['more']['thumbnail'])) {
  115. $data['more']['thumbnail'] = cmf_asset_relative_url($data['more']['thumbnail']);
  116. }
  117. $this->allowField(true)->save($data);
  118. $id = $this->id;
  119. if (empty($data['parent_id'])) {
  120. $this->where('id', $id)->update(['path' => '0-' . $id]);
  121. } else {
  122. $parentPath = $this->where('id', intval($data['parent_id']))->value('path');
  123. $this->where('id', $id)->update(['path' => "$parentPath-$id"]);
  124. }
  125. self::commit();
  126. } catch (\Exception $e) {
  127. self::rollback();
  128. $result = false;
  129. }
  130. if ($result != false) {
  131. //设置别名
  132. $routeModel = new RouteModel();
  133. if (!empty($data['alias']) && !empty($id)) {
  134. $routeModel->setRoute($data['alias'], 'portal/List/index', ['id' => $id], 2, 5000);
  135. $routeModel->setRoute($data['alias'] . '/:id', 'portal/Article/index', ['cid' => $id], 2, 4999);
  136. }
  137. $routeModel->getRoutes(true);
  138. }
  139. return $result;
  140. }
  141. public function editCategory($data)
  142. {
  143. $result = true;
  144. $id = intval($data['id']);
  145. $parentId = intval($data['parent_id']);
  146. $oldCategory = $this->where('id', $id)->find();
  147. if (empty($parentId)) {
  148. $newPath = '0-' . $id;
  149. } else {
  150. $parentPath = $this->where('id', intval($data['parent_id']))->value('path');
  151. if ($parentPath === false) {
  152. $newPath = false;
  153. } else {
  154. $newPath = "$parentPath-$id";
  155. }
  156. }
  157. if (empty($oldCategory) || empty($newPath)) {
  158. $result = false;
  159. } else {
  160. $data['path'] = $newPath;
  161. if (!empty($data['more']['thumbnail'])) {
  162. $data['more']['thumbnail'] = cmf_asset_relative_url($data['more']['thumbnail']);
  163. }
  164. $this->isUpdate(true)->allowField(true)->save($data, ['id' => $id]);
  165. $children = $this->field('id,path')->where('path', 'like', $oldCategory['path'] . "-%")->select();
  166. if (!$children->isEmpty()) {
  167. foreach ($children as $child) {
  168. $childPath = str_replace($oldCategory['path'] . '-', $newPath . '-', $child['path']);
  169. $this->where('id', $child['id'])->update(['path' => $childPath], ['id' => $child['id']]);
  170. }
  171. }
  172. $routeModel = new RouteModel();
  173. if (!empty($data['alias'])) {
  174. $routeModel->setRoute($data['alias'], 'portal/List/index', ['id' => $data['id']], 2, 5000);
  175. $routeModel->setRoute($data['alias'] . '/:id', 'portal/Article/index', ['cid' => $data['id']], 2, 4999);
  176. } else {
  177. $routeModel->deleteRoute('portal/List/index', ['id' => $data['id']]);
  178. $routeModel->deleteRoute('portal/Article/index', ['cid' => $data['id']]);
  179. }
  180. $routeModel->getRoutes(true);
  181. }
  182. return $result;
  183. }
  184. }