Code

Fixed some errors if mysql is not available
[gosa.git] / plugins / admin / fai / class_faiPackage.inc
index b346ed4442de2a5b5bfe4d67f81a1a6429b53e43..e98f721e431ccb79c58dc616c9e22bde87661b0f 100644 (file)
@@ -11,7 +11,7 @@ class faiPackage extends plugin
   var $ignore_account   = TRUE;
 
   /* Attributes for this Object */
-  var $attributes       = array("cn","description","FAIpackage","FAIdebianRelease","FAIdebianSection","FAIdebianMirror");
+  var $attributes       = array("cn","description","FAIpackage","FAIdebianRelease","FAIdebianSection", "FAIinstallMethod");
 
   /* ObjectClasses for this Object*/
   var $objectclasses    = array("top","FAIclass","FAIpackageList","FAIrepository");
@@ -27,6 +27,8 @@ class faiPackage extends plugin
   var $subAttributes    = array("cn","description"); 
   var $sub64coded       = array();
 
+  var $ConfiguredPackages = array();
+
   /* Specific attributes */
   var $cn               = "";       // The class name for this object
   var $description      = "";       // The description for this set of partitions
@@ -36,7 +38,7 @@ class faiPackage extends plugin
 
   var $FAIdebianRelease          = ""; // The selected release
   var $FAIdebianSection          = ""; // selected section
-  var $FAIdebianMirror           = ""; // selected mirror
+  var $FAIinstallMethod          = "aptitude"; // hard coded
   var $mirror                    = ""; // selected mirror
 
   var $servers          = array();  // All available servers
@@ -70,11 +72,38 @@ class faiPackage extends plugin
       foreach($this->attrs['FAIpackage'] as $pkg){
         $this->usedPackages[$pkg] = $pkg;
       }
+      ksort($this->usedPackages);
     }else{
       $this->usedPackages = array();
     }  
+  
+    $ldap = $this->config->get_ldap_link();
+    foreach($this->usedPackages as $name){
+      $ldap->search("(&(objectClass=FAIdebconfInfo)(FAIpackage=".$name."))",array("FAIvariable","FAIvariableType","FAIvariableContent","FAIpackage","FAIdebianSection",""));
+      while($attr = $ldap->fetch()){
+     
+        $tmp =array(); 
+        $tmp['Name']  = $attr['FAIvariable'][0];
+        $tmp['Type']  = $attr['FAIvariableType'][0];
+
+        if (isset($attr['FAIvariableContent'][0])){
+          if(!in_array($attr['FAIvariableType'],array("multiselect"))){
+            $tmp['Value'] = $attr['FAIvariableContent'][0];
+          }else{
+            $content = array();        
+            unset($attr['FAIvariableContent']['count']);
+            foreach($attr['FAIvariableContent'] as $attr){
+              $tmp['Value'][] = $attr;
+            }
+          }
+          $this->ConfiguredPackages[$attr['FAIpackage'][0]][$attr['FAIvariable'][0]]=$tmp;
+        }
+      }
+    }
 
-    unset($this->attrs['FAIdebianSection']['count']);
+    if (isset($this->attrs['FAIdebianSection']['count'])){
+      unset($this->attrs['FAIdebianSection']['count']);
+    }
     if((isset($this->attrs['FAIdebianSection']))&&(is_array($this->attrs['FAIdebianSection']))){
       $this->FAIdebianSection = array();
       foreach($this->attrs['FAIdebianSection'] as $sec){
@@ -87,19 +116,18 @@ class faiPackage extends plugin
     }
     $this->confDir = CONFIG_DIR."/fai/";
     $this->FAIpackage = array();
-
-    /* Extract mirror location */
-    $this->mirror= preg_replace("!^[^/]+//([^/]+).*$!", '$1', $this->FAIdebianMirror);
   }
 
   function execute()
   {
+       /* Call parent execute */
+
+       plugin::execute();
+
     /* Fill templating stuff */
     $smarty= get_smarty();
     $display= "";
 
-    $this->genMirror();
-
     /* Check if we exist already - no need to ask for revisions, etc. then */
     if ($this->dn != "new"){
         $this->newDialogShown= true;
@@ -112,22 +140,16 @@ class faiPackage extends plugin
         $this->is_dialog =true;
       }
 
-      /* alert possible missconfigurations */ 
-      if((count($this->releases)==0)||(count($this->servers)==0)||(count($this->sections)==0)){
-        print_red(_("There is no useable package list defined."));
-      }
-
       /* Assign posible changes, for mirror combinations */
-      $this->dialog->releases = $this->releases;
-      $this->dialog->servers  = $this->servers;
-      $this->dialog->sections = $this->sections;
-      $this->dialog->mirrors  = $this->mirrors;
+      $this->dialog->save_object();
 
       /* Assign Repository settings*/ 
       if(isset($_POST['SaveObjectNew'])){
-        $this->FAIdebianRelease = $this->dialog->FAIdebianRelease;
-        $this->FAIdebianSection = $this->dialog->FAIdebianSection;
-        $this->FAIdebianMirror  = $this->dialog->FAIdebianMirror;
+        $obj = $this->dialog->save();
+      
+        $this->FAIdebianSection = $obj['FAIdebianSection'];
+        $this->FAIdebianRelease = $obj['FAIdebianRelease'];
+    
         unset($this->dialog);
         $this->dialog = false;
         $this->is_dialog=false;
@@ -145,28 +167,7 @@ class faiPackage extends plugin
     foreach($this->attributes as $attrs){
       $smarty->assign($attrs,$this->$attrs);
     }
-
-    /* Set mirror if changed */
-    if((isset($_POST['FAIdebianMirrorS']))&&(!empty($_POST['FAIdebianMirrorS']))){
-      $this->FAIdebianMirror = $_POST['FAIdebianMirrorS'];
-    }
-
-    /* check servers matching release and section settings */
-    $availableServer = array();
-    foreach($this->mirrors as $mir){
-      if($mir['release'] == $this->FAIdebianRelease){
-        $pass = true;
-        foreach($this->FAIdebianSection as $sec){
-          if($sec != $mir['section']){
-            $pass = false;
-          }
-        if($pass){
-            $availableServer[$mir['mirror']]=$mir['mirror'];
-          }
-        }
-      }
-    }
-    
+  
     /* Generate package list */
     $this->list=$this->genPkgs();
 
@@ -178,7 +179,11 @@ class faiPackage extends plugin
 
     /* Delte selected package */ 
     if(isset($_POST['Delpkg'])){
-      unset($this->usedPackages[$_POST['usedPackages']]);
+      foreach($_POST['usedPackages'] as $del){
+        if(isset($this->usedPackages[$del])){
+          unset($this->usedPackages[$del]);
+        }
+      }
     }
 
     /* Abort package selection dialog */ 
@@ -199,17 +204,27 @@ class faiPackage extends plugin
         $this->usedPackages = $use;
         $this->dialog = false;
         $this->is_dialog=false;
+        ksort($this->usedPackages);
       }
     }
 
     /* Configuration dialog open*/
-    if(isset($_POST['Conpkg'])){
-      $this->dialog = new faiPackageConfiguration($this->config, $this->dn,"none");
+    if((isset($_POST['Conpkg']))&&(isset($_POST['usedPackages']))&&(!empty($_POST['usedPackages']))){
+      $path = "/etc/gosa/fai/".$this->FAIdebianRelease."/debconf.d";
+      $pkg_config = array();
+      $pkg = $_POST['usedPackages'][0];
+      
+      if(isset($this->ConfiguredPackages[$pkg])){
+        $pkg_config = $this->ConfiguredPackages[$pkg];
+      }
+  
+      $this->dialog = new faiPackageConfiguration($this->config, $this->dn,$pkg, $path, $pkg_config);
       $this->is_dialog =true;
     }
-   
+  
     /* Save Configuration */
     if(isset($_POST['SaveObjectConfig'])){
+      $this->ConfiguredPackages= array_merge($this->ConfiguredPackages,$this->dialog->save());
       $this->dialog = false;
       $this->is_dialog=false;
     }
@@ -232,12 +247,7 @@ class faiPackage extends plugin
     }
 
     $smarty->assign("OptionsACL","");
-    if(empty($this->FAIdebianMirror)){
-      $smarty->assign("OptionsACL"," disabled ");
-    }
 
-    $smarty->assign("mirrors" ,$availableServer);
-    $smarty->assign("mirror"  ,$this->FAIdebianMirror);
     $smarty->assign("releases",$this->releases);
     $smarty->assign("release" ,$this->FAIdebianRelease);
     $smarty->assign("sections",$this->sections);
@@ -247,60 +257,6 @@ class faiPackage extends plugin
     return($display);
   }
 
-  function genMirror(){
-    $confDir = $this->confDir; 
-    if(!is_readable($confDir)){
-      print_red(sprintf(_("Can't read configuration folder '%s'."),$confDir));
-    }else{
-      
-      /* Try to catch all available mirrors 
-         Possibly check if each server is reachable
-       */
-
-      $this->servers= array();
-      $this->releases=array();  
-      $this->sections=array(); 
-      $this->mirrors= array();
-      $fd = opendir($confDir);
-      while($mirror = readdir($fd)){
-        if((is_dir($confDir.$mirror."/"))&&(($mirror != "." )&&($mirror!=".."))){
-
-          $mirrorDir = $confDir.$mirror."/";
-
-          $fe = opendir($mirrorDir);
-          while($release = readdir($fe)){
-            if((is_dir($mirrorDir.$release))&&(($release != "." )&&($release!=".."))){
-
-              $releaseDir = $mirrorDir.$release."/";
-
-              $ff = opendir($releaseDir);
-              while($section = readdir($ff)){
-                if((is_file($releaseDir.$section))&&(($section != "." )&&($section!="..")&&(!preg_match("/.*\.in$/",$section)))){
-              
-                  $this->servers[$mirror]=$mirror;
-                  $this->releases[$release]=$release;
-                  $this->sections[$section]=$section;
-
-                  $arr=array();
-                  $arr['mirror'] = $mirror;
-                  $arr['release']= $release; 
-                  $arr['section']= $section;
-                  $this->mirrors[] = $arr ;
-                }
-              }
-              fclose($ff);
-            }
-          }
-          fclose($fe);
-        }
-      }
-      fclose($fd);
-    }
-
-
-  }
-
   /* Delete me, and all my subtrees
    */
   function remove_from_parent()
@@ -335,7 +291,7 @@ class faiPackage extends plugin
       $message[]=_("Please select a least one Package.");
     }
   
-    if((empty($this->FAIdebianRelease))||(empty($this->FAIdebianSection))||(empty($this->FAIdebianMirror))){
+    if((empty($this->FAIdebianRelease))||(empty($this->FAIdebianSection))){
       $message[]=_("Please choose a valid combination for your repository setup.");
     }
 
@@ -346,10 +302,24 @@ class faiPackage extends plugin
     $a_ret=array(); 
     if(is_array($this->usedPackages)) {
       foreach($this->usedPackages as $usedName){
+      
+        $config = 0;
+   
+        foreach($this->ConfiguredPackages as $name => $value){
+          if($name == $usedName){
+            $config ++;
+          }
+        }
+      
+        $c_str ="";
+        if($config){
+          $c_str = " - "._("package is configured");
+        }
+     
         if(isset($this->list[$usedName][1])){
-          $a_ret[$usedName] = $usedName." [".$this->list[$usedName][1]."]";
+          $a_ret[$usedName] = $usedName." [".$this->list[$usedName][1]."]".$c_str;
         }else{
-          $a_ret[$usedName] = $usedName;
+          $a_ret[$usedName] = $usedName.$c_str;
         }
       }
     }
@@ -364,11 +334,10 @@ class faiPackage extends plugin
       $this->buffer=array();
       $a_ret = array();
       foreach($this->FAIdebianSection as $sec){
-        $strID= "/etc/gosa/fai/".$this->mirror."/".$this->FAIdebianRelease."/".$sec;
+        $strID= "/etc/gosa/fai/".$this->FAIdebianRelease."/".$sec;
         
         if(!is_file($strID)){
-          print_red(sprintf(_("Package file don't exists '%s'."),$strID));
-          $this->FAIdebianMirror="";
+          print_red(sprintf(_("Package file '%s' does not exist."),$strID));
           unset($this->buffer);
           return(array());
         }
@@ -411,6 +380,8 @@ class faiPackage extends plugin
       $this->attrs['FAIdebianSection'][] = $sec;
     }
 
+    $this->attrs["FAIinstallMethod"]= "aptitude";
+
     $ldap->cat($this->dn);
     if($ldap->count()!=0){
       /* Write FAIscript to ldap*/
@@ -424,6 +395,41 @@ class faiPackage extends plugin
       $ldap->add($this->attrs);
     }
     show_ldap_error($ldap->get_error());
+
+      /* Save Package configurations */
+    foreach($this->ConfiguredPackages as $pkgname => $attrs){
+      foreach($attrs as $name => $attr){
+
+        foreach($attr as $n=>$v){
+          if(empty($v)) $v = array();
+        }
+
+        /* Set attributes */
+        $pkgattrs['objectClass']          = "FAIdebconfInfo";
+        $pkgattrs['FAIpackage']           = $pkgname;
+        $pkgattrs['FAIvariable']          = $name;
+        $pkgattrs['FAIvariableType']      = $attr['Type'];
+        $pkgattrs['FAIvariableContent']   = $attr['Value'];
+        $pkgdn =  "FAIvariable=".$name.",".$this->dn;
+
+        /* cehck if object already exists */
+        $ldap->cat($pkgdn);
+        if($ldap->count()!=0){
+          $ldap->cd($pkgdn);
+          $ldap->modify($pkgattrs);
+        }else{
+          $ldap->cd($this->config->current['BASE']);
+          $ldap->create_missing_trees(preg_replace('/^[^,]+,/', '', $pkgdn));
+          $ldap->cd($pkgdn);
+          $ldap->add($pkgattrs);
+        }
+        show_ldap_error($ldap->get_error());
+      }
+    }
+
+
+    
+
   }
 }