X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=gosa-core%2Finclude%2Fclass_configRegistry.inc;h=22e3e16c2264a9a80c937a316c7373f88b925f1b;hb=0998bc227b3037c4f3f79ef60aa34e3811b853a3;hp=e0e09f94fcf5ee4f77248d840f9a9fe41426553a;hpb=9540255fc994b107abc71468c306d408e290d7bb;p=gosa.git diff --git a/gosa-core/include/class_configRegistry.inc b/gosa-core/include/class_configRegistry.inc index e0e09f94f..22e3e16c2 100644 --- a/gosa-core/include/class_configRegistry.inc +++ b/gosa-core/include/class_configRegistry.inc @@ -4,8 +4,6 @@ class configRegistry{ public $config = NULL; public $properties = array(); - public $mapByClass = array(); - public $mapPropertyToClass = array(); public $ldapStoredProperties = array(); public $fileStoredProperties = array(); public $classToName = array(); @@ -30,9 +28,7 @@ class configRegistry{ $this->ldapStoredProperties = array(); $this->fileStoredProperties = array(); $this->properties = array(); - $this->mapByClass = array(); $this->mapByName = array(); - $this->mapPropertyToClass = array(); // Search for config flags defined in the config file (TAB section) foreach($this->config->data['TABS'] as $tabname => $tabdefs){ @@ -116,9 +112,8 @@ class configRegistry{ { $id = count($this->properties); $this->properties[$id] = new gosaProperty($this,$class,$data); - $this->mapByName[$class][$data['name']] = $id; - $this->mapByClass[$class][] = $id; - $this->mapPropertyToClass[$id] = $class; + $p = strtolower("{$class}::{$data['name']}"); + $this->mapByName[$p] = $id; } public function getAllProperties() @@ -127,17 +122,18 @@ class configRegistry{ } function propertyExists($class,$name) - { - if(!isset($this->mapByName[$class][$name])){ - print_a(array($class,$name)); - - } - return(isset($this->mapByName[$class][$name])); + { + $p = strtolower("{$class}::{$name}"); + return(isset($this->mapByName[$p])); } private function getId($class,$name) { - return($this->mapByName[$class][$name]); + $p = strtolower("{$class}::{$name}"); + if(!isset($this->mapByName[$p])){ + return(-1); + } + return($this->mapByName[$p]); } function getProperty($class,$name) @@ -181,8 +177,10 @@ class gosaProperty protected $name = ""; protected $class = ""; protected $value = ""; + protected $tmp_value = ""; // Used when modified but not saved protected $type = "string"; protected $default = ""; + protected $defaults = ""; protected $description = ""; protected $check = ""; protected $migrate = ""; @@ -200,7 +198,7 @@ class gosaProperty protected $status = 'undefined'; protected $attributes = array('name','type','default','description','check', - 'migrate','mandatory','group'); + 'migrate','mandatory','group','defaults'); function __construct($parent,$classname,$data) { @@ -220,6 +218,41 @@ class gosaProperty $this->_restoreCurrentValue(); } + static function isBool($message,$class,$name,$value, $type) + { + return(in_array($value,array('true','false',''))); + } + + static function isInteger($message,$class,$name,$value, $type) + { + return(is_numeric($value) && !preg_match("/[^0-9]/", $value)); + } + + static function isPath($message,$class,$name,$value, $type) + { + return(TRUE); + } + + static function isWriteablePath($message,$class,$name,$value, $type) + { + return(!empty($value)&&is_writeable($value)); + } + + static function isCommand($message,$class,$name,$value, $type) + { + return(TRUE); + } + + static function isDn($message,$class,$name,$value, $type) + { + return(TRUE); + } + + static function isRdn($message,$class,$name,$value, $type) + { + return(TRUE); + } + private function _restoreCurrentValue() { @@ -243,7 +276,6 @@ class gosaProperty } } - function getValue() { return($this->value); } function getMigrate() { return($this->migrate); } function getCheck() { return($this->check); } function getName() { return($this->name); } @@ -252,6 +284,7 @@ class gosaProperty function getType() { return($this->type); } function getDescription() { return($this->description); } function getDefault() { return($this->default); } + function getDefaults() { return($this->defaults); } function getStatus() { return($this->status); } function isMandatory() { return($this->mandatory); } @@ -259,7 +292,16 @@ class gosaProperty { if($this->value != $str){ $this->setStatus('modified'); - $this->value = $str; + $this->tmp_value = $str; + } + } + + function getValue($temporary = FALSE) + { + if($temporary && in_array($this->getStatus(), array('modified'))){ + return($this->tmp_value); + }else{ + return($this->value); } } @@ -275,7 +317,6 @@ class gosaProperty function save() { if($this->getStatus() == 'modified'){ - $ldap = $this->parent->config->get_ldap_link(); $ldap->cd($this->parent->config->current['BASE']); $dn = "cn={$this->class},".$this->parent->config->current['CONFIG']; @@ -285,13 +326,12 @@ class gosaProperty $data = array( 'cn' => $this->class, 'objectClass' => array('top','gosaConfig'), - 'gosaSetting' => $this->name.":".$this->value); + 'gosaSetting' => $this->name.":".$this->tmp_value); $ldap->add($data); if(!$ldap->success()){ echo $ldap->get_error(); } - $this->_restoreCurrentValue(); }else{ $attrs = $ldap->fetch(); @@ -300,19 +340,19 @@ class gosaProperty for($i = 0;$i<$attrs['gosaSetting']['count']; $i ++){ $set = $attrs['gosaSetting'][$i]; if(preg_match("/^{$this->name}:/", $set)){ - $set = "{$this->name}:{$this->value}"; + $set = "{$this->name}:{$this->tmp_value}"; $found = true; } $data['gosaSetting'][] = $set; } - if(!$found) $data['gosaSetting'][] = "{$this->name}:{$this->value}"; + if(!$found) $data['gosaSetting'][] = "{$this->name}:{$this->tmp_value}"; $ldap->cd($dn); $ldap->modify($data); if(!$ldap->success()){ echo $ldap->get_error(); } - $this->_restoreCurrentValue(); } + $this->_restoreCurrentValue(); }elseif($this->getStatus() == 'removed'){ $ldap = $this->parent->config->get_ldap_link(); $ldap->cd($this->parent->config->current['BASE']);