2005-11-05 04:08:14 +00:00
|
|
|
<?php
|
|
|
|
/* SVN FILE: $Id$ */
|
|
|
|
|
|
|
|
/**
|
2006-01-12 02:10:47 +00:00
|
|
|
* This is core configuration file.
|
|
|
|
*
|
2005-11-05 04:08:14 +00:00
|
|
|
* Use it to configure core behaviour ofCake.
|
|
|
|
*
|
|
|
|
* PHP versions 4 and 5
|
|
|
|
*
|
|
|
|
* CakePHP : Rapid Development Framework <http://www.cakephp.org/>
|
2006-01-20 07:46:14 +00:00
|
|
|
* Copyright (c) 2006, Cake Software Foundation, Inc.
|
2005-12-23 21:57:26 +00:00
|
|
|
* 1785 E. Sahara Avenue, Suite 490-204
|
|
|
|
* Las Vegas, Nevada 89104
|
2006-01-12 02:10:47 +00:00
|
|
|
*
|
2005-12-23 21:57:26 +00:00
|
|
|
* Licensed under The MIT License
|
|
|
|
* Redistributions of files must retain the above copyright notice.
|
2005-11-05 04:08:14 +00:00
|
|
|
*
|
2006-01-12 02:10:47 +00:00
|
|
|
* @filesource
|
2006-01-20 07:46:14 +00:00
|
|
|
* @copyright Copyright (c) 2006, Cake Software Foundation, Inc.
|
2005-12-23 21:57:26 +00:00
|
|
|
* @link http://www.cakefoundation.org/projects/info/cakephp CakePHP Project
|
2005-11-05 04:08:14 +00:00
|
|
|
* @package cake
|
2006-02-25 19:20:18 +00:00
|
|
|
* @subpackage cake.cake.libs.controller.componenets.dbacl
|
2005-11-05 04:08:14 +00:00
|
|
|
* @since CakePHP v 0.2.9
|
|
|
|
* @version $Revision$
|
|
|
|
* @modifiedby $LastChangedBy$
|
|
|
|
* @lastmodified $Date$
|
|
|
|
* @license http://www.opensource.org/licenses/mit-license.php The MIT License
|
|
|
|
*/
|
|
|
|
|
|
|
|
uses('controller'.DS.'components'.DS.'acl_base');
|
|
|
|
uses('controller'.DS.'components'.DS.'dbacl'.DS.'models'.DS.'aclnode');
|
|
|
|
uses('controller'.DS.'components'.DS.'dbacl'.DS.'models'.DS.'aco');
|
|
|
|
uses('controller'.DS.'components'.DS.'dbacl'.DS.'models'.DS.'acoaction');
|
|
|
|
uses('controller'.DS.'components'.DS.'dbacl'.DS.'models'.DS.'aro');
|
|
|
|
uses('controller'.DS.'components'.DS.'dbacl'.DS.'models'.DS.'aros_aco');
|
|
|
|
|
|
|
|
/**
|
|
|
|
* In this file you can extend the AclBase.
|
|
|
|
*
|
|
|
|
* @package cake
|
2006-02-25 19:20:18 +00:00
|
|
|
* @subpackage cake.cake.libs.controller.components.dbacl
|
2005-11-05 04:08:14 +00:00
|
|
|
*/
|
|
|
|
|
2006-01-12 02:10:47 +00:00
|
|
|
class DB_ACL extends AclBase
|
2005-11-05 04:08:14 +00:00
|
|
|
{
|
|
|
|
|
2005-12-22 01:07:28 +00:00
|
|
|
/**
|
|
|
|
* Enter description here...
|
|
|
|
*
|
|
|
|
*/
|
2006-02-18 23:42:21 +00:00
|
|
|
function __construct()
|
|
|
|
{
|
2006-01-12 02:10:47 +00:00
|
|
|
|
2006-02-18 23:42:21 +00:00
|
|
|
}
|
2006-01-12 02:10:47 +00:00
|
|
|
|
2005-12-22 01:07:28 +00:00
|
|
|
/**
|
|
|
|
* Enter description here...
|
|
|
|
*
|
|
|
|
* @param unknown_type $aro
|
|
|
|
* @param unknown_type $aco
|
|
|
|
* @param unknown_type $action
|
|
|
|
* @return unknown
|
|
|
|
*/
|
2006-02-18 23:42:21 +00:00
|
|
|
function check($aro, $aco, $action = "*")
|
|
|
|
{
|
2005-11-05 04:08:14 +00:00
|
|
|
$Perms = new ArosAco();
|
|
|
|
$Aro = new Aro();
|
|
|
|
$Aco = new Aco();
|
2006-01-12 02:10:47 +00:00
|
|
|
|
2005-11-05 04:08:14 +00:00
|
|
|
if($aro == null || $aco == null)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$permKeys = $this->_getAcoKeys($Perms->loadInfo());
|
|
|
|
$aroPath = $Aro->getPath($aro);
|
|
|
|
$tmpAcoPath = $Aco->getPath($aco);
|
|
|
|
$acoPath = array();
|
|
|
|
|
2006-01-18 05:35:14 +00:00
|
|
|
if($action != '*' && !in_array('_' . $action, $permKeys))
|
2005-11-05 04:08:14 +00:00
|
|
|
{
|
2006-03-28 02:44:55 +00:00
|
|
|
trigger_error('ACO permissions key "' . $action . '" does not exist in DB_ACL::check()', E_USER_NOTICE);
|
|
|
|
return false;
|
2005-11-05 04:08:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
foreach($tmpAcoPath as $a)
|
|
|
|
{
|
|
|
|
$acoPath[] = $a['Aco']['id'];
|
|
|
|
}
|
|
|
|
|
|
|
|
for($i = count($aroPath) - 1; $i >= 0; $i--)
|
|
|
|
{
|
2006-03-28 02:44:55 +00:00
|
|
|
$perms = $Perms->findAll(array('ArosAco.aro_id' => $aroPath[$i]['Aro']['id'], 'ArosAco.aco_id' => $acoPath), null, 'Aco.lft asc');
|
|
|
|
|
2005-11-05 04:08:14 +00:00
|
|
|
if($perms == null || count($perms) == 0)
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
foreach($perms as $perm)
|
|
|
|
{
|
2006-02-18 23:42:21 +00:00
|
|
|
if($action == '*')
|
|
|
|
{
|
|
|
|
// ARO must be cleared for ALL ACO actions
|
2005-11-05 04:08:14 +00:00
|
|
|
foreach($permKeys as $key)
|
|
|
|
{
|
2006-03-28 02:44:55 +00:00
|
|
|
if(isset($perm['ArosAco']))
|
2005-11-05 04:08:14 +00:00
|
|
|
{
|
2006-03-28 02:44:55 +00:00
|
|
|
if($perm['ArosAco'][$key] != 1)
|
2005-12-22 01:17:03 +00:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2005-11-05 04:08:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
2006-02-18 23:42:21 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-03-28 02:44:55 +00:00
|
|
|
switch($perm['ArosAco']['_' . $action])
|
2005-11-05 04:08:14 +00:00
|
|
|
{
|
|
|
|
case -1:
|
|
|
|
return false;
|
|
|
|
case 0:
|
|
|
|
continue;
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
return true;
|
|
|
|
}
|
2006-02-18 23:42:21 +00:00
|
|
|
}
|
2005-11-05 04:08:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
2006-02-18 23:42:21 +00:00
|
|
|
}
|
2005-11-05 04:08:14 +00:00
|
|
|
|
2005-12-22 01:07:28 +00:00
|
|
|
/**
|
|
|
|
* Allow
|
|
|
|
*
|
|
|
|
* @return boolean
|
|
|
|
*/
|
2006-02-18 23:42:21 +00:00
|
|
|
function allow($aro, $aco, $action = "*", $value = 1)
|
|
|
|
{
|
2006-03-28 02:44:55 +00:00
|
|
|
$Perms = new ArosAco();
|
|
|
|
$perms = $this->getAclLink($aro, $aco);
|
|
|
|
$permKeys = $this->_getAcoKeys($Perms->loadInfo());
|
|
|
|
$save = array();
|
|
|
|
|
|
|
|
if($perms == false)
|
|
|
|
{
|
|
|
|
trigger_error('DB_ACL::allow() - Invalid node', E_USER_WARNING);
|
2005-12-22 01:17:03 +00:00
|
|
|
return false;
|
2006-03-28 02:44:55 +00:00
|
|
|
}
|
2005-11-05 04:08:14 +00:00
|
|
|
|
2006-03-28 02:44:55 +00:00
|
|
|
if(isset($perms[0]))
|
|
|
|
{
|
|
|
|
$save = $perms[0]['ArosAco'];
|
|
|
|
}
|
2006-01-12 02:10:47 +00:00
|
|
|
|
2006-03-28 02:44:55 +00:00
|
|
|
if($action == "*")
|
|
|
|
{
|
|
|
|
$permKeys = $this->_getAcoKeys($Perms->loadInfo());
|
|
|
|
foreach($permKeys as $key)
|
2005-11-05 04:08:14 +00:00
|
|
|
{
|
2006-03-28 02:44:55 +00:00
|
|
|
$save[$key] = $value;
|
2005-11-05 04:08:14 +00:00
|
|
|
}
|
2006-03-28 02:44:55 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if(in_array('_' . $action, $permKeys))
|
|
|
|
{
|
|
|
|
$save['_' . $action] = $value;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
trigger_error('DB_ACL::allow() - Invalid ACO action', E_USER_WARNING);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$save['aro_id'] = $perms['aro'];
|
|
|
|
$save['aco_id'] = $perms['aco'];
|
2006-01-12 02:10:47 +00:00
|
|
|
|
2006-03-28 02:44:55 +00:00
|
|
|
if($perms['link'] != null && count($perms['link']) > 0)
|
|
|
|
{
|
|
|
|
$save['id'] = $perms['link'][0]['ArosAco']['id'];
|
|
|
|
}
|
|
|
|
return $Perms->save(array('ArosAco' => $save));
|
2006-02-18 23:42:21 +00:00
|
|
|
}
|
2005-11-05 04:08:14 +00:00
|
|
|
|
2005-12-22 01:07:28 +00:00
|
|
|
/**
|
|
|
|
* Deny
|
|
|
|
*
|
|
|
|
* @return boolean
|
|
|
|
*/
|
2006-02-18 23:42:21 +00:00
|
|
|
function deny($aro, $aco, $action = "*")
|
|
|
|
{
|
2005-11-05 04:08:14 +00:00
|
|
|
return $this->allow($aro, $aco, $action, -1);
|
2006-02-18 23:42:21 +00:00
|
|
|
}
|
2005-11-05 04:08:14 +00:00
|
|
|
|
2005-12-22 01:07:28 +00:00
|
|
|
/**
|
|
|
|
* Inherit
|
|
|
|
*
|
|
|
|
* @return boolean
|
|
|
|
*/
|
2006-02-18 23:42:21 +00:00
|
|
|
function inherit($aro, $aco, $action = "*")
|
|
|
|
{
|
2005-11-05 04:08:14 +00:00
|
|
|
return $this->allow($aro, $aco, $action, 0);
|
2006-02-18 23:42:21 +00:00
|
|
|
}
|
2005-11-05 04:08:14 +00:00
|
|
|
|
2005-12-22 01:07:28 +00:00
|
|
|
/**
|
|
|
|
* Allow alias
|
|
|
|
*
|
|
|
|
* @return boolean
|
|
|
|
*/
|
2006-02-18 23:42:21 +00:00
|
|
|
function grant($aro, $aco, $action = "*")
|
|
|
|
{
|
2005-11-05 04:08:14 +00:00
|
|
|
return $this->allow($aro, $aco, $action);
|
2006-02-18 23:42:21 +00:00
|
|
|
}
|
2005-11-05 04:08:14 +00:00
|
|
|
|
2005-12-22 01:07:28 +00:00
|
|
|
/**
|
|
|
|
* Deny alias
|
|
|
|
*
|
|
|
|
* @return boolean
|
|
|
|
*/
|
2006-02-18 23:42:21 +00:00
|
|
|
function revoke($aro, $aco, $action = "*")
|
|
|
|
{
|
2005-11-05 04:08:14 +00:00
|
|
|
return $this->deny($aro, $aco, $action);
|
2006-02-18 23:42:21 +00:00
|
|
|
}
|
2005-11-05 04:08:14 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2005-12-22 01:07:28 +00:00
|
|
|
/**
|
2006-03-28 02:44:55 +00:00
|
|
|
* Get an ARO object from the given id or alias
|
2005-12-22 01:07:28 +00:00
|
|
|
*
|
2006-03-28 02:44:55 +00:00
|
|
|
* @param mixed $id
|
|
|
|
* @return Aro
|
2005-12-22 01:07:28 +00:00
|
|
|
*/
|
2006-02-18 23:42:21 +00:00
|
|
|
function getAro($id = null)
|
|
|
|
{
|
2006-03-28 02:44:55 +00:00
|
|
|
return $this->__getObject($id, 'Aro');
|
2006-02-18 23:42:21 +00:00
|
|
|
}
|
2005-11-05 04:08:14 +00:00
|
|
|
|
|
|
|
|
2005-12-22 01:07:28 +00:00
|
|
|
/**
|
2006-03-28 02:44:55 +00:00
|
|
|
* Get an ACO object from the given id or alias
|
2005-12-22 01:07:28 +00:00
|
|
|
*
|
2006-03-28 02:44:55 +00:00
|
|
|
* @param mixed $id
|
|
|
|
* @return Aco
|
2005-12-22 01:07:28 +00:00
|
|
|
*/
|
2006-02-18 23:42:21 +00:00
|
|
|
function getAco($id = null)
|
|
|
|
{
|
2006-03-28 02:44:55 +00:00
|
|
|
return $this->__getObject($id, 'Aco');
|
2006-02-18 23:42:21 +00:00
|
|
|
}
|
2005-11-05 04:08:14 +00:00
|
|
|
|
2005-12-22 01:07:28 +00:00
|
|
|
/**
|
2006-03-28 02:44:55 +00:00
|
|
|
* Privaate method
|
2005-12-22 01:07:28 +00:00
|
|
|
*
|
|
|
|
*/
|
2006-03-28 02:44:55 +00:00
|
|
|
function __getObject($id = null, $object)
|
2006-02-18 23:42:21 +00:00
|
|
|
{
|
2006-03-28 02:44:55 +00:00
|
|
|
if($id == null)
|
|
|
|
{
|
|
|
|
trigger_error('Null id provided in DB_ACL::get'.$object, E_USER_WARNING);
|
|
|
|
return null;
|
|
|
|
}
|
2006-05-09 02:15:47 +00:00
|
|
|
$obj = new $object;
|
|
|
|
|
2006-04-29 21:51:30 +00:00
|
|
|
if (is_numeric($id))
|
|
|
|
{
|
2006-05-09 02:15:47 +00:00
|
|
|
$key = 'user_id';
|
|
|
|
if ($object == 'Aco')
|
|
|
|
{
|
|
|
|
$key = 'object_id';
|
|
|
|
}
|
|
|
|
$conditions = array($object.'.'.$key => $id);
|
2006-04-29 21:51:30 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-05-09 02:15:47 +00:00
|
|
|
$conditions = array($object.'.alias' => $id);
|
2006-04-29 21:51:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$tmp = $obj->find($conditions);
|
2006-05-09 02:15:47 +00:00
|
|
|
$obj->id = $tmp[$object]['id'];
|
|
|
|
return $obj;
|
2006-03-28 02:44:55 +00:00
|
|
|
}
|
2006-01-12 02:10:47 +00:00
|
|
|
|
2006-03-28 02:44:55 +00:00
|
|
|
/**
|
|
|
|
* Get an array of access-control links between the given Aro and Aco
|
|
|
|
*
|
|
|
|
* @param mixed $aro
|
|
|
|
* @param mixed $aco
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
function getAclLink($aro, $aco)
|
|
|
|
{
|
|
|
|
$Aro = new Aro();
|
|
|
|
$Aco = new Aco();
|
|
|
|
$Link = new ArosAco();
|
2005-12-22 01:17:03 +00:00
|
|
|
|
2005-11-05 04:08:14 +00:00
|
|
|
$obj = array();
|
2006-03-28 02:44:55 +00:00
|
|
|
$obj['Aro'] = $Aro->find($Aro->_resolveID($aro));
|
|
|
|
$obj['Aco'] = $Aco->find($Aco->_resolveID($aco));
|
2005-11-05 04:08:14 +00:00
|
|
|
$obj['Aro'] = $obj['Aro']['Aro'];
|
|
|
|
$obj['Aco'] = $obj['Aco']['Aco'];
|
|
|
|
|
2005-12-22 01:17:03 +00:00
|
|
|
if($obj['Aro'] == null || count($obj['Aro']) == 0 || $obj['Aco'] == null || count($obj['Aco']) == 0)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2005-11-05 04:08:14 +00:00
|
|
|
return array(
|
|
|
|
'aro' => $obj['Aro']['id'],
|
|
|
|
'aco' => $obj['Aco']['id'],
|
2006-03-28 02:44:55 +00:00
|
|
|
'link' => $Link->findAll(array('ArosAco.aro_id' => $obj['Aro']['id'], 'ArosAco.aco_id' => $obj['Aco']['id']))
|
2005-11-05 04:08:14 +00:00
|
|
|
);
|
2006-02-18 23:42:21 +00:00
|
|
|
}
|
2005-11-05 04:08:14 +00:00
|
|
|
|
2005-12-22 01:07:28 +00:00
|
|
|
/**
|
|
|
|
* Enter description here...
|
|
|
|
*
|
|
|
|
* @param unknown_type $keys
|
|
|
|
* @return unknown
|
|
|
|
*/
|
2006-02-18 23:42:21 +00:00
|
|
|
function _getAcoKeys($keys)
|
|
|
|
{
|
2005-11-05 04:08:14 +00:00
|
|
|
$newKeys = array();
|
|
|
|
$keys = $keys->value;
|
|
|
|
foreach($keys as $key)
|
|
|
|
{
|
|
|
|
if($key['name'] != 'id' && $key['name'] != 'aro_id' && $key['name'] != 'aco_id')
|
|
|
|
{
|
|
|
|
$newKeys[] = $key['name'];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $newKeys;
|
2006-02-18 23:42:21 +00:00
|
|
|
}
|
2005-11-05 04:08:14 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|