程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> PHP綜合 >> ThinkPHP RBAC如何自動獲取所有模塊的函數

ThinkPHP RBAC如何自動獲取所有模塊的函數

編輯:PHP綜合

之前我寫過一個例子,關於ThinkPHP RBAC權限控制的,後來又研究了下,發現在真實的情況中,很多crm,cms等,有需要去獲取RBAC所有模塊,然後進行權限分配等操作,或者增加刪除模塊。

所以就想了一個思路去實現自動獲取ThinkPHP所有的模塊

大致思路是:

1、根據配置文件獲取分組

2、遍歷分組下的Action文件夾中的*Action.class.php

3、實例化Action,獲取其所有方法,過濾掉tp本身的底層函數,

4、小手一揮,數據到手.

以下就是具體的代碼,其實思路更加重要,我也不能確定我的就是最好的。我也不可能去一行一行的講解。大家自己有時間可以研究一下。

//生成模塊結構信息 app/分組/模塊/方法
    public function fetch_module(){
        $M = M('Module');
        $M->query("truncate table module");
        $app = $this->getAppName();
        $groups = $this->getGroup();
        $n=0;
        foreach ($groups as $group) {
            $modules = $this->getModule($group);
            foreach ($modules as $module) {
                $module_name=$app.'://'.$group.'/'.$module;
                $functions = $this->getFunction($module_name);
                foreach ($functions as $function) {
                    $data[$n]['app'] = $app;
                    $data[$n]['group'] = $group;
                    $data[$n]['module'] = $module;
                    $data[$n]['function'] = $function;
                    ++$n;                                }
            }
        }
        $M->addAll($data);
        $this->success('所有分組/模塊/方法已成功讀取到module表中.');
    }
    protected function getAppName(){
        return APP_NAME;
    }
    protected function getGroup(){
        $result = explode(',',C('APP_GROUP_LIST'));
        return $result;
    }
    protected function getModule($group){
        if(empty($group))return null;
        $group_path=LIB_PATH.'Action/'.$group;
        if(!is_dir($group_path))return null;
        $group_path.='/*.class.php';
        $ary_files = glob($group_path);
        foreach ($ary_files as $file) {
            if (is_dir($file)) {
                continue;
            }else {
                    $files[] = basename($file,'Action.class.php');
            }
        }
        return $files;
    }
    protected function getFunction($module){
        if(empty($module))return null;
        $action=A($module);
        $functions=get_class_methods($action);
        $inherents_functions = array(
            '_initialize','__construct','getActionName','isAjax','display','show','fetch',
            'buildHtml','assign','__set','get','__get','__isset',
            '__call','error','success','ajaxReturn','redirect','__destruct'
        );
        foreach ($functions as $func){
            if(!in_array($func, $inherents_functions)){
                $customer_functions[]=$func;
            }
        }
        return $customer_functions;
    }

Model表的結構

CREATE TABLE `module` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(45) DEFAULT NULL COMMENT '名稱',
  `app` varchar(45) DEFAULT NULL COMMENT '項目',
  `group` varchar(45) DEFAULT NULL COMMENT '分組',
  `module` varchar(45) DEFAULT NULL COMMENT '模塊',
  `function` varchar(45) DEFAULT NULL COMMENT '方法',
  `status` varchar(45) DEFAULT NULL COMMENT '狀態',
  PRIMARY KEY (`id`)
 ) ENGINE=InnoDB DEFAULT CHARSET=utf8$$

本文出自 “尛雷” 博客,請務必保留此出處http://a3147972.blog.51cto.com/2366547/1218183

查看本欄目

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved