2005-08-21 06:49:02 +00:00
|
|
|
<?php
|
|
|
|
/* SVN FILE: $Id$ */
|
|
|
|
|
|
|
|
/**
|
2005-09-07 01:52:45 +00:00
|
|
|
* Access Control List factory class.
|
2006-01-12 02:10:47 +00:00
|
|
|
*
|
2005-09-07 01:52:45 +00:00
|
|
|
* Permissions system.
|
2005-08-21 06:49:02 +00:00
|
|
|
*
|
|
|
|
* PHP versions 4 and 5
|
|
|
|
*
|
|
|
|
* CakePHP : Rapid Development Framework <http://www.cakephp.org/>
|
2006-01-12 02:10:47 +00:00
|
|
|
* Copyright (c) 2005, 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-08-21 06:49:02 +00:00
|
|
|
*
|
2006-01-12 02:10:47 +00:00
|
|
|
* @filesource
|
2005-12-23 21:57:26 +00:00
|
|
|
* @copyright Copyright (c) 2005, Cake Software Foundation, Inc.
|
|
|
|
* @link http://www.cakefoundation.org/projects/info/cakephp CakePHP Project
|
2005-08-21 06:49:02 +00:00
|
|
|
* @package cake
|
2005-10-09 01:56:21 +00:00
|
|
|
* @subpackage cake.cake.libs.controller.components
|
|
|
|
* @since CakePHP v 0.10.0.1076
|
2005-08-21 06:49:02 +00:00
|
|
|
* @version $Revision$
|
|
|
|
* @modifiedby $LastChangedBy$
|
|
|
|
* @lastmodified $Date$
|
|
|
|
* @license http://www.opensource.org/licenses/mit-license.php The MIT License
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Access Control List factory class.
|
2006-01-12 02:10:47 +00:00
|
|
|
*
|
2005-08-21 06:49:02 +00:00
|
|
|
* Looks for ACL implementation class in core config, and returns an instance of that class.
|
|
|
|
*
|
|
|
|
* @package cake
|
2005-10-09 01:56:21 +00:00
|
|
|
* @subpackage cake.cake.libs.controller.components
|
|
|
|
* @since CakePHP v 0.10.0.1076
|
2005-08-21 06:49:02 +00:00
|
|
|
*
|
|
|
|
*/
|
2005-12-22 01:07:28 +00:00
|
|
|
class AclComponent extends Object
|
2005-11-05 04:08:14 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
var $_instance = null;
|
|
|
|
var $controller = true;
|
|
|
|
|
2005-12-22 01:07:28 +00:00
|
|
|
/**
|
|
|
|
* Enter description here...
|
|
|
|
*
|
|
|
|
*/
|
2005-11-05 04:08:14 +00:00
|
|
|
function __construct()
|
|
|
|
{
|
|
|
|
$this->getACL();
|
|
|
|
}
|
|
|
|
|
2005-12-22 01:07:28 +00:00
|
|
|
/**
|
|
|
|
* Static function used to gain an instance of the correct ACL class.
|
|
|
|
*
|
|
|
|
* @return MyACL
|
|
|
|
*/
|
2006-01-12 02:10:47 +00:00
|
|
|
function &getACL()
|
2005-11-05 04:08:14 +00:00
|
|
|
{
|
|
|
|
if($this->_instance == null)
|
|
|
|
{
|
|
|
|
uses('controller'.DS.'components'.DS.ACL_FILENAME);
|
|
|
|
$classname = ACL_CLASSNAME;
|
|
|
|
$this->_instance = new $classname;
|
|
|
|
}
|
|
|
|
return $this->_instance;
|
|
|
|
}
|
|
|
|
|
2005-12-22 01:07:28 +00:00
|
|
|
/**
|
|
|
|
* Enter description here...
|
|
|
|
*
|
|
|
|
*/
|
2005-11-05 04:08:14 +00:00
|
|
|
function _initACL()
|
|
|
|
{
|
2006-01-12 02:10:47 +00:00
|
|
|
|
2005-11-05 04:08:14 +00:00
|
|
|
}
|
|
|
|
|
2005-12-22 01:07:28 +00:00
|
|
|
/**
|
|
|
|
* Pass-thru function for ACL check instance.
|
|
|
|
*
|
|
|
|
* @return boolean
|
|
|
|
*/
|
2005-11-05 04:08:14 +00:00
|
|
|
function check($aro, $aco, $action = "*")
|
|
|
|
{
|
|
|
|
return $this->_instance->check($aro, $aco, $action);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-12-22 01:07:28 +00:00
|
|
|
/**
|
|
|
|
* Pass-thru function for ACL allow instance.
|
|
|
|
*
|
|
|
|
* @return boolean
|
|
|
|
*/
|
2005-11-05 04:08:14 +00:00
|
|
|
function allow($aro, $aco, $action = "*")
|
2005-10-03 04:43:55 +00:00
|
|
|
{
|
2005-11-05 04:08:14 +00:00
|
|
|
return $this->_instance->allow($aro, $aco, $action);
|
|
|
|
}
|
2005-10-03 04:43:55 +00:00
|
|
|
|
2005-12-22 01:07:28 +00:00
|
|
|
/**
|
|
|
|
* Pass-thru function for ACL deny instance.
|
|
|
|
*
|
|
|
|
* @return boolean
|
|
|
|
*/
|
2005-11-05 04:08:14 +00:00
|
|
|
function deny($aro, $aco, $action = "*")
|
|
|
|
{
|
|
|
|
return $this->_instance->deny($aro, $aco, $action);
|
|
|
|
}
|
|
|
|
|
2005-12-22 01:07:28 +00:00
|
|
|
/**
|
|
|
|
* Pass-thru function for ACL inherit instance.
|
|
|
|
*
|
|
|
|
* @return boolean
|
|
|
|
*/
|
2005-11-05 04:08:14 +00:00
|
|
|
function inherit($aro, $aco, $action = "*")
|
|
|
|
{
|
|
|
|
return $this->_instance->inherit($aro, $aco, $action);
|
|
|
|
}
|
|
|
|
|
2005-12-22 01:07:28 +00:00
|
|
|
/**
|
|
|
|
* Pass-thru function for ACL grant instance.
|
|
|
|
*
|
|
|
|
* @return boolean
|
|
|
|
*/
|
2005-11-05 04:08:14 +00:00
|
|
|
function grant($aro, $aco, $action = "*")
|
|
|
|
{
|
|
|
|
return $this->_instance->grant($aro, $aco, $action);
|
|
|
|
}
|
|
|
|
|
2005-12-22 01:07:28 +00:00
|
|
|
/**
|
|
|
|
* Pass-thru function for ACL grant instance.
|
|
|
|
*
|
|
|
|
* @return boolean
|
|
|
|
*/
|
2005-11-05 04:08:14 +00:00
|
|
|
function revoke($aro, $aco, $action = "*")
|
|
|
|
{
|
|
|
|
return $this->_instance->revoke($aro, $aco, $action);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-12-22 01:07:28 +00:00
|
|
|
/**
|
|
|
|
* Pass-thru function for ACL getAro instance.
|
|
|
|
*
|
|
|
|
* @return Aro
|
|
|
|
*/
|
2005-11-05 04:08:14 +00:00
|
|
|
function getAro($id)
|
|
|
|
{
|
|
|
|
return $this->_instance->getAro($id);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-12-22 01:07:28 +00:00
|
|
|
/**
|
|
|
|
* Pass-thru function for ACL getAco instance.
|
|
|
|
*
|
|
|
|
* @return Aco
|
|
|
|
*/
|
2005-11-05 04:08:14 +00:00
|
|
|
function getAco($id)
|
|
|
|
{
|
|
|
|
return $this->_instance->getAco($id);
|
2005-10-03 04:43:55 +00:00
|
|
|
}
|
2005-08-21 06:49:02 +00:00
|
|
|
|
|
|
|
}
|
2005-11-05 04:08:14 +00:00
|
|
|
|
2006-01-12 02:10:47 +00:00
|
|
|
?>
|