Brak opisu
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.

Navigation.php 14KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369
  1. <?php
  2. /**
  3. * 易优CMS
  4. * ============================================================================
  5. * 版权所有 2016-2028 海南赞赞网络科技有限公司,并保留所有权利。
  6. * 网站地址: http://www.eyoucms.com
  7. * ----------------------------------------------------------------------------
  8. * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
  9. * ============================================================================
  10. * Author: 小虎哥 <1105415366@qq.com>
  11. * Date: 2018-06-28
  12. */
  13. namespace app\admin\controller;
  14. use think\Page;
  15. use think\Db;
  16. use think\Cache;
  17. use app\admin\model\NavPosition;
  18. use app\common\logic\NavigationLogic;
  19. /**
  20. * 导航管理
  21. */
  22. class Navigation extends Base
  23. {
  24. private $position_model;
  25. private $list_db;
  26. private $position_db;
  27. private $navigationlogic;
  28. /**
  29. * 构造方法
  30. */
  31. public function __construct(){
  32. parent::__construct();
  33. $this->position_model = new NavPosition;
  34. $this->list_db = Db::name('nav_list');
  35. $this->position_db = Db::name('nav_position');
  36. $this->navigationlogic = new NavigationLogic;
  37. }
  38. //菜单管理页面
  39. public function index()
  40. {
  41. $list = array();
  42. $position_id = input('position_id/s');
  43. $map = array();
  44. if (empty($position_id)) {
  45. $position_id = $this->position_db->order('position_id asc')->limit(1)->value('position_id');
  46. }
  47. $this->assign('position_id', $position_id);
  48. $map['c.position_id'] = $position_id;
  49. $nav_list = $this->navigationlogic->nav_list(0, 0, false, 0, $map, false);
  50. $this->assign('list', $nav_list);
  51. $position_list = $this->position_db->where('is_del',0)->order('sort_order asc,position_id asc')->getAllWithIndex('position_id');
  52. $this->assign('position_list', $position_list);
  53. $web_navigation_switch = tpCache('global.web_navigation_switch');
  54. $this->assign('web_navigation_switch', intval($web_navigation_switch));
  55. /*获取所有有子栏目的栏目id*/
  56. $parent_ids = Db::name('nav_list')->where([
  57. 'parent_id' => ['gt', 0],
  58. 'is_del' => 0,
  59. ])->group('parent_id')->column('parent_id');
  60. $cookied_treeclicked = json_decode(cookie('navigation-treeClicked-Arr'));
  61. empty($cookied_treeclicked) && $cookied_treeclicked = [];
  62. $all_treeclicked = cookie('navigation-treeClicked_All');
  63. empty($all_treeclicked) && $all_treeclicked = [];
  64. $tree = [
  65. 'has_children'=>!empty($parent_ids) ? 1 : 0,
  66. 'parent_ids'=>json_encode($parent_ids),
  67. 'all_treeclicked'=>$all_treeclicked,
  68. 'cookied_treeclicked'=>$cookied_treeclicked,
  69. 'cookied_treeclicked_arr'=>json_encode($cookied_treeclicked),
  70. ];
  71. $this->assign('tree', $tree);
  72. /* end */
  73. return $this->fetch('index');
  74. }
  75. /**
  76. * 插件后台管理 - 列表
  77. */
  78. public function navigation_index()
  79. {
  80. $map = array();
  81. $list = array();
  82. $count = $this->position_db->where($map)->count('position_id');
  83. $pageObj = new Page($count, config('paginate.list_rows'));
  84. $list = $this->position_db->where($map)->order('sort_order asc,position_id desc')->limit($pageObj->firstRow.','.$pageObj->listRows)->select();
  85. $pageStr = $pageObj->show();
  86. $this->assign('list', $list);
  87. $this->assign('pageStr', $pageStr);
  88. $this->assign('pager', $pageObj);
  89. return $this->fetch('navigation_index');
  90. }
  91. public function add_position()
  92. {
  93. if (IS_POST) {
  94. $post = input('post.');
  95. // 导航不可重复
  96. $PostLevelName = array_unique($post['position_name']);
  97. if (count($PostLevelName) != count($post['position_name'])) {
  98. $this->error('导航名称不可重复!');
  99. }
  100. // 数据拼装
  101. $AddUsersLevelData = $where = [];
  102. foreach ($post['position_name'] as $key => $value) {
  103. $position_id = $post['position_id'][$key];
  104. $sort_order = !empty($post['sort_order'][$key]) ? $post['sort_order'][$key]:100;
  105. $position_name = trim($value);
  106. if (empty($position_name)) {
  107. if (empty($position_id)) {
  108. unset($AddUsersLevelData[$key]);
  109. continue;
  110. }else{
  111. $this->error('导航名称不可为空!');
  112. }
  113. }
  114. $AddUsersLevelData[$key] = [
  115. 'position_id' => $position_id,
  116. 'position_name' => $position_name,
  117. 'sort_order' => $sort_order,
  118. 'update_time' => getTime(),
  119. ];
  120. if (empty($position_id)) {
  121. $AddUsersLevelData[$key]['lang'] = $this->admin_lang;
  122. $AddUsersLevelData[$key]['add_time'] = getTime();
  123. unset($AddUsersLevelData[$key]['position_id']);
  124. }
  125. }
  126. $ReturnId = $this->position_model->saveAll($AddUsersLevelData);
  127. if ($ReturnId) {
  128. $position_name = implode(",",$post['position_name']);
  129. adminLog('新增/编辑导航管理:'.$position_name); // 写入操作日志
  130. $this->success("操作成功", url('Navigation/index'));
  131. } else {
  132. $this->error('操作失败');
  133. }
  134. }
  135. }
  136. /**
  137. * 插件后台管理 - 新增
  138. */
  139. public function add()
  140. {
  141. if (IS_AJAX_POST) {
  142. $post = input('post.');
  143. if (!empty($post)) {
  144. if (empty($post['arctype_sync'])) {
  145. if (empty($post['nav_name'])) $this->error("请填写导航名称");
  146. if (empty($post['nav_url'])) $this->error("请填写导航链接");
  147. }
  148. if (!empty($post['parent_id'])){
  149. $post['topid'] = Db::name('nav_list')->where('nav_id',$post['parent_id'])->value('topid');
  150. if (0 == $post['topid']){
  151. $post['topid'] = $post['parent_id'];
  152. }
  153. }
  154. /*封面图的本地/远程图片处理*/
  155. $is_remote = !empty($post['is_remote']) ? $post['is_remote'] : 0;
  156. $litpic = '';
  157. if (1 == $is_remote) {
  158. $litpic = $post['litpic_remote'];
  159. } else {
  160. $litpic = $post['nav_pic'];
  161. }
  162. /*--end*/
  163. if (!empty($post['type_id'])){
  164. $post['arctype_sync'] = 1;
  165. }
  166. // url格式化
  167. $post['nav_url'] = htmlspecialchars_decode($post['nav_url']);
  168. $newData = array(
  169. 'target' => !empty($post['target']) ? 1 : 0,
  170. 'nofollow' => !empty($post['nofollow']) ? 1 : 0,
  171. 'is_del' => 0,
  172. 'add_time' => getTime(),
  173. 'update_time' => getTime()
  174. );
  175. $data = array_merge($post, $newData);
  176. $insertId = $this->list_db->insert($data);
  177. if (!empty($insertId)) {
  178. Cache::clear('nav_list');
  179. adminLog('新增导航管理菜单:'.$data['nav_name']); // 写入操作日志
  180. $this->success("操作成功", url('Navigation/index', ['position_id'=>$post['position_id']]));
  181. }
  182. }
  183. $this->error("操作失败!");
  184. }
  185. $nav_id = input('nav_id/d', 0);
  186. $position_id = input('position_id/d', 0);
  187. // 前台功能下拉框
  188. $assignData['function'] = $this->navigationlogic->ForegroundFunction();
  189. // 全部栏目下拉框
  190. $assignData['arctypeHtml'] = $this->navigationlogic->getAllArctypeList();
  191. // 全部导航菜单列表
  192. $assignData['navListHtml'] = $this->navigationlogic->getAllNavList($position_id, $nav_id);
  193. $assignData['nav_id'] = $assignData['topid'] = 0;
  194. if (!empty($nav_id)) {
  195. $assignData['nav_id'] = intval($nav_id);
  196. $assignData['topid'] = Db::name('nav_list')->where('nav_id', $nav_id)->getField('topid');
  197. }
  198. $this->assign($assignData);
  199. $position_name = $this->position_db->where('position_id',$position_id)->value('position_name');
  200. $this->assign('position_name', $position_name);
  201. return $this->fetch('add');
  202. }
  203. /**
  204. * 插件后台管理 - 编辑
  205. */
  206. public function edit()
  207. {
  208. if (IS_POST) {
  209. $post = input('post.');
  210. if (!empty($post)) {
  211. $post['nav_id'] = intval($post['nav_id']);
  212. if (empty($post['type_id'])){
  213. if (empty($post['nav_name'])) $this->error("请填写导航名称");
  214. if (empty($post['nav_url'])) $this->error("请填写导航链接");
  215. $post['arctype_sync'] = 0;
  216. } else {
  217. $post['arctype_sync'] = 1;
  218. }
  219. // url格式化
  220. $post['nav_url'] = htmlspecialchars_decode($post['nav_url']);
  221. $newData = array(
  222. 'target' => !empty($post['target']) ? 1 : 0,
  223. 'nofollow' => !empty($post['nofollow']) ? 1 : 0,
  224. 'is_del' => 0,
  225. 'update_time' => getTime()
  226. );
  227. $data = array_merge($post, $newData);
  228. $ResultID = $this->list_db->where(['nav_id'=>$data['nav_id']])->cache(true, null, "nav_list")->update($data);
  229. if($ResultID !== false){
  230. adminLog('编辑导航管理菜单:'.$post['nav_name']); // 写入操作日志
  231. $this->success("操作成功!", url('Navigation/index', ['position_id'=>$post['position_id']]));
  232. }
  233. }
  234. $this->error("操作失败");
  235. }
  236. $ReturnData = array();
  237. $nav_id = input('nav_id/d', 0);
  238. if (empty($nav_id)) $this->error("请选择导航");
  239. $field = 'a.*, b.position_name, c.typename';
  240. $navigList = $this->list_db
  241. ->field($field)
  242. ->alias('a')
  243. ->join('nav_position b', 'a.position_id = b.position_id', 'LEFT')
  244. ->join('arctype c', 'a.type_id = c.id', 'LEFT')
  245. ->where('a.nav_id', $nav_id)
  246. ->find();
  247. $navigList['nav_name'] = !empty($navigList['arctype_sync']) ? $navigList['typename'] : $navigList['nav_name'];
  248. $assignData['navigList'] = $navigList;
  249. // 前台功能下拉框
  250. $assignData['function'] = $this->navigationlogic->ForegroundFunction();
  251. // 全部栏目下拉框
  252. $assignData['arctypeHtml'] = $this->navigationlogic->getAllArctypeList($navigList['type_id']);
  253. // 是否允许修改URL
  254. $allowUpdate = 1;
  255. foreach ($assignData['Function'] as $key => $value) {
  256. if ($navigList['nav_url'] == $value['url']) {
  257. $allowUpdate = 0; break;
  258. }
  259. }
  260. $assignData['allowUpdate'] = $allowUpdate;
  261. $this->assign($assignData);
  262. return $this->fetch();
  263. }
  264. /**
  265. * 删除文档
  266. */
  267. public function del()
  268. {
  269. $id_arr = input('del_id/a');
  270. $id_arr = eyIntval($id_arr);
  271. if(!empty($id_arr) && IS_POST){
  272. $result = $this->position_db->where("position_id",'IN',$id_arr)->select();
  273. $title_list = get_arr_column($result, '导航名称');
  274. $r = $this->position_db->where("position_id",'IN',$id_arr)->delete();
  275. if($r !== false){
  276. $this->list_db->where("position_id",'IN',$id_arr)->cache(true, null, "nav_list")->delete();
  277. adminLog('删除导航管理:'.implode(',', $title_list));
  278. $this->success("操作成功!");
  279. }
  280. }
  281. $this->error("操作失败!");
  282. }
  283. /**
  284. * 删除菜单
  285. */
  286. public function list_del()
  287. {
  288. $id_arr = input('del_id/a');
  289. $id_arr = eyIntval($id_arr);
  290. if(!empty($id_arr) && IS_POST){
  291. $result = $this->list_db->where("nav_id",'IN',$id_arr)->whereOr("parent_id",'IN',$id_arr)->select();
  292. $title_list = get_arr_column($result, '导航名称');
  293. $id_list = get_arr_column($result, 'nav_id');
  294. $r = $this->list_db->where("nav_id",'IN',$id_list)->cache(true, null, "nav_list")->delete();
  295. if($r !== false){
  296. adminLog('删除导航管理菜单:'.implode(',', $title_list));
  297. $this->success("操作成功!");
  298. }
  299. }
  300. $this->error("操作失败!");
  301. }
  302. /**
  303. * 开启/关闭导航模块功能
  304. * @return [type] [description]
  305. */
  306. public function ajax_open_close()
  307. {
  308. if (IS_AJAX_POST) {
  309. $value = input('param.value/d');
  310. if (1 == $value) {
  311. $web_navigation_switch = 0;
  312. } else {
  313. $web_navigation_switch = 1;
  314. }
  315. /*多语言*/
  316. if (is_language()) {
  317. $langRow = \think\Db::name('language')->order('id asc')
  318. ->cache(true, EYOUCMS_CACHE_TIME, 'language')
  319. ->select();
  320. foreach ($langRow as $key => $val) {
  321. tpCache('web', ['web_navigation_switch'=>$web_navigation_switch], $val['mark']);
  322. }
  323. } else { // 单语言
  324. tpCache('web', ['web_navigation_switch'=>$web_navigation_switch]);
  325. }
  326. /*--end*/
  327. $this->success("操作成功");
  328. }
  329. $this->error("操作失败");
  330. }
  331. }