mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 11:28:25 +00:00
ef77e60cb0
Removing duplicate cake.cake in @package tags. Renaming cake.app -> app
113 lines
3.1 KiB
PHP
113 lines
3.1 KiB
PHP
<?php
|
|
/**
|
|
* ACL behavior class.
|
|
*
|
|
* Enables objects to easily tie into an ACL system
|
|
*
|
|
* PHP 5
|
|
*
|
|
* CakePHP : Rapid Development Framework (http://cakephp.org)
|
|
* Copyright 2006-2010, Cake Software Foundation, Inc.
|
|
*
|
|
* Licensed under The MIT License
|
|
* Redistributions of files must retain the above copyright notice.
|
|
*
|
|
* @copyright Copyright 2006-2010, Cake Software Foundation, Inc.
|
|
* @link http://cakephp.org CakePHP Project
|
|
* @package cake.libs.model.behaviors
|
|
* @since CakePHP v 1.2.0.4487
|
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
|
*/
|
|
|
|
/**
|
|
* ACL behavior
|
|
*
|
|
* @package cake.libs.model.behaviors
|
|
* @link http://book.cakephp.org/view/1320/ACL
|
|
*/
|
|
class AclBehavior extends ModelBehavior {
|
|
|
|
/**
|
|
* Maps ACL type options to ACL models
|
|
*
|
|
* @var array
|
|
* @access protected
|
|
*/
|
|
private $__typeMaps = array('requester' => 'Aro', 'controlled' => 'Aco');
|
|
|
|
/**
|
|
* Sets up the configuation for the model, and loads ACL models if they haven't been already
|
|
*
|
|
* @param mixed $config
|
|
* @return void
|
|
*/
|
|
public function setup($model, $config = array()) {
|
|
if (is_string($config)) {
|
|
$config = array('type' => $config);
|
|
}
|
|
$this->settings[$model->name] = array_merge(array('type' => 'requester'), (array)$config);
|
|
$this->settings[$model->name]['type'] = strtolower($this->settings[$model->name]['type']);
|
|
|
|
$type = $this->__typeMaps[$this->settings[$model->name]['type']];
|
|
if (!class_exists('AclNode')) {
|
|
require LIBS . 'model' . DS . 'db_acl.php';
|
|
}
|
|
$model->{$type} = ClassRegistry::init($type);
|
|
if (!method_exists($model, 'parentNode')) {
|
|
trigger_error(__('Callback parentNode() not defined in %s', $model->alias), E_USER_WARNING);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Retrieves the Aro/Aco node for this model
|
|
*
|
|
* @param mixed $ref
|
|
* @return array
|
|
* @link http://book.cakephp.org/view/1322/node
|
|
*/
|
|
public function node($model, $ref = null) {
|
|
$type = $this->__typeMaps[$this->settings[$model->name]['type']];
|
|
if (empty($ref)) {
|
|
$ref = array('model' => $model->name, 'foreign_key' => $model->id);
|
|
}
|
|
return $model->{$type}->node($ref);
|
|
}
|
|
|
|
/**
|
|
* Creates a new ARO/ACO node bound to this record
|
|
*
|
|
* @param boolean $created True if this is a new record
|
|
* @return void
|
|
*/
|
|
public function afterSave($model, $created) {
|
|
$type = $this->__typeMaps[$this->settings[$model->name]['type']];
|
|
$parent = $model->parentNode();
|
|
if (!empty($parent)) {
|
|
$parent = $this->node($model, $parent);
|
|
}
|
|
$data = array(
|
|
'parent_id' => isset($parent[0][$type]['id']) ? $parent[0][$type]['id'] : null,
|
|
'model' => $model->alias,
|
|
'foreign_key' => $model->id
|
|
);
|
|
if (!$created) {
|
|
$node = $this->node($model);
|
|
$data['id'] = isset($node[0][$type]['id']) ? $node[0][$type]['id'] : null;
|
|
}
|
|
$model->{$type}->create();
|
|
$model->{$type}->save($data);
|
|
}
|
|
|
|
/**
|
|
* Destroys the ARO/ACO node bound to the deleted record
|
|
*
|
|
* @return void
|
|
*/
|
|
public function afterDelete($model) {
|
|
$type = $this->__typeMaps[$this->settings[$model->name]['type']];
|
|
$node = Set::extract($this->node($model), "0.{$type}.id");
|
|
if (!empty($node)) {
|
|
$model->{$type}->delete($node);
|
|
}
|
|
}
|
|
}
|