2008-05-30 11:40:08 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Access Control List factory class.
|
|
|
|
*
|
|
|
|
* Permissions system.
|
|
|
|
*
|
|
|
|
* PHP versions 4 and 5
|
|
|
|
*
|
2009-11-06 06:46:59 +00:00
|
|
|
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
|
2010-01-26 19:18:20 +00:00
|
|
|
* Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
|
|
|
* Licensed under The MIT License
|
|
|
|
* Redistributions of files must retain the above copyright notice.
|
|
|
|
*
|
2010-01-26 19:18:20 +00:00
|
|
|
* @copyright Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2009-11-06 06:00:11 +00:00
|
|
|
* @link http://cakephp.org CakePHP(tm) Project
|
2008-10-30 17:30:26 +00:00
|
|
|
* @package cake
|
|
|
|
* @subpackage cake.cake.libs.controller.components
|
|
|
|
* @since CakePHP(tm) v 0.10.0.1076
|
2009-11-06 06:51:51 +00:00
|
|
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Access Control List factory class.
|
|
|
|
*
|
2010-03-28 16:17:53 +00:00
|
|
|
* Uses a strategy pattern to allow custom ACL implementations to be used with the same component interface.
|
|
|
|
* You can define by changing `Configure::write('Acl.classname', 'DbAcl');` in your core.php. Concrete ACL
|
|
|
|
* implementations should extend `AclBase` and implement the methods it defines.
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
2008-10-30 17:30:26 +00:00
|
|
|
* @package cake
|
|
|
|
* @subpackage cake.cake.libs.controller.components
|
2010-04-05 01:12:13 +00:00
|
|
|
* @link http://book.cakephp.org/view/1242/Access-Control-Lists
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
|
|
|
class AclComponent extends Object {
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Instance of an ACL class
|
|
|
|
*
|
|
|
|
* @var object
|
|
|
|
* @access protected
|
|
|
|
*/
|
2010-04-04 06:36:12 +00:00
|
|
|
protected $_Instance = null;
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
2010-03-28 16:17:53 +00:00
|
|
|
* Constructor. Will return an instance of the correct ACL class as defined in `Configure::read('Acl.classname')`
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
2010-04-24 03:03:51 +00:00
|
|
|
* @throws Exception when Acl.classname could not be loaded.
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
2010-04-24 03:03:51 +00:00
|
|
|
public function __construct() {
|
2008-05-30 11:40:08 +00:00
|
|
|
$name = Inflector::camelize(strtolower(Configure::read('Acl.classname')));
|
|
|
|
if (!class_exists($name)) {
|
|
|
|
if (App::import('Component', $name)) {
|
2009-11-16 00:55:20 +00:00
|
|
|
list($plugin, $name) = pluginSplit($name);
|
2008-05-30 11:40:08 +00:00
|
|
|
$name .= 'Component';
|
|
|
|
} else {
|
2010-04-24 03:03:51 +00:00
|
|
|
throw new Exception(sprintf(__('Could not find %s.'), $name));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$this->adapter($name);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets or gets the Adapter object currently in the AclComponent.
|
|
|
|
*
|
|
|
|
* `$this->Acl->adapter();` will get the current adapter class while
|
|
|
|
* `$this->Acl->adapter($obj);` will set the adapter class
|
|
|
|
*
|
|
|
|
* Will call the initialize method on the adapter if setting a new one.
|
|
|
|
*
|
|
|
|
* @param mixed $adapter Instance of AclBase or a string name of the class to use. (optional)
|
|
|
|
* @return mixed either null, or instance of AclBase
|
|
|
|
* @throws Exception when the given class is not an AclBase
|
|
|
|
*/
|
|
|
|
public function adapter($adapter = null) {
|
|
|
|
if ($adapter) {
|
|
|
|
if (is_string($adapter)) {
|
|
|
|
$adapter = new $adapter();
|
|
|
|
}
|
|
|
|
if (!$adapter instanceof AclBase) {
|
|
|
|
throw new Exception(__('AclComponent adapters must extend AclBase'));
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2010-04-24 03:03:51 +00:00
|
|
|
$this->_Instance = $adapter;
|
|
|
|
$this->_Instance->initialize($this);
|
|
|
|
return;
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2010-04-24 03:03:51 +00:00
|
|
|
return $this->_Instance;
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Startup is not used
|
|
|
|
*
|
|
|
|
* @param object $controller Controller using this component
|
|
|
|
* @return boolean Proceed with component usage (true), or fail (false)
|
|
|
|
*/
|
2010-04-05 03:19:38 +00:00
|
|
|
public function startup(&$controller) {
|
2008-05-30 11:40:08 +00:00
|
|
|
return true;
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Empty class defintion, to be overridden in subclasses.
|
|
|
|
*
|
|
|
|
*/
|
2010-04-05 03:21:28 +00:00
|
|
|
protected function _initACL() {
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
2010-03-28 16:17:53 +00:00
|
|
|
* Pass-thru function for ACL check instance. Check methods
|
|
|
|
* are used to check whether or not an ARO can access an ACO
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
2010-03-28 16:17:53 +00:00
|
|
|
* @param string $aro ARO The requesting object identifier.
|
|
|
|
* @param string $aco ACO The controlled object identifier.
|
2008-05-30 11:40:08 +00:00
|
|
|
* @param string $action Action (defaults to *)
|
|
|
|
* @return boolean Success
|
|
|
|
*/
|
2010-04-05 03:19:38 +00:00
|
|
|
public function check($aro, $aco, $action = "*") {
|
2008-05-30 11:40:08 +00:00
|
|
|
return $this->_Instance->check($aro, $aco, $action);
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
2010-03-28 16:17:53 +00:00
|
|
|
* Pass-thru function for ACL allow instance. Allow methods
|
|
|
|
* are used to grant an ARO access to an ACO.
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
2010-03-28 16:17:53 +00:00
|
|
|
* @param string $aro ARO The requesting object identifier.
|
|
|
|
* @param string $aco ACO The controlled object identifier.
|
2008-05-30 11:40:08 +00:00
|
|
|
* @param string $action Action (defaults to *)
|
|
|
|
* @return boolean Success
|
|
|
|
*/
|
2010-04-05 03:19:38 +00:00
|
|
|
public function allow($aro, $aco, $action = "*") {
|
2008-05-30 11:40:08 +00:00
|
|
|
return $this->_Instance->allow($aro, $aco, $action);
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
2010-03-28 16:17:53 +00:00
|
|
|
* Pass-thru function for ACL deny instance. Deny methods
|
|
|
|
* are used to remove permission from an ARO to access an ACO.
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
2010-03-28 16:17:53 +00:00
|
|
|
* @param string $aro ARO The requesting object identifier.
|
|
|
|
* @param string $aco ACO The controlled object identifier.
|
2008-05-30 11:40:08 +00:00
|
|
|
* @param string $action Action (defaults to *)
|
|
|
|
* @return boolean Success
|
|
|
|
*/
|
2010-04-05 03:19:38 +00:00
|
|
|
public function deny($aro, $aco, $action = "*") {
|
2008-05-30 11:40:08 +00:00
|
|
|
return $this->_Instance->deny($aro, $aco, $action);
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
2010-03-28 16:17:53 +00:00
|
|
|
* Pass-thru function for ACL inherit instance. Inherit methods
|
|
|
|
* modify the permission for an ARO to be that of its parent object.
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
2010-03-28 16:17:53 +00:00
|
|
|
* @param string $aro ARO The requesting object identifier.
|
|
|
|
* @param string $aco ACO The controlled object identifier.
|
2008-05-30 11:40:08 +00:00
|
|
|
* @param string $action Action (defaults to *)
|
|
|
|
* @return boolean Success
|
|
|
|
*/
|
2010-04-05 03:19:38 +00:00
|
|
|
public function inherit($aro, $aco, $action = "*") {
|
2008-05-30 11:40:08 +00:00
|
|
|
return $this->_Instance->inherit($aro, $aco, $action);
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
2010-03-28 16:17:53 +00:00
|
|
|
* Pass-thru function for ACL grant instance. An alias for AclComponent::allow()
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
2010-03-28 16:17:53 +00:00
|
|
|
* @param string $aro ARO The requesting object identifier.
|
|
|
|
* @param string $aco ACO The controlled object identifier.
|
2008-05-30 11:40:08 +00:00
|
|
|
* @param string $action Action (defaults to *)
|
|
|
|
* @return boolean Success
|
|
|
|
*/
|
2010-04-05 03:19:38 +00:00
|
|
|
public function grant($aro, $aco, $action = "*") {
|
2008-05-30 11:40:08 +00:00
|
|
|
return $this->_Instance->grant($aro, $aco, $action);
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
2010-03-28 16:17:53 +00:00
|
|
|
* Pass-thru function for ACL grant instance. An alias for AclComponent::deny()
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
2010-03-28 16:17:53 +00:00
|
|
|
* @param string $aro ARO The requesting object identifier.
|
|
|
|
* @param string $aco ACO The controlled object identifier.
|
2008-05-30 11:40:08 +00:00
|
|
|
* @param string $action Action (defaults to *)
|
|
|
|
* @return boolean Success
|
|
|
|
*/
|
2010-04-05 03:19:38 +00:00
|
|
|
public function revoke($aro, $aco, $action = "*") {
|
2008-05-30 11:40:08 +00:00
|
|
|
return $this->_Instance->revoke($aro, $aco, $action);
|
|
|
|
}
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Access Control List abstract class. Not to be instantiated.
|
|
|
|
* Subclasses of this class are used by AclComponent to perform ACL checks in Cake.
|
|
|
|
*
|
2008-10-30 17:30:26 +00:00
|
|
|
* @package cake
|
|
|
|
* @subpackage cake.cake.libs.controller.components
|
2008-05-30 11:40:08 +00:00
|
|
|
* @abstract
|
|
|
|
*/
|
2010-04-24 03:03:51 +00:00
|
|
|
abstract class AclBase extends Object {
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Empty method to be overridden in subclasses
|
|
|
|
*
|
2010-03-28 16:17:53 +00:00
|
|
|
* @param string $aro ARO The requesting object identifier.
|
|
|
|
* @param string $aco ACO The controlled object identifier.
|
2008-05-30 11:40:08 +00:00
|
|
|
* @param string $action Action (defaults to *)
|
|
|
|
*/
|
2010-04-24 03:03:51 +00:00
|
|
|
public abstract function check($aro, $aco, $action = "*");
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Empty method to be overridden in subclasses
|
|
|
|
*
|
|
|
|
* @param object $component Component
|
|
|
|
*/
|
2010-04-24 03:03:51 +00:00
|
|
|
public abstract function initialize($component);
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
2010-03-28 16:17:53 +00:00
|
|
|
* DbAcl implements an ACL control system in the database. ARO's and ACO's are
|
|
|
|
* structured into trees and a linking table is used to define permissions. You
|
|
|
|
* can install the schema for DbAcl with the Schema Shell.
|
|
|
|
*
|
|
|
|
* `$aco` and `$aro` parameters can be slash delimited paths to tree nodes.
|
|
|
|
*
|
|
|
|
* eg. `controllers/Users/edit`
|
|
|
|
*
|
|
|
|
* Would point to a tree structure like
|
|
|
|
*
|
|
|
|
* {{{
|
|
|
|
* controllers
|
|
|
|
* Users
|
|
|
|
* edit
|
|
|
|
* }}}
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
2008-10-30 17:30:26 +00:00
|
|
|
* @package cake
|
|
|
|
* @subpackage cake.cake.libs.model
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
|
|
|
class DbAcl extends AclBase {
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Constructor
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
function __construct() {
|
|
|
|
parent::__construct();
|
2008-06-13 16:40:45 +00:00
|
|
|
if (!class_exists('AclNode')) {
|
2009-07-23 20:53:37 +00:00
|
|
|
require LIBS . 'model' . DS . 'db_acl.php';
|
2008-06-13 16:40:45 +00:00
|
|
|
}
|
2008-05-30 11:40:08 +00:00
|
|
|
$this->Aro =& ClassRegistry::init(array('class' => 'Aro', 'alias' => 'Aro'));
|
|
|
|
$this->Aco =& ClassRegistry::init(array('class' => 'Aco', 'alias' => 'Aco'));
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
2010-03-28 16:17:53 +00:00
|
|
|
* Initializes the containing component and sets the Aro/Aco objects to it.
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
2010-03-28 16:17:53 +00:00
|
|
|
* @param AclComponent $component
|
2008-09-25 16:49:56 +00:00
|
|
|
* @return void
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
2010-04-24 03:03:51 +00:00
|
|
|
public function initialize($component) {
|
2010-01-15 03:15:06 +00:00
|
|
|
$component->Aro =& $this->Aro;
|
|
|
|
$component->Aco =& $this->Aco;
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Checks if the given $aro has access to action $action in $aco
|
|
|
|
*
|
2010-03-28 16:17:53 +00:00
|
|
|
* @param string $aro ARO The requesting object identifier.
|
|
|
|
* @param string $aco ACO The controlled object identifier.
|
2008-05-30 11:40:08 +00:00
|
|
|
* @param string $action Action (defaults to *)
|
|
|
|
* @return boolean Success (true if ARO has access to action in ACO, false otherwise)
|
2010-04-05 01:12:13 +00:00
|
|
|
* @link http://book.cakephp.org/view/1249/Checking-Permissions-The-ACL-Component
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
2010-04-05 03:19:38 +00:00
|
|
|
public function check($aro, $aco, $action = "*") {
|
2008-05-30 11:40:08 +00:00
|
|
|
if ($aro == null || $aco == null) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$permKeys = $this->_getAcoKeys($this->Aro->Permission->schema());
|
|
|
|
$aroPath = $this->Aro->node($aro);
|
2008-07-31 23:50:32 +00:00
|
|
|
$acoPath = $this->Aco->node($aco);
|
2008-05-30 11:40:08 +00:00
|
|
|
|
2008-07-31 23:50:32 +00:00
|
|
|
if (empty($aroPath) || empty($acoPath)) {
|
2010-04-15 15:52:49 +00:00
|
|
|
trigger_error(__("DbAcl::check() - Failed ARO/ACO node lookup in permissions check. Node references:\nAro: ") . print_r($aro, true) . "\nAco: " . print_r($aco, true), E_USER_WARNING);
|
2008-05-30 11:40:08 +00:00
|
|
|
return false;
|
|
|
|
}
|
2008-07-31 23:50:32 +00:00
|
|
|
|
|
|
|
if ($acoPath == null || $acoPath == array()) {
|
2010-04-15 15:52:49 +00:00
|
|
|
trigger_error(__("DbAcl::check() - Failed ACO node lookup in permissions check. Node references:\nAro: ") . print_r($aro, true) . "\nAco: " . print_r($aco, true), E_USER_WARNING);
|
2008-05-30 11:40:08 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$aroNode = $aroPath[0];
|
2008-07-31 23:50:32 +00:00
|
|
|
$acoNode = $acoPath[0];
|
2008-05-30 11:40:08 +00:00
|
|
|
|
|
|
|
if ($action != '*' && !in_array('_' . $action, $permKeys)) {
|
2010-04-15 15:52:49 +00:00
|
|
|
trigger_error(sprintf(__("ACO permissions key %s does not exist in DbAcl::check()"), $action), E_USER_NOTICE);
|
2008-05-30 11:40:08 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$inherited = array();
|
2008-07-31 23:50:32 +00:00
|
|
|
$acoIDs = Set::extract($acoPath, '{n}.' . $this->Aco->alias . '.id');
|
2008-05-30 11:40:08 +00:00
|
|
|
|
2008-09-18 03:09:19 +00:00
|
|
|
$count = count($aroPath);
|
|
|
|
for ($i = 0 ; $i < $count; $i++) {
|
2008-05-30 11:40:08 +00:00
|
|
|
$permAlias = $this->Aro->Permission->alias;
|
|
|
|
|
|
|
|
$perms = $this->Aro->Permission->find('all', array(
|
|
|
|
'conditions' => array(
|
|
|
|
"{$permAlias}.aro_id" => $aroPath[$i][$this->Aro->alias]['id'],
|
|
|
|
"{$permAlias}.aco_id" => $acoIDs
|
|
|
|
),
|
|
|
|
'order' => array($this->Aco->alias . '.lft' => 'desc'),
|
|
|
|
'recursive' => 0
|
|
|
|
));
|
|
|
|
|
|
|
|
if (empty($perms)) {
|
|
|
|
continue;
|
|
|
|
} else {
|
|
|
|
$perms = Set::extract($perms, '{n}.' . $this->Aro->Permission->alias);
|
|
|
|
foreach ($perms as $perm) {
|
|
|
|
if ($action == '*') {
|
|
|
|
|
|
|
|
foreach ($permKeys as $key) {
|
|
|
|
if (!empty($perm)) {
|
|
|
|
if ($perm[$key] == -1) {
|
|
|
|
return false;
|
|
|
|
} elseif ($perm[$key] == 1) {
|
|
|
|
$inherited[$key] = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (count($inherited) === count($permKeys)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
} else {
|
2008-10-23 00:10:44 +00:00
|
|
|
switch ($perm['_' . $action]) {
|
2008-05-30 11:40:08 +00:00
|
|
|
case -1:
|
|
|
|
return false;
|
|
|
|
case 0:
|
|
|
|
continue;
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
return true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Allow $aro to have access to action $actions in $aco
|
|
|
|
*
|
2010-03-28 16:17:53 +00:00
|
|
|
* @param string $aro ARO The requesting object identifier.
|
|
|
|
* @param string $aco ACO The controlled object identifier.
|
2008-05-30 11:40:08 +00:00
|
|
|
* @param string $actions Action (defaults to *)
|
|
|
|
* @param integer $value Value to indicate access type (1 to give access, -1 to deny, 0 to inherit)
|
|
|
|
* @return boolean Success
|
2010-04-05 01:12:13 +00:00
|
|
|
* @link http://book.cakephp.org/view/1248/Assigning-Permissions
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
2010-04-05 03:19:38 +00:00
|
|
|
public function allow($aro, $aco, $actions = "*", $value = 1) {
|
2008-05-30 11:40:08 +00:00
|
|
|
$perms = $this->getAclLink($aro, $aco);
|
|
|
|
$permKeys = $this->_getAcoKeys($this->Aro->Permission->schema());
|
|
|
|
$save = array();
|
|
|
|
|
|
|
|
if ($perms == false) {
|
2010-04-15 15:52:49 +00:00
|
|
|
trigger_error(__('DbAcl::allow() - Invalid node'), E_USER_WARNING);
|
2008-05-30 11:40:08 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (isset($perms[0])) {
|
|
|
|
$save = $perms[0][$this->Aro->Permission->alias];
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($actions == "*") {
|
|
|
|
$permKeys = $this->_getAcoKeys($this->Aro->Permission->schema());
|
|
|
|
$save = array_combine($permKeys, array_pad(array(), count($permKeys), $value));
|
|
|
|
} else {
|
|
|
|
if (!is_array($actions)) {
|
|
|
|
$actions = array('_' . $actions);
|
|
|
|
}
|
|
|
|
if (is_array($actions)) {
|
|
|
|
foreach ($actions as $action) {
|
|
|
|
if ($action{0} != '_') {
|
|
|
|
$action = '_' . $action;
|
|
|
|
}
|
|
|
|
if (in_array($action, $permKeys)) {
|
|
|
|
$save[$action] = $value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
list($save['aro_id'], $save['aco_id']) = array($perms['aro'], $perms['aco']);
|
|
|
|
|
2009-11-21 20:14:21 +00:00
|
|
|
if ($perms['link'] != null && !empty($perms['link'])) {
|
2008-05-30 11:40:08 +00:00
|
|
|
$save['id'] = $perms['link'][0][$this->Aro->Permission->alias]['id'];
|
|
|
|
} else {
|
|
|
|
unset($save['id']);
|
2008-05-31 04:31:30 +00:00
|
|
|
$this->Aro->Permission->id = null;
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
|
|
|
return ($this->Aro->Permission->save($save) !== false);
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Deny access for $aro to action $action in $aco
|
|
|
|
*
|
2010-03-28 16:17:53 +00:00
|
|
|
* @param string $aro ARO The requesting object identifier.
|
|
|
|
* @param string $aco ACO The controlled object identifier.
|
2008-05-30 11:40:08 +00:00
|
|
|
* @param string $actions Action (defaults to *)
|
|
|
|
* @return boolean Success
|
2010-04-05 01:12:13 +00:00
|
|
|
* @link http://book.cakephp.org/view/1248/Assigning-Permissions
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
2010-04-05 03:19:38 +00:00
|
|
|
public function deny($aro, $aco, $action = "*") {
|
2008-05-30 11:40:08 +00:00
|
|
|
return $this->allow($aro, $aco, $action, -1);
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Let access for $aro to action $action in $aco be inherited
|
|
|
|
*
|
2010-03-28 16:17:53 +00:00
|
|
|
* @param string $aro ARO The requesting object identifier.
|
|
|
|
* @param string $aco ACO The controlled object identifier.
|
2008-05-30 11:40:08 +00:00
|
|
|
* @param string $actions Action (defaults to *)
|
|
|
|
* @return boolean Success
|
|
|
|
*/
|
2010-04-05 03:19:38 +00:00
|
|
|
public function inherit($aro, $aco, $action = "*") {
|
2008-05-30 11:40:08 +00:00
|
|
|
return $this->allow($aro, $aco, $action, 0);
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Allow $aro to have access to action $actions in $aco
|
|
|
|
*
|
2010-03-28 16:17:53 +00:00
|
|
|
* @param string $aro ARO The requesting object identifier.
|
|
|
|
* @param string $aco ACO The controlled object identifier.
|
2008-05-30 11:40:08 +00:00
|
|
|
* @param string $actions Action (defaults to *)
|
|
|
|
* @return boolean Success
|
|
|
|
* @see allow()
|
|
|
|
*/
|
2010-04-05 03:19:38 +00:00
|
|
|
public function grant($aro, $aco, $action = "*") {
|
2008-05-30 11:40:08 +00:00
|
|
|
return $this->allow($aro, $aco, $action);
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Deny access for $aro to action $action in $aco
|
|
|
|
*
|
2010-03-28 16:17:53 +00:00
|
|
|
* @param string $aro ARO The requesting object identifier.
|
|
|
|
* @param string $aco ACO The controlled object identifier.
|
2008-05-30 11:40:08 +00:00
|
|
|
* @param string $actions Action (defaults to *)
|
|
|
|
* @return boolean Success
|
|
|
|
* @see deny()
|
|
|
|
*/
|
2010-04-05 03:19:38 +00:00
|
|
|
public function revoke($aro, $aco, $action = "*") {
|
2008-05-30 11:40:08 +00:00
|
|
|
return $this->deny($aro, $aco, $action);
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Get an array of access-control links between the given Aro and Aco
|
|
|
|
*
|
2010-03-28 16:17:53 +00:00
|
|
|
* @param string $aro ARO The requesting object identifier.
|
|
|
|
* @param string $aco ACO The controlled object identifier.
|
2008-05-30 11:40:08 +00:00
|
|
|
* @return array Indexed array with: 'aro', 'aco' and 'link'
|
|
|
|
*/
|
2010-04-05 03:19:38 +00:00
|
|
|
public function getAclLink($aro, $aco) {
|
2008-05-30 11:40:08 +00:00
|
|
|
$obj = array();
|
|
|
|
$obj['Aro'] = $this->Aro->node($aro);
|
|
|
|
$obj['Aco'] = $this->Aco->node($aco);
|
|
|
|
|
|
|
|
if (empty($obj['Aro']) || empty($obj['Aco'])) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return array(
|
|
|
|
'aro' => Set::extract($obj, 'Aro.0.'.$this->Aro->alias.'.id'),
|
|
|
|
'aco' => Set::extract($obj, 'Aco.0.'.$this->Aco->alias.'.id'),
|
|
|
|
'link' => $this->Aro->Permission->find('all', array('conditions' => array(
|
|
|
|
$this->Aro->Permission->alias . '.aro_id' => Set::extract($obj, 'Aro.0.'.$this->Aro->alias.'.id'),
|
|
|
|
$this->Aro->Permission->alias . '.aco_id' => Set::extract($obj, 'Aco.0.'.$this->Aco->alias.'.id')
|
|
|
|
)))
|
|
|
|
);
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Get the keys used in an ACO
|
|
|
|
*
|
|
|
|
* @param array $keys Permission model info
|
|
|
|
* @return array ACO keys
|
|
|
|
*/
|
2010-04-05 03:21:28 +00:00
|
|
|
protected function _getAcoKeys($keys) {
|
2008-05-30 11:40:08 +00:00
|
|
|
$newKeys = array();
|
|
|
|
$keys = array_keys($keys);
|
|
|
|
foreach ($keys as $key) {
|
|
|
|
if (!in_array($key, array('id', 'aro_id', 'aco_id'))) {
|
|
|
|
$newKeys[] = $key;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $newKeys;
|
|
|
|
}
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
2010-03-28 16:20:02 +00:00
|
|
|
* IniAcl implements an access control system using an INI file. An example
|
|
|
|
* of the ini file used can be found in /config/acl.ini.php.
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
2008-10-30 17:30:26 +00:00
|
|
|
* @package cake
|
|
|
|
* @subpackage cake.cake.libs.model.iniacl
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
|
|
|
class IniAcl extends AclBase {
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Array with configuration, parsed from ini file
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
* @access public
|
|
|
|
*/
|
2010-04-04 07:14:00 +00:00
|
|
|
public $config = null;
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
2010-04-24 03:03:51 +00:00
|
|
|
* Initialize method
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
2010-04-24 03:03:51 +00:00
|
|
|
* @param AclBase $component
|
|
|
|
* @return void
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
2010-04-24 03:03:51 +00:00
|
|
|
public function initialize($component) {
|
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
2010-03-28 16:20:02 +00:00
|
|
|
* Main ACL check function. Checks to see if the ARO (access request object) has access to the
|
|
|
|
* ACO (access control object).Looks at the acl.ini.php file for permissions
|
|
|
|
* (see instructions in /config/acl.ini.php).
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
|
|
|
* @param string $aro ARO
|
|
|
|
* @param string $aco ACO
|
|
|
|
* @param string $aco_action Action
|
|
|
|
* @return boolean Success
|
|
|
|
*/
|
2010-04-05 03:19:38 +00:00
|
|
|
public function check($aro, $aco, $aco_action = null) {
|
2008-05-30 11:40:08 +00:00
|
|
|
if ($this->config == null) {
|
|
|
|
$this->config = $this->readConfigFile(CONFIGS . 'acl.ini.php');
|
|
|
|
}
|
|
|
|
$aclConfig = $this->config;
|
|
|
|
|
|
|
|
if (isset($aclConfig[$aro]['deny'])) {
|
|
|
|
$userDenies = $this->arrayTrim(explode(",", $aclConfig[$aro]['deny']));
|
|
|
|
|
|
|
|
if (array_search($aco, $userDenies)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($aclConfig[$aro]['allow'])) {
|
|
|
|
$userAllows = $this->arrayTrim(explode(",", $aclConfig[$aro]['allow']));
|
|
|
|
|
|
|
|
if (array_search($aco, $userAllows)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($aclConfig[$aro]['groups'])) {
|
|
|
|
$userGroups = $this->arrayTrim(explode(",", $aclConfig[$aro]['groups']));
|
|
|
|
|
|
|
|
foreach ($userGroups as $group) {
|
|
|
|
if (array_key_exists($group, $aclConfig)) {
|
|
|
|
if (isset($aclConfig[$group]['deny'])) {
|
|
|
|
$groupDenies=$this->arrayTrim(explode(",", $aclConfig[$group]['deny']));
|
|
|
|
|
|
|
|
if (array_search($aco, $groupDenies)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($aclConfig[$group]['allow'])) {
|
|
|
|
$groupAllows = $this->arrayTrim(explode(",", $aclConfig[$group]['allow']));
|
|
|
|
|
|
|
|
if (array_search($aco, $groupAllows)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Parses an INI file and returns an array that reflects the INI file's section structure. Double-quote friendly.
|
|
|
|
*
|
|
|
|
* @param string $fileName File
|
|
|
|
* @return array INI section structure
|
|
|
|
*/
|
2010-04-05 03:19:38 +00:00
|
|
|
public function readConfigFile($fileName) {
|
2008-05-30 11:40:08 +00:00
|
|
|
$fileLineArray = file($fileName);
|
|
|
|
|
|
|
|
foreach ($fileLineArray as $fileLine) {
|
|
|
|
$dataLine = trim($fileLine);
|
|
|
|
$firstChar = substr($dataLine, 0, 1);
|
|
|
|
|
|
|
|
if ($firstChar != ';' && $dataLine != '') {
|
|
|
|
if ($firstChar == '[' && substr($dataLine, -1, 1) == ']') {
|
|
|
|
$sectionName = preg_replace('/[\[\]]/', '', $dataLine);
|
|
|
|
} else {
|
|
|
|
$delimiter = strpos($dataLine, '=');
|
|
|
|
|
|
|
|
if ($delimiter > 0) {
|
|
|
|
$key = strtolower(trim(substr($dataLine, 0, $delimiter)));
|
|
|
|
$value = trim(substr($dataLine, $delimiter + 1));
|
|
|
|
|
|
|
|
if (substr($value, 0, 1) == '"' && substr($value, -1) == '"') {
|
|
|
|
$value = substr($value, 1, -1);
|
|
|
|
}
|
|
|
|
|
|
|
|
$iniSetting[$sectionName][$key]=stripcslashes($value);
|
|
|
|
} else {
|
|
|
|
if (!isset($sectionName)) {
|
|
|
|
$sectionName = '';
|
|
|
|
}
|
|
|
|
|
|
|
|
$iniSetting[$sectionName][strtolower(trim($dataLine))]='';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $iniSetting;
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Removes trailing spaces on all array elements (to prepare for searching)
|
|
|
|
*
|
|
|
|
* @param array $array Array to trim
|
|
|
|
* @return array Trimmed array
|
|
|
|
*/
|
2010-04-05 03:19:38 +00:00
|
|
|
public function arrayTrim($array) {
|
2008-05-30 11:40:08 +00:00
|
|
|
foreach ($array as $key => $value) {
|
|
|
|
$array[$key] = trim($value);
|
|
|
|
}
|
|
|
|
array_unshift($array, "");
|
|
|
|
return $array;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|