**CodeIgniter通過hook的方式實現簡單的許可權控制

suboysugar發表於2015-04-10

根據自己的實際情況,需要兩個檔案,一個是許可權控制類,Acl,另外一個是許可權配置的檔案acl.php放在了config這個目錄下。

Acl這個類放在了application/hook/acl.php。通過application/config/config.php檔案開啟hook,並且配置config這個目錄下的hook.php檔案。

1、開啟hook功能,config.php這個檔案

複製程式碼
/*
|--------------------------------------------------------------------------
| Enable/Disable System Hooks
|--------------------------------------------------------------------------
|
| If you would like to use the `hooks` feature you must enable it by
| setting this variable to TRUE (boolean).  See the user guide for details.
|
*/
$config[`enable_hooks`] = TRUE;
複製程式碼

2、配置hook.php這個檔案

複製程式碼
/*
| -------------------------------------------------------------------------
| Hooks
| -------------------------------------------------------------------------
| This file lets you define "hooks" to extend CI without hacking the core
| files.  Please see the user guide for info:
|
|    http://codeigniter.com/user_guide/general/hooks.html
|
*/

$hook[`post_controller_constructor`] = array(
    `class`    => `Acl`,
    `function` => `auth`,
    `filename` => `acl.php`,
    `filepath` => `hooks`
);
複製程式碼

具體的引數說明可以參看文件的連結地址,這裡尤其要注意post_controller_constructor這個值,可以根據情況選擇不同的。

 

3、編寫許可權配置檔案acl.php放在config目錄下。

複製程式碼
$config[`AUTH`] = array(
    SUPER_ADMIN         => array(
        `admin` => array(`index`, `logout`),
    ),
    ADMIN   => array(
        `admin` => array(`index`, `logout`),
    ),
    GUEST => array(
        `admin` => array(`index`, `logout`),
    ),
);
複製程式碼

這裡只是我根據自己的情況定義的,不是真實資料,根據自己的情況定。還有主要變數名字要交$config,這樣便於載入使用。

 

4、編寫具體的許可權控制Acl類

複製程式碼
class Acl {

    private $url_model;
    private $url_method;
    private $CI;
 
    function Acl()
    {
        $this->CI =& get_instance();
        $this->CI->load->library(`session`);

        $this->url_model = $this->CI->uri->segment(1);
        $this->url_method = $this->CI->uri->segment(2);
    }
 
    function auth()
    {
        $user = $this->CI->session->userdata(`USER`);
        if(empty($user))
            $user->status = 0;

        $this->CI->load->config(`acl`);
        $AUTH = $this->CI->config->item(`AUTH`);

        if(in_array($user->status, array_keys($AUTH))){
            $controllers = $AUTH[$user->status];

            if(in_array($this->url_model, array_keys($controllers))){
                
                if(!in_array($this->url_method, $controllers[$this->url_model])){
                    show_error(`您無權訪問該功能,該錯誤已經被記錄!點選<a href="`. site_url(`admin/logout`) .`">返回</a>`);
                }
            }else{
                show_error(`您無權訪問該模組,該錯誤已經被記錄!點選<a href="`. site_url(`admin/logout`) .`">返回</a>`);
            }
        }
        else
            show_error(`錯誤的使用者型別,該錯誤已經被記錄!點選<a href="`. site_url(`admin/logout`) .`">返回</a>`);
    }
}
複製程式碼

整體上大體是這樣的形式,最後還是要根據自己的實際情況來確定。

 

需要注意的是:

$this->CI =& get_instance();

原文地址:http://blog.csdn.net/treesky/article/details/6587465

如何聯絡我:【萬里虎】www.bravetiger.cn
【QQ】3396726884 (諮詢問題100元起,幫助解決問題500元起)
【部落格】http://www.cnblogs.com/kenshinobiy/


相關文章