- 浏览: 50474 次
- 性别:
- 来自: 深圳
最新评论
自学习cakephp
以来,一直没有完成搞懂acl,也查过了很多资料,但对它的用法也是一知半解,acl应该是cakephp中一个比较难懂的地方,这几天又重新看了下手册,发现acl没有相信中的难,但比我想象中的好用.欢迎大家转载和访问我的网站http://www.batterylaptops.co.uk
下面让我说说它的具体用法已经使用过程中应该注意到问题
准备前工作:
最好是能配置好bake,使bake命名有效,虽然这个不是必须的,不过有这个命令行工具以后我们会方便很多
在你的数据库
中导入下面的sql语句
- CREATE TABLE users (
- id INT(11) NOT NULL AUTO_INCREMENT PRIMARY KEY,
- username VARCHAR(255) NOT NULL UNIQUE,
- password CHAR(40) NOT NULL,
- group_id INT(11) NOT NULL,
- created DATETIME,
- modified DATETIME
- );
-
- CREATE TABLE groups (
- id INT(11) NOT NULL AUTO_INCREMENT PRIMARY KEY,
- name VARCHAR(100) NOT NULL,
- created DATETIME,
- modified DATETIME
- );
- CREATE TABLE posts (
- id INT(11) NOT NULL AUTO_INCREMENT PRIMARY KEY,
- user_id INT(11) NOT NULL,
- title VARCHAR(255) NOT NULL,
- body TEXT,
- created DATETIME,
- modified DATETIME
- );
- CREATE TABLE widgets (
- id INT(11) NOT NULL AUTO_INCREMENT PRIMARY KEY,
- name VARCHAR(100) NOT NULL,
- part_no VARCHAR(12),
- quantity INT(11)
- );
在这里我们使用cake bake all命令工具快速生成models, controllers, 和 views(在这里我就详细介绍怎么使用cakephp中的bake命令了)
下一步,准备使用auth组件认证
首先我们打开users_controller.php在UsersController类中增加登录登出动作
- function login() {
- //Auth Magic
- }
-
- function logout() {
- //Leave empty for now.
- }
- 然后创建视图文件
app/views/users/login.ctp
- <?php
- $session->flash('auth');
- echo $form->create('User', array('action' => 'login'));
- echo $form->inputs(array(
- 'legend' => __('Login', true),
- 'username',
- 'password'
- ));
- echo $form->end('Login');
- ?>
下一步我们需要修改AppController(/app/app_controller.php),如果你的app目录下面没有app_controller.php文件的话,你可以自己创建一个
- <?php
- class AppController extends Controller {
- var $components = array('Acl', 'Auth');
- function beforeFilter() {
- //Configure AuthComponent
- $this->Auth->authorize = 'actions';
- $this->Auth->loginAction = array('controller' => 'users', 'action' => 'login');
- $this->Auth->logoutRedirect = array('controller' => 'users', 'action' => 'login');
- $this->Auth->loginRedirect = array('controller' => 'posts', 'action' => 'add');
- }
- }
- ?>
接下来我们需要修改GroupsController和UsersController,这两个文件的目录大家应该都知道在哪里吧..
在这两个控制器中分别添加以下代码
- function beforeFilter() {
- parent::beforeFilter();
- $this->Auth->allowedActions = array('*');
- }
其实这段代码的意思是允许用户访问所有user和group下的action,当然这个后面是要改回来的
接下来我们要初始化acl表
因为现在我们的数据
库中就只有四个表,还没有导入acl表
我们用下面语句导入acl表到数据库中
在命令行中输入cake schema run create DbAcl
我们根据提示导入表
接下来我们需要修改user和group模型
首先我们打开model目录下的user.php增加以下代码(事实上你可以用下面代码替换)
- var $name = 'User';
- var $belongsTo = array('Group');
- var $actsAs = array('Acl' => 'requester');
-
- function parentNode() {
- if (!$this->id && empty($this->data)) {
- return null;
- }
- $data = $this->data;
- if (empty($this->data)) {
- $data = $this->read();
- }
- if (!$data['User']['group_id']) {
- return null;
- } else {
- return array('Group' => array('id' => $data['User']['group_id']));
- }
- }
然后修改group模型
- var $actsAs = array('Acl' => array('requester'));
-
- function parentNode() {
- return null;
- }
好
了,到这一步我们需要暂时停一下了,现在在浏览器中打开相应的user和group页面,增加user和group,比如我的,我打开
http://localhost/cakephp/groups增加组,打开http://localhost/cakephp/users/
增加用户,在这里我们增加三个组和三个用户
添加完以后你可以打开phpmyadmin看下aros表看下是不是多了些记录
是不是觉得很神奇不可思议啊,哈哈,这就是框架的魅力,到目前为止和acl有关的表,就只有aros表中存在记录
在我们以后修改每一个user用户时,我们也必须修改aros表记录
所有我们应该做user模型中增加下面代码
- /**
- * After save callback
- *
- * Update the aro for the user.
- *
- * @access public
- * @return void
- */
- function afterSave($created) {
- if (!$created) {
- $parent = $this->parentNode();
- $parent = $this->node($parent);
- $node = $this->node();
- $aro = $node[0];
- $aro['Aro']['parent_id'] = $parent[0]['Aro']['id'];
- $this->Aro->save($aro);
- }
- }
到这里我们aro创建已经完成,接下来我们应该创佳aco了
我们应该知道其实acl的本质是用来定义一个ARO在什么时候可以访问一个aco的组件,明白了这一点一切就变的很简单了。
为了简单我们使用命令行执行cake acl create aco root controllers
你现在再用phpmyadmin打开acors表,你应该会看到表中已经有一条记录了,这条记录就是刚刚执行这个命令的结果,当然我们不一定非得用命令行工具的。
接下来我们还需要修改下AppController,在里面的beforeFilter方法中我们需要增加一行$this->Auth->actionPath = 'controllers/';
下面是重点,在我们的app项目中可能会存在很多的控制器和方法,我们需要把每个action都添加到acors表中来实现权限控制,当然如果你不怕麻烦的话可以一个一个手动添加,但我想大多数程序员还是很懒的,所有我们这里需要使用自动生成工具
这里我们添加下面代码放在users_controller.php中,当然你也可以放在其他的控制器中
下面我就在users_controller.php中增加下面代码
- function build_acl() {
- if (!Configure::read('debug')) {
- return $this->_stop();
- }
- $log = array();
- $aco =& $this->Acl->Aco;
- $root = $aco->node('controllers');
- if (!$root) {
- $aco->create(array('parent_id' => null, 'model' => null, 'alias' => 'controllers'));
- $root = $aco->save();
- $root['Aco']['id'] = $aco->id;
- $log[] = 'Created Aco node for controllers';
- } else {
- $root = $root[0];
- }
- App::import('Core', 'File');
- $Controllers = Configure::listObjects('controller');
- $appIndex = array_search('App', $Controllers);
- if ($appIndex !== false ) {
- unset($Controllers[$appIndex]);
- }
- $baseMethods = get_class_methods('Controller');
- $baseMethods[] = 'buildAcl';
- $Plugins = $this->_getPluginControllerNames();
- $Controllers = array_merge($Controllers, $Plugins);
- // look at each controller in app/controllers
- foreach ($Controllers as $ctrlName) {
- $methods = $this->_getClassMethods($this->_getPluginControllerPath($ctrlName));
- // Do all Plugins First
- if ($this->_isPlugin($ctrlName)){
- $pluginNode = $aco->node('controllers/'.$this->_getPluginName($ctrlName));
- if (!$pluginNode) {
-
$aco->create(array('parent_id' => $root['Aco']['id'], 'model'
=> null, 'alias' => $this->_getPluginName($ctrlName)));
- $pluginNode = $aco->save();
- $pluginNode['Aco']['id'] = $aco->id;
- $log[] = 'Created Aco node for ' . $this->_getPluginName($ctrlName) . ' Plugin';
- }
- }
- // find / make controller node
- $controllerNode = $aco->node('controllers/'.$ctrlName);
- if (!$controllerNode) {
- if ($this->_isPlugin($ctrlName)){
- $pluginNode = $aco->node('controllers/' . $this->_getPluginName($ctrlName));
-
$aco->create(array('parent_id' => $pluginNode['0']['Aco']['id'],
'model' => null, 'alias' =>
$this->_getPluginControllerName($ctrlName)));
- $controllerNode = $aco->save();
- $controllerNode['Aco']['id'] = $aco->id;
- $log[] = 'Created Aco
node for ' . $this->_getPluginControllerName($ctrlName) . ' ' .
$this->_getPluginName($ctrlName) . ' Plugin Controller';
- } else {
-
$aco->create(array('parent_id' => $root['Aco']['id'], 'model'
=> null, 'alias' => $ctrlName));
- $controllerNode = $aco->save();
- $controllerNode['Aco']['id'] = $aco->id;
- $log[] = 'Created Aco node for ' . $ctrlName;
- }
- } else {
- $controllerNode = $controllerNode[0];
- }
- //clean the methods. to remove those in Controller and private actions.
- foreach ($methods as $k => $method) {
- if (strpos($method, '_', 0) === 0) {
- unset($methods[$k]);
- continue;
- }
- if (in_array($method, $baseMethods)) {
- unset($methods[$k]);
- continue;
- }
- $methodNode = $aco->node('controllers/'.$ctrlName.'/'.$method);
- if (!$methodNode) {
-
$aco->create(array('parent_id' => $controllerNode['Aco']['id'],
'model' => null, 'alias' => $method));
- $methodNode = $aco->save();
- $log[] = 'Created Aco node for '. $method;
- }
- }
- }
- if(count($log)>0) {
- debug($log);
- }
- }
- function _getClassMethods($ctrlName = null) {
- App::import('Controller', $ctrlName);
- if (strlen(strstr($ctrlName, '.')) > 0) {
- // plugin's controller
- $num = strpos($ctrlName, '.');
- $ctrlName = substr($ctrlName, $num+1);
- }
- $ctrlclass = $ctrlName . 'Controller';
- $methods = get_class_methods($ctrlclass);
- // Add scaffold defaults if scaffolds are being used
- $properties = get_class_vars($ctrlclass);
- if (array_key_exists('scaffold',$properties)) {
- if($properties['scaffold'] == 'admin') {
- $methods =
array_merge($methods, array('admin_add', 'admin_edit', 'admin_index',
'admin_view', 'admin_delete'));
- } else {
- $methods = array_merge($methods, array('add', 'edit', 'index', 'view', 'delete'));
- }
- }
- return $methods;
- }
- function _isPlugin($ctrlName = null) {
- $arr = String::tokenize($ctrlName, '/');
- if (count($arr) > 1) {
- return true;
- } else {
- return false;
- }
- }
- function _getPluginControllerPath($ctrlName = null) {
- $arr = String::tokenize($ctrlName, '/');
- if (count($arr) == 2) {
- return $arr[0] . '.' . $arr[1];
- } else {
- return $arr[0];
- }
- }
- function _getPluginName($ctrlName = null) {
- $arr = String::tokenize($ctrlName, '/');
- if (count($arr) == 2) {
- return $arr[0];
- } else {
- return false;
- }
- }
- function _getPluginControllerName($ctrlName = null) {
- $arr = String::tokenize($ctrlName, '/');
- if (count($arr) == 2) {
- return $arr[1];
- } else {
- return false;
- }
- }
- /**
- * Get the names of the plugin controllers ...
- *
- * This function will get an array of the plugin controller names, and
- * also makes sure the controllers are available for us to get the
- * method names by doing an App::import for each plugin controller.
- *
- * @return array of plugin names.
- *
- */
- function _getPluginControllerNames() {
- App::import('Core', 'File', 'Folder');
- $paths = Configure::getInstance();
- $folder =& new Folder();
- $folder->cd(APP . 'plugins');
- // Get the list of plugins
- $Plugins = $folder->read();
- $Plugins = $Plugins[0];
- $arr = array();
- // Loop through the plugins
- foreach($Plugins as $pluginName) {
- // Change directory to the plugin
- $didCD = $folder->cd(APP . 'plugins'. DS . $pluginName . DS . 'controllers');
- // Get a list of the files that have a file name that ends
- // with controller.php
- $files = $folder->findRecursive('.*_controller\.php');
- // Loop through the controllers we found in the plugins directory
- foreach($files as $fileName) {
- // Get the base file name
- $file = basename($fileName);
- // Get the controller name
- $file = Inflector::camelize(substr($file, 0, strlen($file)-strlen('_controller.php')));
- if (!preg_match('/^'. Inflector::humanize($pluginName). 'App/', $file)) {
- if (!App::import('Controller', $pluginName.'.'.$file)) {
- debug('Error importing '.$file.' for plugin '.$pluginName);
- } else {
- /// Now prepend the Plugin name ...
- // This is required to allow us to fetch the method names.
- $arr[] = Inflector::humanize($pluginName) . "/" . $file;
- }
- }
- }
- }
- return $arr;
- }
增加好以后我们打开浏览器访问刚才的方法
比如我的http://localhost/cakephp/users/build_acl
运行后程序会自动把所有controller下的action都添加到acos表中,你现在打开acos表应该就会看到很多记录了,如
接下来应该是做我们最兴奋的事情了,就是实现权限控制,因为我们前期准备工作都做好了,最终我们都是为了实现可以控制权限
1. 先来介绍下语法,允许访问$this->Acl->allow($aroAlias, $acoAlias);
拒绝访问$this->Acl->deny($aroAlias, $acoAlias);
你先打开aros_acos表中看下,到目前为止该表应该还是没有记录的
我们可以写一个初始化函数
我同样把这段代码放在user控制器中
- function initDB() {
- $group =& $this->User->Group;
- //Allow admins to everything
- $group->id = 1;
- $this->Acl->allow($group, 'controllers');
-
- //allow managers to posts and widgets
- $group->id = 2;
- $this->Acl->deny($group, 'controllers');
- $this->Acl->allow($group, 'controllers/Posts');
- $this->Acl->allow($group, 'controllers/Widgets');
-
- //allow users to only add and edit on posts and widgets
- $group->id = 3;
- $this->Acl->deny($group, 'controllers');
- $this->Acl->allow($group, 'controllers/Posts/add');
- $this->Acl->allow($group, 'controllers/Posts/edit');
- $this->Acl->allow($group, 'controllers/Widgets/add');
- $this->Acl->allow($group, 'controllers/Widgets/edit');
- }
接下来我们在浏览器中访问这个action
这个是时候你就应该发现你的aros_acos表中多了很多条记录,哈哈,这个就是acl的秘密所在.
接下来你可以使用不同组的用户名登录访问,你还可以修改initDB里面的代码进行测试,至于实际工作中如何使用,那就要看你自己的了,最后祝大家工作愉快!最后我把文档放在这里,有兴趣的朋友可以下载
cakephp中acl详解.rar
转载自: Batterylaptops
相关推荐
神奇宝贝(PokemonGo)基于Jetpack+MVVM+Repository设计模式+Data
用于试用 Dev Containers 的 Python 示例项目试用开发容器Python开发容器是一个具有明确定义的工具/运行时堆栈及其先决条件的运行容器。您可以使用GitHub Codespaces或Visual Studio Code Dev Containers试用开发容器。这是一个示例项目,您可以通过几个简单的步骤尝试任一选项。我们还有各种其他vscode-remote-try-*示例项目。注意如果您已经有代码空间或开发容器,则可以跳至“要尝试的事情”部分。设置开发容器GitHub Codespaces请按照以下步骤在 Codespace 中打开此示例单击代码下拉菜单。单击Codespaces选项卡。单击主屏幕上的“创建代码空间”。有关创建代码空间的更多信息,请访问GitHub 文档。VS Code 开发容器如果您已安装 VS Code 和 Docker,则可以单击上方或此处的徽章开始使用。单击这些链接将导致 VS Code 根据需要自动安装 Dev Containers 扩展,将源代码克隆到容器卷中,并启动开发容器以供使用。按
springboot vue3前后端分离
数学建模-神经网络算法 lecture 11 线性随机系统辨识示例 共9页.pptx
优质粳稻生产技术规程.docx
算法 - Python 目录灵感与动力贡献指南从这里开始所有算法均用 Python 3 实现(用于教育)这些实现仅用于学习目的。如果您想贡献更有效的解决方案,请随时打开问题并提交您的解决方案。灵感你可以在LeetCode 算法中寻找要实现的算法若要贡献,请确保算法尚未提交!请确保在您的 PR 中添加问题编号。贡献指南文件夹和文件请确保你的文件位于 -Folder 中LeetCode,并且命名如下 0001_TwoSum.py-> LeetCode 问题的 4 位数字、下划线、LeetCodeName开放问题当您打开问题时,请确保问题尚未实现(查看代码/Leetcode 以获取问题编号)。现有问题打开的问题将被关闭,并且对此问题的 PR 被标记为垃圾邮件 。打开问题的贡献者将被优先分配到该问题。如果大约 7 天内没有 PR,则问题将分配给另一个贡献者。拉取请求只有与问题相结合并符合命名约定(参见文件夹和文件)的 Pull 请求才会被合并!如果 PR 中没有加入问题,您的 PR 将被标记为垃圾邮件并关闭。如果您的代码未通
用于接收和交互来自 Slack 的 RTM API 的事件的框架python-rtmbot此项目不再处于积极开发阶段。如果您刚刚开始,我们建议您先查看Python SDK。如果您一直在使用此项目,我们只会解决关键问题(例如安全问题),但我们建议您计划迁移到 Python SDK。您仍然可以提交问题并向我们寻求帮助! 如果您有兴趣在未来维护此软件包,请联系我们 一个用 Python 编写的 Slack 机器人,通过 RTM API 连接。Python-rtmbot 是一个机器人引擎。任何了解Slack API和 Python的人都应该熟悉插件架构。配置文件格式为 YAML。该项目目前处于 1.0 之前的版本。因此,您应该计划不时进行重大更改。对于任何重大更改,我们将在 1.0 之前的版本中调整次要版本。(例如 0.2.4 -> 0.3.0 意味着重大更改)。如果稳定性很重要,您可能希望锁定特定的次要版本)与 webhook 的一些区别不需要网络服务器来接收消息可以回复用户的直接消息以 Slack 用户(或机器人)身份登录机器人用户必须被邀请加入频道
基于django的音乐推荐系统.zip
北京理工大学<Python机器学习应用>超详细学习笔记和代码注释(未完待续)
kernel-5.15-rc7.zip
神经网络-DenseNet网络结构
rbac组件(基于角色的权限控制)
C++ Vigenère 密码(解密代码)
数学建模培训资料 数学建模实战题目真题答案解析解题过程&论文报告 杭州消防设置-对杭州市消防局设置的研究 共8页.pdf
老年用品产品推广目录分类表.docx
本项目是基于Python的期货程序化交易系统的设计与实现,旨在为计算机相关专业学生提供一个实践性强、贴近实际应用场景的项目案例。通过这一项目,学生们能够深入了解程序化交易的基本原理和实现方法,同时锻炼自身的编程技能、数据分析能力以及金融市场的洞察力。 项目的主要功能包括:自动收集和处理市场数据、基于预设策略进行交易决策、实时执行交易指令、监控交易风险以及生成详细的交易报告。系统采用模块化设计,主要包括数据采集模块、策略执行模块、交易执行模块和风险管理模块,各个模块之间通过明确的接口进行交互。项目采用的编程语言为Python,利用其强大的数据处理库和机器学习库,保证了系统的灵活性和扩展性。开发这一项目的目的是让学生们在实践中学习和掌握程序化交易的核心技术,提升其在金融科技领域的就业竞争力。
基于java的校园失物招领平台设计与实现.docx
Javascript Ninja 课程JavaScript Ninja 课程Inscreva-se agora mesmo e ganhe 10% de desconto!Como tirar dúvidas sobre 或 conteúdo do curso访问问题页面Pesquise nas发出abertas e fechadas, se a mesma dúvida já foi postadaSe não foi, crie uma nova issues , coloque um titulo que tenha a ver com a sua dúvida, e descreva-a com o maior nível detalhes possíveis, para que possamos te ajudar:)摘要Veja o sumário completo do curso aqui。赞同!:D
solid.python通过示例在 Python 中解释SOLID 原则。单一职责原则开放/封闭原则里氏替换原则接口隔离原则依赖倒置原则
公交信息在线查询系统 微信小程序+SSM毕业设计 源码+数据库+论文+启动教程 项目启动教程:https://www.bilibili.com/video/BV1BfB2YYEnS