From: hickert Date: Mon, 28 Apr 2008 07:56:17 +0000 (+0000) Subject: Updated fai Packages X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=a111c1cbbdc721a3a6287262178d3bfc8ebf788d;p=gosa.git Updated fai Packages - Use a divlist to display used packages in fai package lsits. git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@10707 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/gosa-plugins/fai/admin/fai/class_faiPackage.inc b/gosa-plugins/fai/admin/fai/class_faiPackage.inc index c79079334..868176577 100644 --- a/gosa-plugins/fai/admin/fai/class_faiPackage.inc +++ b/gosa-plugins/fai/admin/fai/class_faiPackage.inc @@ -76,7 +76,8 @@ class faiPackage extends plugin if(isset($this->attrs['FAIpackage'])){ unset($this->attrs['FAIpackage']['count']); foreach($this->attrs['FAIpackage'] as $pkg){ - $this->usedPackages[$pkg] = $pkg; + $name = preg_replace("/^\-/","",$pkg); + $this->usedPackages[$name] = $pkg; } ksort($this->usedPackages); } @@ -84,7 +85,7 @@ class faiPackage extends plugin /* Fetch all package configurations from ldap */ $PackageFilter = ""; - foreach($this->usedPackages as $name){ + foreach($this->usedPackages as $name => $value){ $PackageFilter .= "(FAIpackage=".$name.")"; } $PackageFilter = "(&(objectClass=FAIdebconfInfo)(|".$PackageFilter."))"; @@ -199,7 +200,7 @@ class faiPackage extends plugin /****** - * Add && Remove Packages + * Add ******/ /* + was pressed to open the package dialog */ @@ -208,17 +209,57 @@ class faiPackage extends plugin $this->is_dialog =true; } - /* Delete selected package */ - if(isset($_POST['Delpkg']) && $this->acl_is_writeable("FAIpackage")){ - if(!preg_match("/^freeze/", $this->FAIstate)){ - foreach($_POST['usedPackages'] as $del){ - if(isset($this->usedPackages[$del])){ - unset($this->usedPackages[$del]); + /* Check image Posts + */ + foreach($_POST as $name => $value){ + + /****** + * Mark as removed + ******/ + + if(!preg_match('/^freeze/', $this->FAIstate) && preg_match("/^removal_package_/",$name)){ + $id = @base64_decode(preg_replace("/^removal_package_(.*)_[xy]*$/","\\1",$name)); + if(isset($this->usedPackages[$id])){ + $pkg = $this->usedPackages[$id]; + if (preg_match('/^-/', $pkg)){ + $pkg= preg_replace('/^-/', '', $pkg); + } else { + $pkg= preg_replace('/^/', '-', $pkg); } + $this->usedPackages[$id] = $pkg; } + break; + } + + /****** + * Delete Pkgs + ******/ + if(!preg_match('/^freeze/', $this->FAIstate) && preg_match("/^remove_package_/",$name)){ + $id = @base64_decode(preg_replace("/^remove_package_(.*)_[xy]*$/","\\1",$name)); + + if(isset($this->usedPackages[$id])){ + $this->usedPackages[$id]; + } + break; + } - /* Generate package list */ - $this->list= $this->genPkgs(TRUE); + /****** + * Configure Pkgs + ******/ + if(!preg_match('/^freeze/', $this->FAIstate) && preg_match("/^configure_package_/",$name)){ + $pkg = @base64_decode(preg_replace("/^configure_package_(.*)_[xy]*$/","\\1",$name)); + + if(isset($this->usedPackages[$pkg])){ + + /* Configuration dialog open*/ + $pkg_config = array(); + if(isset($this->ConfiguredPackages[$pkg])){ + $pkg_config = $this->ConfiguredPackages[$pkg]; + } + $this->dialog = new faiPackageConfiguration($this->config, $this->dn,$pkg, $this->FAIdebianRelease , $pkg_config); + $this->is_dialog =true; + } + break; } } @@ -252,41 +293,6 @@ class faiPackage extends plugin } } - - /****** - * Configure Packages - ******/ - - /* Configuration dialog open*/ - if((isset($_POST['Conpkg']))&&(isset($_POST['usedPackages']))&&(!empty($_POST['usedPackages'][0])) && $this->acl_is_writeable("FAIdebconfInfo")){ - $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, $this->FAIdebianRelease , $pkg_config); - $this->is_dialog =true; - } - - /* Configuration dialog open*/ - if(preg_match('/^freeze/', $this->FAIstate) && $this->acl_is_writeable("FAIpackage")){ - if((isset($_POST['Markpkg']))&&(isset($_POST['usedPackages']))&&(!empty($_POST['usedPackages']))){ - foreach($_POST['usedPackages'] as $pkg){ - if (isset($this->usedPackages[$pkg])){ - unset($this->usedPackages[$pkg]); - if (preg_match('/^-/', $pkg)){ - $pkg= preg_replace('/^-/', '', $pkg); - } else { - $pkg= preg_replace('/^/', '-', $pkg); - } - $this->usedPackages[$pkg]= $pkg; - } - } - /* Generate package list */ - $this->list= $this->genPkgs(TRUE); - } - } - /* Save Configuration */ if(isset($_POST['SaveObjectConfig'])){ if(!preg_match("/^freeze/", $this->FAIstate)){ @@ -313,6 +319,56 @@ class faiPackage extends plugin * Display UI / HTML / smarty ******/ + /* Create divlist to display a list of all currently used packages + */ + $divlist = new divSelectBox("faiPackages"); + + ksort($this->usedPackages); + if(is_array($this->usedPackages)){ + foreach($this->usedPackages as $usedName => $name){ + + /* Append message if package is configured */ + $configured = " "; + if(isset($this->ConfiguredPackages[$usedName])){ + $configured = ""._("Configured").""; + } + + /* Adapt used name if we're marked for removal */ + $removal = " "; + if (preg_match('/^-/', $name)){ + $removal = ""._("Package marked for removal").""; + } + + /* Get Version */ + $version = ""; + if(isset($this->list[$usedName]['VERSION'])){ + $version = $this->list[$usedName]['VERSION']; + } + + /* Get description */ + $description = ""; + if(isset($this->list[$usedName]['DESCRIPTION'])){ + $description = $this->list[$usedName]['DESCRIPTION']; + } + + $actions = ""; + $actions.= " "; + $actions.= " "; + + $field1 = array("string" => $configured." ".$removal,"attach" => "style='width:40px;'"); + $field2 = array("string" => $usedName ,"attach" => "style='width:200px;'"); + $field3 = array("string" => $version); + $field4 = array("string" => $description); + $field5 = array("string" => $actions ,"attach" => "style='width:60px; border-right:0px;'"); + $divlist->AddEntry(array($field1,$field2,$field3,$field4,$field5)); + } + } + /* Assign variables */ foreach($this->attributes as $attrs){ $smarty->assign($attrs,$this->$attrs); @@ -330,10 +386,10 @@ class faiPackage extends plugin $smarty->assign($name."ACL",$this->getacl($name,preg_match("/freeze/",$this->FAIstate))); } + $smarty->assign("divlist",$divlist->DrawList()); $smarty->assign("release" ,$this->FAIdebianRelease); $smarty->assign("sections",$this->sections); $smarty->assign("section" ,$strsec); - $smarty->assign("usedPackages",$this->printUsedPackages()); $display.= $smarty->fetch(get_template_path('faiPackage.tpl', TRUE)); return($display); } @@ -399,41 +455,6 @@ class faiPackage extends plugin } - /*! \brief Returns all selected packages in a printable format - @return Array Containing all package infos. - */ - function printUsedPackages() - { - $a_ret=array(); - if(is_array($this->usedPackages)){ - foreach($this->usedPackages as $usedName){ - - /* Append message if package is configured */ - $c_str =""; - if(isset($this->ConfiguredPackages[$usedName])){ - $c_str = " - "._("package is configured"); - } - - /* Adapt used name if we're marked for removal */ - $dsc= ""; - if (preg_match('/^-/', $usedName)){ - $dsc= " - "._("Package marked for removal"); - }else{ - $usedName2= $usedName; - } - - /* Append version string, if available */ - if(isset($this->list[$usedName]['VERSION'])){ - $a_ret[$usedName] = $usedName2." [".$this->list[$usedName]['VERSION']."]".$c_str.$dsc; - }else{ - $a_ret[$usedName] = $usedName2.$c_str.$dsc; - } - } - } - return($a_ret); - } - - /*! \brief Reload the list of cached packages. @return Returns the currently cached list of packages. */ @@ -442,7 +463,10 @@ class faiPackage extends plugin if(!count($this->buffer) || $force){ $q = new gosaSupportDaemon(); $attrs = array("distribution", "package","version", "section", "description", "timestamp"); - $ret = $q->FAI_get_packages($this->FAIdebianRelease,$attrs,$this->usedPackages); + + $packages = array_keys($this->usedPackages); + + $ret = $q->FAI_get_packages($this->FAIdebianRelease,$attrs,$packages); if($q->is_error()){ msg_dialog::display(_("Service infrastructure"),msgPool::siError($q->get_error()),ERROR_DIALOG); }else{ @@ -479,7 +503,7 @@ class faiPackage extends plugin $ldap = $this->config->get_ldap_link(); $this->attrs['FAIpackage'] = array(); - foreach($this->usedPackages as $pkg => $obj){ + foreach($this->usedPackages as $pkg){ $this->attrs['FAIpackage'][] = $pkg; } diff --git a/gosa-plugins/fai/admin/fai/faiPackage.tpl b/gosa-plugins/fai/admin/fai/faiPackage.tpl index d7b3ac63d..df3e5cfd2 100644 --- a/gosa-plugins/fai/admin/fai/faiPackage.tpl +++ b/gosa-plugins/fai/admin/fai/faiPackage.tpl @@ -69,11 +69,7 @@

 {t}Used packages{/t}

-
- + {$divlist}
{render acl=$FAIpackageACL}