X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=gosa-core%2Finclude%2Fclass_CopyPasteHandler.inc;h=f0cb85d7db7e1ea8d8124508195231ee0ac515ac;hb=756a035712ab9baa43653e323a6d482343ba7355;hp=ee772bb300afcc345fba4ed46facca515865fde1;hpb=abb6e783bd08540c2830b3c89410b7f46404b7b7;p=gosa.git diff --git a/gosa-core/include/class_CopyPasteHandler.inc b/gosa-core/include/class_CopyPasteHandler.inc index ee772bb30..f0cb85d7d 100644 --- a/gosa-core/include/class_CopyPasteHandler.inc +++ b/gosa-core/include/class_CopyPasteHandler.inc @@ -61,20 +61,20 @@ class CopyPasteHandler { * array['tab_class'] - Tab object that should be used to initialize the new object * array['tab_object'] - Tab object name used to initialize correct object Type like USERTABS */ - function add_to_queue($dn,$action,$tab_class,$tab_object,$tab_acl_category) + function add_to_queue($dn,$action,$tab_class,$tab_object,$tab_acl_category,&$parent = NULL) { if(!class_available($tab_class)){ - trigger_error(sprintf("Specified class object '%s' does not exists.",$tab_class)); + trigger_error(sprintf("Specified class object %s does not exists.", bold($tab_class))); return(FALSE); } if(!isset($this->config->data['TABS'][$tab_object])){ - trigger_error(sprintf("Specified tab object '%s' does not exists.",$tab_object)); + trigger_error(sprintf("Specified tab object %s does not exists.", bold($tab_object))); return(FALSE); } if(!in_array($action,array("cut","copy"))){ - trigger_error(sprintf("Specified action '%s' does not exists for copy & paste.",$action)); + trigger_error(sprintf("Specified action %s does not exists for copy & paste.", bold($action))); return(FALSE); } @@ -86,6 +86,7 @@ class CopyPasteHandler { $tmp['tab_class'] = $tab_class; $tmp['tab_object']= $tab_object; $tmp['tab_acl_category']= $tab_acl_category; + $tmp['parent'] = $parent; $this->queue[] = $tmp; $this->require_update = TRUE; } @@ -114,7 +115,7 @@ class CopyPasteHandler { /* Update folder permissions */ if(!@chmod(LDAP_DUMP_PATH,0700)){ - $msg= sprintf(_("Copy and paste failed!")."

"._("Error").": "._("Cannot set permission for '%s'")."" ,LDAP_DUMP_PATH); + $msg= sprintf(_("Copy and paste failed!")."

"._("Error").": "._("Cannot set permission for %s"), bold(LDAP_DUMP_PATH)); msg_dialog::display(_("Configuration error"), $msg, ERROR_DIALOG); new log("copy","all/all","copy & paste, event queue.",array(), $msg); return(FALSE); @@ -155,7 +156,7 @@ class CopyPasteHandler { /* Check if given dn is valid and ldap search was succesfull */ if(!$res){ - $msg= sprintf(_("Copy and paste failed!")."

"._("Error").": "._("'%s' is no vaild LDAP object"), LDAP::fix($dn)); + $msg= sprintf(_("Copy and paste failed!")."

"._("Error").": "._("'%s' is no vaild LDAP object"), bold(LDAP::fix($dn))); msg_dialog::display(_("Internal error"), $msg, ERROR_DIALOG); new log("copy","all/all",$dn,array(), $msg); return(FALSE); @@ -172,7 +173,7 @@ class CopyPasteHandler { /* check if we are able to create a new file the given directory */ if(!is_writeable($path)){ - $msg= sprintf(_("Copy and paste failed!")."

"._("Error").": "._("No write permission in '%s'"),LDAP_DUMP_PATH); + $msg= sprintf(_("Copy and paste failed!")."

"._("Error").": "._("No write permission in '%s'"), bold(LDAP_DUMP_PATH)); msg_dialog::display(_("Configuration error"), $msg, ERROR_DIALOG); new log("copy","all/all",$dn,array(), $msg); return(FALSE); @@ -189,7 +190,7 @@ class CopyPasteHandler { /* Update folder permissions */ if(!@chmod($path."/".$filename,0700)){ - $msg= sprintf(_("Copy and paste failed!")."

"._("Error").": "._("Cannot set permission for '%s'"),LDAP_DUMP_PATH); + $msg= sprintf(_("Copy and paste failed!")."

"._("Error").": "._("Cannot set permission for '%s'"), bold(LDAP_DUMP_PATH)); msg_dialog::display(_("Configuration error"), $msg, ERROR_DIALOG); new log("copy","all/all","copy & paste, event queue.",array(), $msg); return(FALSE); @@ -223,6 +224,7 @@ class CopyPasteHandler { $tab_c = $entry['tab_class']; $tab_o = $entry['tab_object']; $tab_a = $entry['tab_acl_category']; + $parent = $entry['parent']; if($entry['method'] == "copy"){ $entry['object'] = new $tab_c($this->config,$this->config->data['TABS'][$tab_o],"new",$tab_a); @@ -230,6 +232,9 @@ class CopyPasteHandler { $entry['object'] = new $tab_c($this->config,$this->config->data['TABS'][$tab_o],$entry['dn'],$tab_a); } + if($parent ){ + $entry['object']->parent = $parent; + } $entry['source_data'] = $this->load_attributes_from_hdd($entry['file_name']); if($entry['method'] == "copy"){ @@ -347,20 +352,25 @@ class CopyPasteHandler { $this->lastdn = $this->current['object']->dn; $this->current= $this->_update_vars($this->current); $this->current['object']->save(); + $this->handleReferences(); $this->current = FALSE; } } /* Save edited entry and force loading new one */ - if(isset($_POST['PerformCopyPaste']) && $this->current){ + if(isset($this->current['object']) && method_exists($this->current['object'],"saveCopyDialog")) { $this->current['object']->saveCopyDialog(); + } + + if(isset($_POST['PerformCopyPaste']) && $this->current){ $msgs = $this->check(); /* Load next queue entry */ if(!count($msgs)){ - $this->lastdn = $this->current['object']->dn; $this->current['object']->save(); + $this->handleReferences(); + $this->lastdn = $this->current['object']->dn; $this->current = FALSE; }else{ foreach( $msgs as $msg){ @@ -407,7 +417,7 @@ class CopyPasteHandler { $smarty->assign("AttributesToFix",$this->generateAttributesToFix()); $smarty->assign("SubDialog",$this->current['object']->SubDialog); $smarty->assign("objectDN",$this->current['source_data']['dn']); - $smarty->assign("message", sprintf(_("This object will be pasted: %s"), "

".$this->current['source_data']['dn'])); + $smarty->assign("message", sprintf(_("This object will be pasted: %s"), "

".bold($this->current['source_data']['dn']))); return($smarty->fetch(get_template_path("copyPasteDialog.tpl",FALSE))); } } @@ -496,6 +506,36 @@ class CopyPasteHandler { } + function handleReferences() + { + $dst_dn = $this->current['object']->dn; + $src_dn = $this->current['dn']; + + // Only copy references if required + if($this->current['method'] != 'copy') return; + + // Migrate objectgroups + $ogroups = get_sub_list("(&(objectClass=gosaGroupOfNames)(member=".LDAP::prepare4filter(LDAP::fix($src_dn))."))", + "ogroups", array(get_ou("ogroupRDN")),$this->config->current['BASE'],array("dn"), GL_SUBSEARCH | GL_NO_ACL_CHECK); + + // Walk through all objectGroups + foreach($ogroups as $ogroup){ + $o_ogroup= new ogroup($this->config,$ogroup['dn']); + $o_ogroup->member[$dst_dn]= $dst_dn; + $o_ogroup->save(); + } + + // Update roles + $roles = get_sub_list("(&(objectClass=organizationalRole)(roleOccupant=".LDAP::prepare4filter(LDAP::fix($src_dn))."))","roles", array(get_ou("roleRDN")),$this->config->current['BASE'],array("dn"), GL_SUBSEARCH | GL_NO_ACL_CHECK); + + // Walk through all roles + foreach($roles as $role){ + $role = new roleGeneric($this->config,$role['dn']); + $role->roleOccupant[] = $dst_dn; + $role->save(); + } + } + /* returns the paste icon for headpages */ function generatePasteIcon() {