溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

如何在CI框架中利用hook獲取權(quán)限

發(fā)布時(shí)間:2020-12-23 15:41:04 來源:億速云 閱讀:119 作者:Leah 欄目:開發(fā)技術(shù)

如何在CI框架中利用hook獲取權(quán)限?很多新手對此不是很清楚,為了幫助大家解決這個(gè)難題,下面小編將為大家詳細(xì)講解,有這方面需求的人可以來學(xué)習(xí)下,希望你能有所收獲。

根據(jù)自己的實(shí)際情況,需要兩個(gè)文件,一個(gè)是權(quán)限控制類,Acl,另外一個(gè)是權(quán)限配置的文件acl.php放在了config這個(gè)目錄下。

Acl這個(gè)類放在了application/hook/acl.php。通過application/config/config.php文件開啟hook,并且配置config這個(gè)目錄下的hook.php文件。

1、開啟hook功能,config.php這個(gè)文件

復(fù)制代碼 代碼如下:


/*
|--------------------------------------------------------------------------
| 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這個(gè)文件

復(fù)制代碼 代碼如下:


/*
| -------------------------------------------------------------------------
| 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'
);

具體的參數(shù)說明可以參看文檔的鏈接地址,這里尤其要注意post_controller_constructor這個(gè)值,可以根據(jù)情況選擇不同的。

3、編寫權(quán)限配置文件acl.php放在config目錄下。

復(fù)制代碼 代碼如下:


$config['AUTH'] = array(
    SUPER_ADMIN         => array(
        'admin' => array('index', 'logout'),
    ),
    ADMIN   => array(
        'admin' => array('index', 'logout'),
    ),
    GUEST => array(
        'admin' => array('index', 'logout'),
    ),
);

這里只是我根據(jù)自己的情況定義的,不是真實(shí)數(shù)據(jù),根據(jù)自己的情況定。還有主要變量名字要交$config,這樣便于加載使用。

4、編寫具體的權(quán)限控制Acl類

復(fù)制代碼 代碼如下:


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('您無權(quán)訪問該功能,該錯(cuò)誤已經(jīng)被記錄!點(diǎn)擊<a href="'. site_url('admin/logout') .'">返回</a>');
                }
            }else{
                show_error('您無權(quán)訪問該模塊,該錯(cuò)誤已經(jīng)被記錄!點(diǎn)擊<a href="'. site_url('admin/logout') .'">返回</a>');
            }
        }
        else
            show_error('錯(cuò)誤的用戶類型,該錯(cuò)誤已經(jīng)被記錄!點(diǎn)擊<a href="'. site_url('admin/logout') .'">返回</a>');
    }
}

整體上大體是這樣的形式,最后還是要根據(jù)自己的實(shí)際情況來確定。

需要注意的是:

復(fù)制代碼 代碼如下:


$this->CI =& get_instance();

看完上述內(nèi)容是否對您有幫助呢?如果還想對相關(guān)知識有進(jìn)一步的了解或閱讀更多相關(guān)文章,請關(guān)注億速云行業(yè)資訊頻道,感謝您對億速云的支持。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI