Code

Updated FAI partition handling
[gosa.git] / gosa-plugins / fai / admin / fai / class_faiManagement.inc
index bf3308523ba4e8f6e0fe957280755f4f8d9bbcd4..0099a68637175dc13b4b3d10156e08a9d27fd054 100644 (file)
@@ -107,13 +107,14 @@ class faiManagement extends plugin
     /* Call parent execute */
     plugin::execute();
 
-
     /* Initialise vars and smarty */
                $smarty         = get_smarty();
                $smarty->assign("BranchName","");
     
                $display        = "";
     $s_action  = "";
+    $i_entryID ="";
+    $s_entryType= "";
                $s_entry        = "";
     $no_save = FALSE;   // hide Apply / Save buttons
     
@@ -141,6 +142,8 @@ class faiManagement extends plugin
 
                     "/^edit_continue$/"               => "select_class_name_finished",
 
+                    "/^group_copy/"                   => "group_copy",
+                    "/^group_cut/"                    => "group_cut",
                     "/^group_edit/"                   => "group_edit",
                     "/^group_remove/"                 => "group_remove");
                foreach($_POST as $name => $value){
@@ -152,63 +155,29 @@ class faiManagement extends plugin
           break;
         }
       }
-                       if(preg_match("/^edit_[0-9]*_.*$/",$name)){
+      if(preg_match("/^edit_[0-9]*_.*$/",$name)){
         $i_entryID  = preg_replace("/^edit_([0-9]*)_.*$/i","\\1",$name);
         $s_entryType= preg_replace("/^edit_[0-9]*_([^_]*)_.*$/i","\\1",$name);
         $s_action = "edit";
-        break;
-      }elseif(preg_match("/^entry_delete_.*/",$name)){
-        $s_entry = preg_replace("/^entry_delete_/","",$name);
-        $s_entry = preg_replace("/_.*$/","",$s_entry);
-        $s_action = "delete";
-        break;
       }
+    }
 
-      /* Get posts from opsi onjects 
-       */  
-      if($this->opsi instanceof opsi && $this->opsi->enabled()){
-        if(preg_match("/^entry_opsi_edit_/",$name)){
-          $s_entry = preg_replace("/^entry_opsi_edit_([0-9]*).*$/","\\1",$name);
-          $s_action = "opsi_edit";
-          break;
-        }
+    if(isset($_GET['act']) && $_GET['act'] == "edit" && isset($_GET['id'])){
+      if(isset($this->objects[$_GET['id']])){
+        $s_action = "group_edit";
+        $s_entry = $_GET['id'];
       }
     }
 
-    /* Get posts from opsi objects 
-     */ 
-               if($this->opsi instanceof opsi && $this->opsi->enabled() && isset($_GET['edit_opsi_entry'])){
-                       $s_entry = $_GET['edit_opsi_entry'];
-                       $s_action = "opsi_edit";
-               }
-
-    if(isset($_GET['act']) && $_GET['act'] == "freeze_branch"){
-      $s_action = "freeze_branch";
-    }
-    if(isset($_GET['act']) && $_GET['act'] == "branch_branch"){
-      $s_action = "branch_branch";
-    }
-    if(isset($_GET['act']) && $_GET['act'] == "remove_branch"){
-      $s_action = "remove_branch";
-    }
-    
-    if((isset($_POST['CancelBranchName'])) || (isset($_POST['CloseIFrame']))){
-      $this->dispNewBranch = false;
-      $this->dispNewFreeze = false;
+    foreach(array("freeze_branch" => "freeze_branch",
+          "branch_branch" => "branch_branch",
+          "remove_branch" => "remove_branch") as $from => $to){
+      if(isset($_GET['act']) && $_GET['act'] == $from){
+        $s_action = $to;
+      }
     }
-
-
-    $type_acl_mapping = array(
-        "FAIpartitionTable"  => "faiPartitionTable", 
-        "FAIpackageList"     => "faiPackage",
-        "FAIscript"          => "faiScript",
-        "FAIvariable"        => "faiVariable",
-        "FAIhook"            => "faiHook",
-        "FAIprofile"         => "faiProfile",
-        "FAItemplate"        => "faiTemplate");
-
-
-    /* handle C&P from layers menu */
+  
+    /* handle C&P from layer menu */
     if(isset($_POST['menu_action']) && preg_match("/^multiple_copy_systems/",$_POST['menu_action'])){
       $s_action = "copy_multiple";
     }
@@ -219,6 +188,12 @@ class faiManagement extends plugin
       $s_action = "editPaste";
     }
 
+
+    if((isset($_POST['CancelBranchName'])) || (isset($_POST['CloseIFrame']))){
+      $this->dispNewBranch = false;
+      $this->dispNewFreeze = false;
+    }
+
     /* Create options */
     if(isset($_POST['menu_action']) && preg_match("/^Create_/",$_POST['menu_action'])){
       $s_action = "new_".preg_replace("/^Create_/","",$_POST['menu_action']);;
@@ -235,16 +210,6 @@ class faiManagement extends plugin
       $this->no_save = $no_save;
     }
 
-    /********************
-      Copy & Paste
-     ********************/
-
-    /* Display the copy & paste dialog, if it is currently open */
-    $ret = $this->copyPasteHandling_from_queue($s_action,$s_entry);
-    if($ret){
-      return($ret);
-    }
-
 
     /*******************
       Opsi extension 
@@ -292,25 +257,76 @@ class faiManagement extends plugin
     if($s_action == "group_remove"){
       if(isset($this->objects[$s_entry])){
         $group = $this->objects[$s_entry];
-        $this->dialog = new faiGroupHandle($group,"remove");
 
+        /* Do not allow to remove opsi products */
+        foreach(array("opsi_netboot","opsi_local") as $type){
+          if(isset($group[$type])) unset($group[$type]);
+        }
+        if(count($group) == 1){
+          $s_action = "remove";
+          $i_entryID = $s_entry;
+          $s_entryType = key($group);
+        }elseif(count($group)){
+          $this->dialog = new faiGroupHandle($group,"remove");
+        }
       }
     }elseif($s_action == "group_edit"){
       if(isset($this->objects[$s_entry])){
         $group = $this->objects[$s_entry];
-        $this->dialog = new faiGroupHandle($group,"edit");
+        if(count($group) == 1){
+          $s_action = "edit";
+          $i_entryID = $s_entry;
+          $s_entryType = key($group);
+        }else{
+          $this->dialog = new faiGroupHandle($group,"edit");
+        }
+      }
+    }elseif($s_action == "group_cut"){
+      if(isset($this->objects[$s_entry])){
+        $group = $this->objects[$s_entry];
+        if(count($group) == 1){
+          $s_action = "cut";
+          $i_entryID = $s_entry;
+          $s_entryType = key($group);
+        }else{
+          $this->dialog = new faiGroupHandle($group,"cut");
+        }
+      }
+    }elseif($s_action == "group_copy"){
+      if(isset($this->objects[$s_entry])){
+        $group = $this->objects[$s_entry];
+        if(count($group) == 1){
+          $s_action = "copy";
+          $i_entryID = $s_entry;
+          $s_entryType = key($group);
+        }else{
+          $this->dialog = new faiGroupHandle($group,"copy");
+        }
       }
     }
     if($this->dialog instanceOf faiGroupHandle){
       $this->dialog->save_object();
       if($this->dialog->is_open()){
         return($this->dialog->execute());
-      }
-      if($this->dialog->is_canceled() || isset($_POST['cancel_lock'])){
+      }elseif($this->dialog->is_canceled() || isset($_POST['cancel_lock'])){
         $this->dialog = FALSE;
+      }else{
+        if(!count($this->dialog->get_selected())){
+          $this->dialog = FALSE;
+        }
       }
     }
 
+    /********************
+      Copy & Paste
+     ********************/
+
+    /* Display the copy & paste dialog, if it is currently open */
+    $ret = $this->copyPasteHandling_from_queue($s_action,$i_entryID,$s_entryType);
+    if($ret){
+      return($ret);
+    }
+
 
     /********************
       Delete MULTIPLE entries confirmed
@@ -324,27 +340,21 @@ class faiManagement extends plugin
 
       /* Remove user by user and check acls before removeing them */
       foreach($this->dns as $key => $dn){
-
         $ldap->cat($dn, array('objectClass'));
         $attrs  = $ldap->fetch();
         $type   = $this->get_type($attrs);
-
         $acl  = $this->ui->get_permissions($dn,"fai/".$type[1]);
         if(preg_match("/d/",$acl)){
-
           $this->dialog = new $type[0]($this->config, $this->config->data['TABS'][$type[2]], $dn,"fai");
           $this->dialog->parent = &$this;
           $this->dialog->set_acl_base($dn);
           $this->dialog->by_object[$type[1]]->remove_from_parent ();
-          unset ($this->dialog);
           $this->dialog= FALSE;
-          $to_del = FAI::clean_up_releases($dn);
           FAI::save_release_changes_now();
-
+          $to_del = FAI::clean_up_releases($dn);
           foreach($to_del as $dn){
             $ldap->rmdir_recursive($dn);
           }
-
         } else {
 
           /* Normally this shouldn't be reached, send some extra
@@ -365,40 +375,47 @@ class faiManagement extends plugin
       Delete confirme dialog 
      ****************/
 
-    if ($s_action=="del_multiple" || 
+    if ($s_action=="del_multiple" || $s_action == "remove" ||  
         $this->dialog instanceOf faiGroupHandle && $this->dialog->get_mode() == "remove"){
  
-      /* Collect objects to delete and check if object is freezed
+      /* Collect objects to delete and check if objects are freezed
        */ 
       $dns = array();
       $errors = "";
       $this->dns = array();
-      if($this->dialog instanceOf faiGroupHandle){
+
+      if($s_action == "remove"){
+        $to_delete =array($entry = $this->objects[$i_entryID][$s_entryType]);
+      }elseif($this->dialog instanceOf faiGroupHandle){
         $to_delete = $this->dialog->get_selected();
-        foreach($to_delete as $obj){
-          if(!preg_match('/^freeze/', $obj['FAIstate'])){
-            $this->dns[] = $obj['dn'];
-          }else{
-            $errors .= $obj['cn'].", ";
-          }
-        }
       }else{
         $ids = $this->list_get_selected_items();
+        $to_delete = array();
         foreach($ids as $id){
-          foreach($this->objects[$id] as $obj){
-            if(!preg_match('/^freeze/', $obj['FAIstate'])){
-              $this->dns[] = $obj['dn'];
-            }else{
-              $errors .= $obj['cn'].", ";
-            }
-          }
+          foreach($this->objects[$id] as $obj) { 
+            array_push($to_delete, $obj); 
+          } 
+        }
+      } 
+
+      foreach($to_delete as $obj){
+        if(isset($obj['type']) && in_array($obj['type'],array("opsi_netboot","opsi_local"))){
+          continue;
+        }
+        if(isset($obj['FAIstate']) && preg_match('/^freeze/', $obj['FAIstate'])){
+          $errors .= $obj['cn'].", ";
+        }else{
+          $this->dns[] = $obj['dn'];
         }
       }
+
       if($errors != ""){
         msg_dialog::display(_("Branch locked"),sprintf(_("The following entries are locked, you can't remove them %s."),
               "<br><br>".trim($errors,", ")),INFO_DIALOG);
       }
 
+      /* Check locking 
+       */
       if(count($this->dns)){
         if ($user= get_multiple_locks($this->dns)){
           return(gen_locked_message($user,$this->dns));
@@ -409,7 +426,6 @@ class faiManagement extends plugin
             add_lock ($dn, $this->ui->dn);
             $dns_names[] = LDAP::fix($dn);
           }
-          /* Lock the current entry, so nobody will edit it during deletion */
                                  $smarty->assign("warning",msgPool::deleteInfo($dns_names,_("FAI object")));
           $smarty->assign("multiple", true);
           return($smarty->fetch(get_template_path('remove.tpl', TRUE)));
@@ -429,73 +445,11 @@ class faiManagement extends plugin
       $this->dns = array();
     }
 
-
-    /****************
-      Delete aborted  
-     ****************/
-
-               /* Delete canceled? */
-               if (isset($_POST['delete_cancel'])){
-      $this->remove_lock();
-               }
-
-
-    /****************
-      Delete confirmed 
-     ****************/
-
-               /* Deletion was confirmed, so delete this entry
-     */
-    if (isset($_POST['delete_terminal_confirm'])){
-
-      /* Some nice guy may send this as POST, so we've to check
-         for the permissions again. */
-
-      /* Find out more about the object type */
-      $ldap      = $this->config->get_ldap_link();
-      $ldap->cat($this->dn, array('objectClass'));
-      if($ldap->count()){
-        $attrs = $ldap->fetch();
-        $type    = $this->get_type($attrs);                    
-
-        $acl  = $this->ui->get_permissions($this->dn,"fai/".$type[1]);
-        if(preg_match("/d/",$acl)){
-
-          $this->dialog = new $type[0]($this->config,  $this->config->data['TABS'][$type[2]], $this->dn,"fai");
-          $this->dialog->set_acl_base($this->dn);
-          $this->dialog->parent = &$this;
-          $this->dialog->by_object[$type[1]]->remove_from_parent ();
-          unset ($this->dialog);
-          $this->dialog= FALSE;
-          $to_del = FAI::clean_up_releases($this->dn);
-          FAI::save_release_changes_now();
-
-          foreach($to_del as $dn){
-            $ldap->rmdir_recursive($dn);
-          }
-
-        } else {
-
-          /* Normally this shouldn't be reached, send some extra
-             logs to notify the administrator */
-          msg_dialog::display(_("Permission error"), msgPool::permDelete(), ERROR_DIALOG);
-          new log("security","fai/".get_class($this),$dn,array(),"Tried to trick deletion.");
-        }
-
-      }else{
-        msg_dialog::display(_("Error"), sprintf(_("Cannot delete '%s': object does not exist!"), $this->dn) , ERROR_DIALOG);
-      }
-
-      /* Remove lock file after successfull deletion */
-      $this->remove_lock();
-    }
-
-
     /****************
       Edit entry 
      ****************/
 
-               if(($s_action == "edit") || $this->dialog instanceOf faiGroupHandle && $this->dialog->get_mode() == "edit"){
+               if($s_action == "edit" || $this->dialog instanceOf faiGroupHandle && $this->dialog->get_mode() == "edit"){
 
       $entry = array();
       if($this->dialog instanceOf faiGroupHandle){
@@ -507,20 +461,38 @@ class faiManagement extends plugin
 
       if(count($entry)){
         $a_setup  = $this->get_type($entry);
-        $this->dn = $entry['dn'];
 
-        /* Check locking, save current plugin in 'back_plugin', so the dialog knows where to return. */
-        if (($user= get_lock($this->dn)) != ""){
-          return(gen_locked_message ($user, $this->dn, TRUE));
-        }
-        add_lock ($this->dn, $this->ui->dn);
+        /* Special handling for opsi products 
+         */
 
-        $this->dialog     = new $a_setup[0]($this->config,$this->config->data['TABS'][$a_setup[2]],$this->dn,"fai");
-        $this->dialog->parent = &$this;
-        $this->dialog->by_object[$a_setup[1]]->FAIstate = $entry['FAIstate'];
-        $this->dialog->set_acl_base($this->dn);
-        $this->is_dialog  = true;
-        session::set('objectinfo',$this->dn);
+        if(in_array($entry['type'],array("opsi_local","opsi_netboot")) && 
+            $this->opsi instanceof opsi && $this->opsi->enabled() ){
+
+          $name = $entry['cn'];
+          $cfg = $this->opsi->get_product_properties($name);
+          $this->dialog = new tabs_opsiProdConfig($this->config, $this->config->data['TABS']['OPSIPRODCONFIG'],"","opsi");
+          if(isset($this->dialog->by_object['opsiProperties'])){
+            $this->dialog->by_object['opsiProperties']->set_cfg($cfg);
+            $this->dialog->by_object['opsiProperties']->set_product($name);
+          }else{
+            trigger_error("Unknown tab, please check config.");
+          }
+        }elseif(count($a_setup)){
+
+          $this->dn = $entry['dn'];
+          /* Check locking, save current plugin in 'back_plugin', so the dialog knows where to return. */
+          if (($user= get_lock($this->dn)) != ""){
+            return(gen_locked_message ($user, $this->dn, TRUE));
+          }
+          add_lock ($this->dn, $this->ui->dn);
+
+          $this->dialog     = new $a_setup[0]($this->config,$this->config->data['TABS'][$a_setup[2]],$this->dn,"fai");
+          $this->dialog->parent = &$this;
+          $this->dialog->by_object[$a_setup[1]]->FAIstate = $entry['FAIstate'];
+          $this->dialog->set_acl_base($this->dn);
+          $this->is_dialog  = true;
+          set_object_info($this->dn);
+        }
       }
     }
 
@@ -908,6 +880,16 @@ class faiManagement extends plugin
                     "new_package"       =>  _("package list"));
 
     if(isset($types[$s_action])){
+
+      $type_acl_mapping = array(
+          "FAIpartitionTable"  => "faiPartitionTable", 
+          "FAIpackageList"     => "faiPackage",
+          "FAIscript"          => "faiScript",
+          "FAIvariable"        => "faiVariable",
+          "FAIhook"            => "faiHook",
+          "FAIprofile"         => "faiProfile",
+          "FAItemplate"        => "faiTemplate");
+
       $acl = $this->ui->get_permissions($this->acl_base,"fai/".$type_acl_mapping[$types[$s_action]]);
       if(preg_match("/c/",$acl)){
         $this->dialog = new askClassName($this->config,$this->dn,$this->ui,$types[$s_action]);
@@ -936,7 +918,7 @@ class faiManagement extends plugin
 
 
     /****************
-      Get from ask class name dialog 
+      Get name from ask_class_name dialog 
      ****************/
 
     if($s_action == "select_class_name_finished"){
@@ -968,11 +950,36 @@ class faiManagement extends plugin
                if(isset($_POST['edit_cancel'])){
                        $this->dialog=FALSE;
                        $this->is_dialog = false;
-                       session::un_set('objectinfo');
+                       set_object_info();
       $this->remove_lock();
                }
 
 
+    /****************
+     Handle opsi dialogs  
+     ****************/
+      
+    if($this->dialog instanceof tabs_opsiProdConfig && isset($_POST['cancel_properties'])){
+      $this->dialog = NULL;
+    }
+    if($this->dialog instanceof tabs_opsiProdConfig && isset($_POST['save_properties'])){
+      $this->dialog->save_object();
+      $op    = $this->dialog->by_object['opsiProperties'];
+      $name  = $op->get_product();
+      $cfg   = $op->get_cfg();
+      $this->opsi->set_product_properties($name,$cfg);
+      if($this->opsi->is_error()){
+        msg_dialog::display(_("Error"),msgPool::siError($this->opsi->get_error()),ERROR_DIALOG);
+      }else{
+        $this->dialog = NULL;
+      }
+    }
+    if($this->dialog instanceof tabs_opsiProdConfig){
+      $this->dialog->save_object();
+      return($this->dialog->execute());
+    }
+
+
     /****************
       Save sub dialogs 
      ****************/
@@ -995,7 +1002,7 @@ class faiManagement extends plugin
           $this->remove_lock();
           $this->dialog=FALSE;
           $this->is_dialog=false;
-          session::un_set('objectinfo');
+          set_object_info();
         }else{
 
           /* Reinitialize tab */
@@ -1217,10 +1224,11 @@ class faiManagement extends plugin
           $n_pro = $this->opsi->get_netboot_products();
           $err |= $this->opsi->is_error();
           foreach($n_pro as $name => $data){
-            $entry = array("cn" => $name,
+            $entry = array(
+                "cn" => $name,
                 "description" => $data['DESC'],
                 "type" => "opsi_netboot");
-            $this->objects[$name]['opse_netboot'] = $entry;
+            $this->objects[$name]['opsi_netboot'] = $entry;
           }  
         }
         if(!$err && $this->DivListFai->ShowOpsiLocal){
@@ -1246,7 +1254,7 @@ class faiManagement extends plugin
 
        function remove_lock()
        {
-               if (isset($this->dn)){
+               if (isset($this->dn) && !empty($this->dn)){
                        del_lock ($this->dn);
                }
     if(isset($this->dns) && is_array($this->dns) && count($this->dns)){
@@ -1255,6 +1263,7 @@ class faiManagement extends plugin
        }
 
        function get_type($array){
+    if(!isset($array['objectClass'])) return(array());
                if(in_array("FAIpartitionTable",$array['objectClass'])){
                        return(array("tabsPartition","faiPartitionTable","FAIPARTITIONTABS"));
                }
@@ -1277,6 +1286,7 @@ class faiManagement extends plugin
                if(in_array("FAIpackageList",$array['objectClass'])){
                        return(array("tabsPackage","faiPackage","FAIPACKAGETABS"));
                }
+    return(array());
        }
 
   function CheckNewBranchName($name,$base)
@@ -1322,7 +1332,7 @@ class faiManagement extends plugin
   }
 
 
-  function copyPasteHandling_from_queue($s_action,$s_entry)
+  function copyPasteHandling_from_queue($s_action,$i_entryID,$s_entryType)
   {
     /* Check if Copy & Paste is disabled */
     if(!is_object($this->CopyPasteHandler)){
@@ -1331,17 +1341,44 @@ class faiManagement extends plugin
 
     $ui = get_userinfo();
 
-    /* Add a single entry to queue */
+    // Copy a single entry
     if($s_action == "copy"){
-
-      /* Cleanup object queue */
+      $entry = $this->objects[$i_entryID][$s_entryType];
       $this->CopyPasteHandler->cleanup_queue();
-      $entry    = $this->objects[$s_entry];
       $a_setup  = $this->get_type($entry);
       $dn = $entry['dn'];
+      if($ui->is_copyable($dn,"fai",$a_setup[1])){
+        $this->CopyPasteHandler->add_to_queue($dn,"copy",$a_setup[0],$a_setup[2],"fai");
+      }
+    }
 
+    // cut a single entry
+    if($s_action == "cut"){
+      $entry = $this->objects[$i_entryID][$s_entryType];
+      $this->CopyPasteHandler->cleanup_queue();
+      $a_setup  = $this->get_type($entry);
+      $dn = $entry['dn'];
       if($ui->is_copyable($dn,"fai",$a_setup[1])){
-        $this->CopyPasteHandler->add_to_queue($dn,$s_action,$a_setup[0],$a_setup[2],"fai");//$a_setup[1]);
+        $this->CopyPasteHandler->add_to_queue($dn,"cut",$a_setup[0],$a_setup[2],"fai");
+      }
+    }
+
+    /* Add a entries from the group selection to queue */
+    if($this->dialog instanceOf faiGroupHandle && !$this->dialog->is_open()){
+
+      if(in_array($this->dialog->get_mode(),array("copy"))){      
+
+        /* Cleanup object queue */
+        $this->CopyPasteHandler->cleanup_queue();
+        $group = $this->dialog->get_selected();
+        foreach($group as $entry){
+          $a_setup  = $this->get_type($entry);
+          $dn = $entry['dn'];
+          if($ui->is_copyable($dn,"fai",$a_setup[1])){
+            $this->CopyPasteHandler->add_to_queue($dn,$this->dialog->get_mode(),$a_setup[0],$a_setup[2],"fai");//$a_setup[1]);
+          }
+        }
+        $this->dialog = FALSE;
       }
     }
 
@@ -1353,14 +1390,14 @@ class faiManagement extends plugin
 
       /* Add new entries to CP queue */
       foreach($this->list_get_selected_items() as $id){
+        $group    = $this->objects[$id];
+        foreach($group as $entry){
+          $a_setup  = $this->get_type($entry);
+          $dn = $entry['dn'];
 
-        /* Cleanup object queue */
-        $entry    = $this->objects[$id];
-        $a_setup  = $this->get_type($entry);
-        $dn = $entry['dn'];
-
-        if($s_action == "copy_multiple" && $ui->is_copyable($dn,"fai",$a_setup[1])){
-          $this->CopyPasteHandler->add_to_queue($dn,"copy",$a_setup[0],$a_setup[2],"fai");//$a_setup[1]);
+          if($s_action == "copy_multiple" && $ui->is_copyable($dn,"fai",$a_setup[1])){
+            $this->CopyPasteHandler->add_to_queue($dn,"copy",$a_setup[0],$a_setup[2],"fai");//$a_setup[1]);
+          }
         }
       }
     }