summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 988a67a)
raw | patch | inline | side by side (parent: 988a67a)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Wed, 30 Aug 2006 05:48:01 +0000 (05:48 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Wed, 30 Aug 2006 05:48:01 +0000 (05:48 +0000) |
Only save edited scripts-
git-svn-id: https://oss.gonicus.de/repositories/gosa/branches/2.5@4538 594d385d-05f5-0310-b6e9-bd551577e9d8
git-svn-id: https://oss.gonicus.de/repositories/gosa/branches/2.5@4538 594d385d-05f5-0310-b6e9-bd551577e9d8
plugins/admin/fai/class_faiScript.inc | patch | blob | history |
index 371a57c56c69de091b97bbba99442c35ade46404..64c9aa390d84805fcaa5e16f6e34244e659a7dbd 100644 (file)
var $subClassName = "faiScriptEntry";
/* Attributes to initialise for each subObject */
- var $subAttributes = array("cn","description","FAIpriority","FAIscript");
+ var $subAttributes = array("cn","description","FAIpriority");
+ var $sub_Load_Later = array("FAIscript");
var $sub64coded = array();
+ var $subBinary = array("FAIscript");
/* Specific attributes */
var $cn = ""; // The class name for this object
while($object = $ldap->fetch()){
/* Set status for save management */
+ $objects = array();
+ $objects['status'] = "FreshLoaded";
+ $objects['dn'] = $object['dn'];
+ $objects = $this->get_object_attributes($objects,$this->subAttributes);
+ $this->SubObjects[$objects['cn']] = $objects;
- foreach($this->subAttributes as $attrs){
- if(!isset($object[$attrs][0])){
- $this->SubObjects[$object['cn'][0]][$attrs]="";
- }else{
- $this->SubObjects[$object['cn'][0]][$attrs]=$object[$attrs][0];
- }
- }
+ }
+ }
+ }
- foreach($this->sub64coded as $codeIt){
- $this->SubObjects[$object['cn'][0]][$codeIt]=(base64_decode($this->SubObjects[$object['cn'][0]][$codeIt]));
- }
+
+ /* Reload some attributes */
+ function get_object_attributes($object,$attributes)
+ {
+ $ldap = $this->config->get_ldap_link();
+ $ldap->cd($this->config->current['BASE']);
+ $ldap->cat($object['dn'],$attributes);
+ $tmp = $ldap->fetch();
+
+ foreach($attributes as $attrs){
+ if(isset($tmp[$attrs][0])){
+ $var = $tmp[$attrs][0];
- foreach($this->subAttributes as $attrs){
- $this->SubObjects[$object['cn'][0]][$attrs]=addslashes($this->SubObjects[$object['cn'][0]][$attrs]);
+ /* Check if we must decode some attributes */
+ if(in_array_ics($attrs,$this->sub64coded)){
+ $var = base64_decode($var);
}
- $this->SubObjects[$object['cn'][0]]['FAIscript'] = addslashes ($ldap->get_attribute($object['dn'], "FAIscript",$r_array=0));
+ /* check if this is a binary entry */
+ if(in_array_ics($attrs,$this->subBinary)){
+ $var = addslashes( $ldap->get_attribute($object['dn'], $attrs,$r_array=0));
+ }
- $this->SubObjects[$object['cn'][0]]['status'] = "edited";
- $this->SubObjects[$object['cn'][0]]['dn'] = $object['dn'];
+ /* Fix slashes */
+ $var = addslashes($var);
+ $object[$attrs] = $var;
}
}
+ return($object);
}
+
function execute()
{
/* Call parent execute */
$once = false;
$entry = preg_replace("/^editscript_/","",$name);
$entry = base64_decode(preg_replace("/_.*/","",$entry));
- $this->dialog= new $this->subClassName($this->config,$this->dn,$this->SubObjects[$entry]);
+
+ $obj = $this->SubObjects[$entry];
+ if($obj['status'] == "FreshLoaded"){
+ $obj = $this->get_object_attributes($obj,$this->sub_Load_Later);
+ }
+
+ $this->dialog= new $this->subClassName($this->config,$this->dn,$obj);
$this->dialog->acl = $this->acl;
- $_SESSION['objectinfo'] = $this->SubObjects[$entry]['dn'];
+ $_SESSION['objectinfo'] = $obj['dn'];
+ $this->dialog->parent = &$this;
$this->is_dialog=true;
+
}
if(preg_match("/^deletescript_/",$name)&&($once)){
$once = false;
}
}
///// Ende new list handling
-
-
- /* Edit selected Sub Object */
- if((isset($_POST['EditSubObject']))&&(isset($_POST['SubObject']))){
- $script = $_POST['SubObject'][0];
- $this->dialog= new $this->subClassName($this->config,$this->dn,$this->SubObjects[$script]);
- $this->dialog->acl = $this->acl;
- $_SESSION['objectinfo'] = $this->SubObjects[$script]['dn'];
- $this->is_dialog=true;
- }
-
- /* Remove Sub object */
- if((isset($_POST['DelSubObject']))&&(isset($_POST['SubObject']))){
-
- foreach($_POST['SubObject'] as $script){
- if($this->SubObjects[$script]['status'] == "edited"){
- $this->SubObjects[$script]['status']= "delete";
- }else{
- unset($this->SubObjects[$script]);
- }
- }
- }
-
- /* Save Dialog */
if(isset($_POST['SaveSubObject'])){
$this->dialog->save_object();
$msgs = $this->dialog->check();
print_red($msg);
}
}else{
+
+ /* Get return object */
$obj = $this->dialog->save();
if(isset($obj['remove'])){
- if($this->SubObjects[$obj['remove']['from']]['status']=="edited"){
+ $old_stat = $this->SubObjects[$obj['remove']['from']]['status'];
+
+ /* Depending on status, set new status */
+ if($old_stat == "edited" || $old_stat == "FreshLoaded"){
$this->SubObjects[$obj['remove']['from']]['status'] = "delete";
}elseif($this->SubObjects[$obj['remove']['from']]['status']=="new"){
unset($this->SubObjects[$obj['remove']['from']]);
$this->SubObjects[$obj['remove']['to']] = $obj;
unset($this->SubObjects[$obj['remove']['to']]['remove']);
}else{
+ if($obj['status'] == "FreshLoaded"){
+ $obj['status'] = "edited";
+ }
$this->SubObjects[$obj['cn']]=$obj;
}
+
$this->is_dialog=false;
unset($this->dialog);
$this->dialog=NULL;
* After deletion, we perform add and modify
*/
$Objects = array();
+
+ /* We do not need to save untouched objects */
+ foreach($this->SubObjects as $name => $obj){
+ if($obj['status'] == "FreshLoaded"){
+ unset($this->SubObjects[$name]);
+ }
+ }
+
foreach($this->SubObjects as $name => $obj){
if($obj['status'] == "delete"){
$Objects[$name] = $obj;
}
$tmp = array();
- foreach($this->subAttributes as $attrs){
+ $attributes = array_merge($this->sub_Load_Later,$this->subAttributes);
+ foreach($attributes as $attrs){
if(empty($obj[$attrs])){
$obj[$attrs] = array();
}