123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218 |
- <?php
- // +----------------------------------------------------------------------
- // | ThinkCMF [ WE CAN DO IT MORE SIMPLE ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2013-2019 http://www.thinkcmf.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
- // +----------------------------------------------------------------------
- // | Author: 老猫 <thinkcmf@126.com>
- // +----------------------------------------------------------------------
- namespace app\admin\model;
- use think\Model;
- use think\facade\Cache;
- class AdminMenuModel extends Model
- {
- /**
- * 按父ID查找菜单子项
- * @param int $parentId 父菜单ID
- * @param boolean $withSelf 是否包括他自己
- * @return array|string|\think\Collection
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- */
- public function adminMenu($parentId, $withSelf = false)
- {
- //父节点ID
- $parentId = intval($parentId);
- $result = $this->where(['parent_id' => $parentId, 'status' => 1])->order("list_order", "ASC")->select();
- if ($withSelf) {
- $result2[] = $this->where('id', $parentId)->find();
- $result = array_merge($result2, $result);
- }
- //权限检查
- if (cmf_get_current_admin_id() == 1) {
- //如果是超级管理员 直接通过
- return $result;
- }
- $array = [];
- foreach ($result as $v) {
- //方法
- $action = $v['action'];
- //public开头的通过
- if (preg_match('/^public_/', $action)) {
- $array[] = $v;
- } else {
- if (preg_match('/^ajax_([a-z]+)_/', $action, $_match)) {
- $action = $_match[1];
- }
- $ruleName = strtolower($v['app'] . "/" . $v['controller'] . "/" . $action);
- // print_r($ruleName);
- if (cmf_auth_check(cmf_get_current_admin_id(), $ruleName)) {
- $array[] = $v;
- }
- }
- }
- return $array;
- }
- /**
- * 获取菜单 头部菜单导航
- * @param string $parentId 菜单id
- * @param bool $bigMenu
- * @return array|string|\think\Collection
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- */
- public function subMenu($parentId = '', $bigMenu = false)
- {
- $array = $this->adminMenu($parentId, 1);
- $numbers = count($array);
- if ($numbers == 1 && !$bigMenu) {
- return '';
- }
- return $array;
- }
- /**
- * 菜单树状结构集合
- */
- public function menuTree()
- {
- $data = $this->getTree(0);
- return $data;
- }
- /**
- * 取得树形结构的菜单
- * @param $myId
- * @param string $parent
- * @param int $Level
- * @return bool|null
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- */
- public function getTree($myId, $parent = "", $Level = 1)
- {
- $data = $this->adminMenu($myId);
- $Level++;
- if (count($data) > 0) {
- $ret = NULL;
- foreach ($data as $a) {
- $id = $a['id'];
- $app = $a['app'];
- $controller = ucwords($a['controller']);
- $action = $a['action'];
- //附带参数
- $params = "";
- if (!empty($a['param'])) {
- $params = htmlspecialchars_decode($a['param']);
- }
- if (strpos($app, 'plugin/') === 0) {
- $pluginName = str_replace('plugin/', '', $app);
- $url = cmf_plugin_url($pluginName . "://{$controller}/{$action}{$params}");
- } else {
- $url = url("{$app}/{$controller}/{$action}", $params);
- }
- $app = str_replace('/', '_', $app);
- $array = [
- "icon" => $a['icon'],
- "id" => $id . $app,
- "name" => $a['name'],
- "parent" => $parent,
- "url" => $url,
- 'lang' => strtoupper($app . '_' . $controller . '_' . $action)
- ];
- $ret[$id . $app] = $array;
- $child = $this->getTree($a['id'], $id, $Level);
- //由于后台管理界面只支持三层,超出的不层级的不显示
- if ($child && $Level <= 3) {
- $ret[$id . $app]['items'] = $child;
- }
- }
- return $ret;
- }
- return false;
- }
- /**
- * 更新缓存
- * @param null $data
- * @return array|null
- */
- public function menuCache($data = null)
- {
- if (empty($data)) {
- $data = $this->order("list_order", "ASC")->column('*');
- Cache::set('Menu', $data, 0);
- } else {
- Cache::set('Menu', $data, 0);
- }
- return $data;
- }
- public function menu($parentId, $with_self = false)
- {
- //父节点ID
- $parentId = (int)$parentId;
- $result = $this->where('parent_id', $parentId)->select();
- if ($with_self) {
- $result2[] = $this->where('id', $parentId)->find();
- $result = array_merge($result2, $result);
- }
- return $result;
- }
- /**
- * 得到某父级菜单所有子菜单,包括自己
- * @param int $parentId
- * @return array|string|\think\Collection
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- */
- public function getMenuTree($parentId = 0)
- {
- $menus = $this->where("parent_id", $parentId)->order(["list_order" => "ASC"])->select();
- if ($menus) {
- foreach ($menus as $key => $menu) {
- $children = $this->getMenuTree($menu['id']);
- if (!empty($children)) {
- $menus[$key]['children'] = $children;
- }
- unset($menus[$key]['id']);
- unset($menus[$key]['parent_id']);
- }
- return $menus;
- } else {
- return $menus;
- }
- }
- }
|