PHP MySQL Zend-ACL - 以图形方式显示ACL:

时间:2010-12-22 17:01:46

标签: php mysql zend-framework zend-acl

我有一个MySQL数据库表,如下所示,资源表

+----+-----------+------------+
| id | name      | type       |
+----+-----------+------------+
| 1  | guest     | user       |
| 2  | member    | user       |
| 3  | moderator | user       |
| 4  | owner     | user       |
| 5  | admin     | user       |
| 6  | index     | controller |
+----+-----------+------------+

在下一个表格中,规则表

+----+---------+------+-------------+----------------------+
| id | user_id | rule | resource_id | extras               |
+----+---------+------+-------------+----------------------+
| 1  | 2       | 3    | 1           | null                 |
| 2  | 3       | 3    | 2           | null                 |
| 3  | 4       | 3    | 3           | null                 |
| 4  | 5       | 3    | 4           | null                 |
| 5  | 6       | 1    | 1           | index,login,register |
| 6  | 6       | 2    | 2           | login,register       |
| 7  | 6       | 1    | 2           | logout               |
+----+---------+------+-------------+----------------------+

好的,抱歉这个长度,但我试图全面了解我想要做的事情。 所以它的工作方式,角色(又名用户)可以授予 (规则:1)访问控制器,角色可以< strong>继承 (规则:3)从其他角色或角色访问并被拒绝 (规则:2)访问权限一个控制器。 用户是资源,控制器是资源)

使用extras列授予/拒绝访问操作。

这一切都有效,在zend中设置ACL不是问题。


我现在要做的是展示关系;要做到这一点,我需要找到一个角色被授予访问控制器的最低级别,如果它已被明确删除。我计划列出角色。当我单击一个角色时,我希望它显示角色可以访问的所有控制器。然后单击控制器将显示允许该角色执行的操作。

因此,在上面的示例中,允许guest虚拟机查看索引控制器的索引操作以及登录操作。 成员继承相同的访问权限,但是被拒绝访问登录操作和注册操作。 主持人继承成员的规则。

所以,如果我选择角色主持人。我想看到列出的控制器索引。如果我单击控制器,它应该将允许的操作显示为action:index。 (最初授予访客,但此后一直未被拒绝)

有没有这样做的例子。我显然使用Zend MVC(PHP)和MySQL。 即使只是一个persudo代码示例也是一个有用的起点 - 这是我正在拼凑的拼图的最后部分之一。

P.S。显然我有ACL对象 - 是否可以更轻松地进行干预,还是通过PHP / MySQL自行完成?

目标是,显示角色可以访问的内容,然后允许我以GUI样式添加或编辑角色,控制器和操作(这有点容易) - 目前我正在更新手动DB,因为我一直在构建网站。

2 个答案:

答案 0 :(得分:2)

在我做了搜索,并且找不到答案之后,我对此有了更多的考虑,这是我提出的解决方案(只是对其他人有用)

首先是Psuedo:

  1. 显示一个页面,列出ACL $acl->getRoles() 中的所有角色 (用户级别)作为链接。< / LI>
  2. 点击链接,重新加载通过角色作为参数的页面。
    • 现在从ACL $acl->getResources() 中获取所有控制器,检查资源是否为(getResources返回的数组也包含角色)
    • 遍历每个控制器,获取规则表中控制器 ID位于resource_id字段中的所有条目并展开 extras (逗号分隔行动)
    • 接下来,遍历每个操作,调用isAllowed (我有角色,控制器和操作) IF 找到至少一个“允许”,我将控制器绿色(允许访问控制器中的至少一个动作),否则为红色(否)访问该控制器中的任何内容)每个列表项都可单击以重新加载页面
  3. 现在,当点击一个控制器时,我重新加载页面,现在,当运行操作列表时,调用isAllowed我创建一个所选控制器的操作列表,将操作着色为绿色或红色关于isAllowed
  4. 的结果 答案它的自我几乎和问题一样冗长,但它对我有用,可以清楚地了解每个角色可以做些什么。在这里它是否会帮助任何人:

    现在代码:

    AdminController:

    public function aclAction()
    {
        $this->view->content_title = "Access Rules:";
    
        // Get the ACL - its stored in the session:
        $usersNs = new Zend_Session_Namespace("ZEND_SITE");
        $acl = $usersNs->acl;
    
        // List all Roles in the ACL:
        $roles = $acl->getRoles();
        // Pass the roles to the view:
        $this->view->roles = $roles;
    
        // Check if a role has been clicked on:
        $role = this->_getParam('role');
        if(!is_null($role))
        {
            // Pass the role to the view:
            $this->view->role = $role;
    
            // Get all the resources (controllers) from the ACL, don't add roles:
            $controllers = array();
            foreach ($acl->getResources() as $res)
            {
                if (!in_array($res, $roles))
                {
                    $controllers[] = $res;
                }
            }
    
            // Create a Rules Model:
            $rules = new Model_ACLrules();
    
            // Store controllers + access:
            $all_controllers = array();
    
            // Check if the controller has been passed:
            $cont = $this->_getParam('cont');
    
            // Loop through each controller:
            foreach ($controllers as $controller)
            {
                // Get all actions for the controller:
                // THIS IS THE PART I DON'T LIKE - BUT I SEE NO WAY TO GET
                // THE RULES FROM THE ACL - THERE LOOKS TO BE A METHOD
                // BUT IT IS A PROTECTED METHOD - SO I AM GETTING THE ACTIONS 
                // FROM THE DB, BUT THIS MEANS TWO SQL QUERIES - ONE TO FIND
                // THE RESOURCE FROM THE DB TO GET ITS ID THEN ONE TO FIND
                // ALL THE EXTRAS FOR IT:
                $all_rules = $rules->findAllActions($controller);
    
                // Store if the role is allowed access somewhere in the controller:
                $allowed = false;
    
                // Store selected controller actions:
                $cont_actions = array();
    
                // Loop through all returned row of actions for the resource:
                foreach ($all_rules as $rule)
                {
                    // Split the extras field:
                    $extras = explode(",", $rule->extras); 
    
                    // Check if the role has access to any of the actions:
                    foreach ($extras as $act)
                    {
                        // Store matching selected controller:
                        $match = ($cont==$controller)?true:false;
    
                        // Store the action if we are looking at a resource:
                        if ($match)$temp = array("action"=>$act,"allowed"=>false);
    
                        // Check if the role is allowed:
                        if ($acl->isAllowed($role,$controller,$act))
                        {
                            // Change the controllers allowed to ture as at least one item is allowed:
                            $allowed = true;
    
                            // Change the matched controllers action to true:
                            if ($match)$temp = array("action"=>$act,"allowed"=>true);
                        }
    
                        // Check if the action has already been added if we are looking at a resource:
                        if ($match)
                        {
                            $add = true;
                            // This is done because there could be several rows of extras, for example
                            // login is allowed for guest, then on another row login is denied for member,
                            // this means the login action will be found twice for the resource,
                            // no point in showing login action twice:
                            foreach ($cont_actions as $a)
                            {
                                // Action already in the array, don't add it again:
                                if ($a['action'] == $act) $add = false;
                            }
                            if($add) $cont_actions[] = $temp;
                        }
                    }
                }
    
                // Pass a list of controllers to the view:
                $all_controllers[] = array("controller" => $controller, "allowed" => $allowed);
    
                // Check if we had a controller:
                if(!is_null($cont))
                {
                    // Pass the selected controller to the view:
                    $this->view->controller = $cont;
    
                    // Check if this controller in the loop is the controller selected:
                    if ($cont == $controller)
                    {
                        // Add the controller + actions to the all rules:
                        $this->view->actions = $cont_actions;
                    }
                }
            }
    
            // Pass the full controller list to the view:
            $this->view->controllers = $all_controllers;
        }   
    }
    

    接下来的观点:acl.phtml:

    <h2>Roles:</h2>
    <ul>
        <?php 
            foreach ($this->roles as $name)
            {
                echo '<li><a href="'.$this->baseUrl('admin/acl') . '/role/' . $name . '">' . ucfirst($name) . '</a><br/></li>';
            }
        ?>
    </ul>
    
    <?php if (isset($this->controllers)): ?>
        <h2><?php echo ucfirst($this->role); ?>'s Controllers:</h2>
        <ul>
            <?php
                $array = $this->controllers;
                sort($array);
                foreach ($array as $controller)
                {
                    $font = ($controller['allowed'])?'green':'red';
                    echo '<li><a href="'.$this->baseUrl('admin/acl') . '/role/' . $this->role . '/cont/'.$controller['controller'].'" style="color:'.$font.';">'.ucfirst($controller['controller']).'</a></li>';    
                }   
            ?>
        </ul>
    
        <?php if (isset($this->controller)): ?>
            <h2><?php echo ucfirst($this->role)."'s, ".ucfirst($this->controller);?> Actions:</h2>
            <ul>
                <?php 
                    $array = $this->actions;
                    sort($array);
                    foreach ($array as $action)
                    {
                        $font = ($action['allowed'])?'green':'red';
                        echo '<li><font style="color:'.$font.';">'.ucfirst($action['action']).'</font></li>';
                    }
                ?>
            </ul>
        <?php endif;?>
    <?php endif; ?>
    

    示例:

    我希望这对某人有帮助,我会暂时保持开放状态,任何人都可以提出更好的解决方案 - 或者改善答案?

答案 1 :(得分:1)

public function aclAction()
{
    $this->disableView();

    $service = $this->service()->acl();
    $acl = $service->getAcl();
    $roles = $acl->getRoles();
    $resources = $acl->getResources();
    $results = array();

    // load XML to get all rules & roles & actions
    $configdata = $service->getConfigdata();

    $actions = array();
    foreach ($configdata['rules']['rule'] as $rule){
        if(isset($rule['action'])){
            if(!is_array($rule['action']))
                $rule['action'] = array($rule['action']);
            foreach($rule['action'] as $action){
                $actions[$rule['resource']][$action] = $action;
            }
        }

    }

    $results[] =
    '<thead>'
    .   '<tr>'
    .       '<th>Resource</th>'
    .       '<th>Action</th>'
    .       '<th colspan="'.count($roles).'">Roles</th>'
    .   '</tr>'
    .   '<tr>'
    .       '<th></th>'
    .       '<th></th>';

    foreach ($roles as $role){
        $results[] = '<th>'.$role.'</th>' . PHP_EOL;
    }
    $results[] = '</tr></thead>' . PHP_EOL;
    $results[] = '<tbody>';

    foreach ($resources as $resource){

        $results[] = '<tr><th>'.$resource.'</th><td>-</td>';
        foreach ($roles as $role){
            $test = $acl->isAllowed($role, $resource);
            $results[] = '<td'.($test?' class="green"':' class="red"').'>'.($test?'YES':'NO').'</td>';
        }
        $results[] = '</tr>';

        if(isset($actions[$resource])){
            foreach ($actions[$resource] as $action){

                $results[] = '<tr><th>&rarr;</th><td>'.$action.'</td>';
                foreach ($roles as $role){
                    $test = $acl->isAllowed($role, $resource, $action);
                    $results[] = '<td'.($test?' class="green"':' class="red"').'>'.($test?'YES':'NO').'</td>';
                }
                $results[] = '</tr>';
            }
        }
    }

    echo
    '<style type="text/css">'
    .   'html, body, table {font-family:verdana;font-size:14px;}'
    .   'table {border-spacing:1px;background:#CCCCCC;}'
    .   'td, th {background:#ffffff;padding:5px;}'
    .   'th {text-align:left;}'
    .   'tr:nth-child(even) td, tr:nth-child(even) th {background:#C2DBEF;}'
    .   '.red {color:red;font-weight:bold;}'
    .   '.green {color:green;font-weight:bold;}'
    .'</style>'
    .'<h1>$role is allowed to $resource ?</h1>'
    .'<table>'.implode('', $results).'</table>';

}

示例:http://i.stack.imgur.com/1tR3g.png(我无法在此处发布图像) 我从我的项目中复制了它 - 希望它有所帮助。它看起来非常好用,但是你需要一个包含所有规则的正确形成的xml。