Code

Only find adequat values
[gosa.git] / gosa-core / include / class_listing.inc
index c27611b39978cacf4446e2cb26e666b93ee7df16..0f3a8594e833e8a2a94e6507d5f91b6844c4e72e 100644 (file)
@@ -47,11 +47,14 @@ class listing {
   var $objectTypeCount= array();
   var $copyPasteHandler= null;
   var $snapshotHandler= null;
+  var $exporter= array();
+  var $exportColumns= array();
 
 
   function listing($filename)
   {
     global $config;
+    global $class_mapping;
 
     // Initialize pid
     $this->pid= preg_replace("/[^0-9]/", "", microtime(TRUE));
@@ -61,11 +64,15 @@ class listing {
     }
 
     // Set base for filter
-    $this->base= session::global_get("CurrentMainBase");
-    if ($this->base == null) {
+    if ($this->baseMode) {
+      $this->base= session::global_get("CurrentMainBase");
+      if ($this->base == null) {
+        $this->base= $config->current['BASE'];
+      }
+      $this->refreshBasesList();
+    } else {
       $this->base= $config->current['BASE'];
     }
-    $this->refreshBasesList();
 
     // Move footer information
     $this->showFooter= ($config->get_cfg_value("listSummary") == "true");
@@ -75,6 +82,16 @@ class listing {
     $this->registerElementFilter("departmentLink", "listing::filterDepartmentLink");
     $this->registerElementFilter("link", "listing::filterLink");
     $this->registerElementFilter("actions", "listing::filterActions");
+
+    // Load exporters
+    foreach($class_mapping as $class => $dummy) {
+      if (preg_match('/Exporter$/', $class)) {
+        $info= call_user_func(array($class, "getInfo"));
+        if ($info != null) {
+          $this->exporter= array_merge($this->exporter, $info);
+        }
+      }
+    }
   }
 
 
@@ -97,7 +114,6 @@ class listing {
       $this->departments= $this->getDepartments();
     }
     $this->filter->setBase($this->base);
-    $this->entries= $this->filter->query();
   }
 
 
@@ -164,6 +180,15 @@ class listing {
       $this->categories= array($this->categories);
     }
 
+    // Evaluate columns to be exported
+    if (isset($this->xmlData['table']['column'])){
+      foreach ($this->xmlData['table']['column'] as $index => $config) {
+        if (isset($config['export']) && $config['export'] == "true"){
+          $this->exportColumns[]= $index;
+        }
+      }
+    }
+
     return true;  
   }
 
@@ -171,6 +196,7 @@ class listing {
   function renderHeader()
   {
     $this->header= array();
+    $this->plainHeader= array();
 
     // Initialize sort?
     $sortInit= false;
@@ -208,12 +234,14 @@ class listing {
           } else {
             $this->header[$index]= "<td class='listheader' ".$this->colprops[$index].">"._($config['label'])."</td>";
           }
+          $this->plainHeader[]= _($config['label']);
         } else {
           if ($sortable) {
             $this->header[$index]= "<td class='listheader' ".$this->colprops[$index]."><a $link>&nbsp;$sorter</a></td>";
           } else {
             $this->header[$index]= "<td class='listheader' ".$this->colprops[$index].">&nbsp;</td>";
           }
+          $this->plainHeader[]= "";
         }
       }
     }
@@ -294,7 +322,7 @@ class listing {
 
     // Fill with contents, sort as configured
     foreach ($this->entries as $row => $entry) {
-      $trow ="<tr class='rowxp".($alt&1)."'>\n";
+      $trow= "";
 
       // Render multi select if needed
       if ($this->multiSelect) {
@@ -307,23 +335,24 @@ class listing {
 
         // Save rendered column
         $sort= preg_replace('/.*>([^<]+)<.*$/', '$1', $renderedCell);
+        $sort= preg_replace('/&nbsp;/', '', $sort);
         if (preg_match('/</', $sort)){
           $sort= "";
         }
         $this->entries[$row]["_sort$index"]= $sort;
       }
-      $trow.="</tr>\n";
 
       // Save rendered entry
       $this->entries[$row]['_rendered']= $trow;
-
-      $alt++;
     }
 
     // Complete list by sorting entries for _sort$index and appending them to the output
     $entryIterator= new listingSortIterator($this->entries, $this->sortDirection[$this->sortColumn], "_sort".$this->sortColumn, $this->sortType);
     foreach ($entryIterator as $row => $entry){
+      $alt++;
+      $result.="<tr class='rowxp".($alt&1)."'>\n";
       $result.= $entry['_rendered'];
+      $result.="</tr>\n";
     }
 
     // Need to fill the list if it's not full (nobody knows why this is 22 ;-))
@@ -401,7 +430,7 @@ class listing {
     }
 
     // Save base
-    if (isset($_POST['BASE']) && $this->baseMode == true) {
+    if (isset($_POST['BASE']) && $this->baseMode) {
       $base= validate($_POST['BASE']);
       if (isset($this->bases[$base])) {
         $this->base= $base;
@@ -417,6 +446,18 @@ class listing {
       }
     }
 
+    // Filter POST with "act" attributes -> posted from action menu
+    if (isset($_POST['exec_act']) && $_POST['act'] != '') {
+      if (preg_match('/^export.*$/', $_POST['act']) && isset($this->exporter[$_POST['act']])) {
+        $exporter= $this->exporter[$_POST['act']];
+        $userinfo= ", "._("created by")." ".$ui->cn." - ".strftime('%A, %d. %B %Y, %H:%M:%S');
+        $instance= new $exporter['class']($this->headline.$userinfo, $this->plainHeader, $this->entries, $this->exportColumns);
+        $type= call_user_func(array($exporter['class'], "getInfo"));
+        $type= $type[$_POST['act']];
+        send_binary_content($instance->query(), $type['filename'], $type= $type['mime']);
+      }
+    }
+
     // Filter GET with "act" attributes
     if (isset($_GET['act'])) {
       $key= validate($_GET['act']);
@@ -471,7 +512,7 @@ class listing {
   }
 
 
-  function getBase($base)
+  function setBase($base)
   {
     $this->base= $base;
   }
@@ -552,6 +593,10 @@ class listing {
 
   function renderBase()
   {
+    if (!$this->baseMode) {
+      return;
+    }
+
     $result= "<select name='BASE' onChange='mainform.submit()' size='1'>";
     $firstDN= null;
     $found= false;
@@ -856,8 +901,8 @@ class listing {
 
   function getAction()
   {
-    // Do not do anything if this is not our PID
-    if(isset($_REQUEST['PID']) && $_REQUEST['PID'] != $this->pid) {
+    // Do not do anything if this is not our PID, or there's even no PID available...
+    if(!isset($_REQUEST['PID']) || $_REQUEST['PID'] != $this->pid) {
       return;
     }
 
@@ -910,7 +955,9 @@ class listing {
 
     // Filter POST with "act" attributes -> posted from action menu
     if (isset($_POST['act']) && $_POST['act'] != '') {
-      $result['action']= validate($_POST['act']);
+      if (!preg_match('/^export.*$/', $_POST['act'])){
+        $result['action']= validate($_POST['act']);
+      }
     }
 
     // Drop targets if empty
@@ -930,7 +977,7 @@ class listing {
 
     // Load shortcut
     $actions= &$this->xmlData['actionmenu']['action'];
-    $result= "<input type='hidden' name='act' id='actionmenu' value=''>".
+    $result= "<input type='hidden' name='act' id='actionmenu' value=''><div style='display:none'><input type='submit' name='exec_act' id='exec_act' value=''></div>".
              "<ul class='level1' id='root'><li><a href='#'>Aktionen&nbsp;<img ".
              "border=0 class='center' src='images/lists/sort-down.png'></a>";
 
@@ -1120,7 +1167,7 @@ class listing {
       $attrs[]= $data['ATTR'];
     }
     $filter.= "))";
-    $res= get_list($filter, $this->module, $this->base, $attrs, GL_NONE | GL_SIZELIMIT);
+    $res= get_list($filter, $this->module, $this->base, $attrs, GL_NONE);
 
     // Analyze list of departments
     foreach ($res as $department) {
@@ -1171,13 +1218,13 @@ class listing {
 
       // Copy entry
       if($copy){
-        $result.= "<li$separator><a href='#' onClick='document.getElementById(\"actionmenu\").value= \"copy\";mainform.submit();'><img src='images/lists/copy.png' alt='' border='0' class='center'>&nbsp;"._("Copy")."</a></li>";
+        $result.= "<li$separator><a href='#' onClick='document.getElementById(\"actionmenu\").value= \"copy\";document.getElementById(\"exec_act\").click();'><img src='images/lists/copy.png' alt='' border='0' class='center'>&nbsp;"._("Copy")."</a></li>";
         $separator= "";
       }
 
       // Cut entry
       if($cut){
-        $result.= "<li$separator><a href='#' onClick='document.getElementById(\"actionmenu\").value= \"cut\";mainform.submit();'><img src='images/lists/cut.png' alt='' border='0' class='center'>&nbsp;"._("Cut")."</a></li>";
+        $result.= "<li$separator><a href='#' onClick='document.getElementById(\"actionmenu\").value= \"cut\";document.getElementById(\"exec_act\").click();'><img src='images/lists/cut.png' alt='' border='0' class='center'>&nbsp;"._("Cut")."</a></li>";
         $separator= "";
       }
     }
@@ -1185,7 +1232,7 @@ class listing {
     // Draw entries that allow pasting entries
     if($paste){
       if($this->copyPasteHandler->entries_queued()){
-        $result.= "<li$separator><a href='#' onClick='document.getElementById(\"actionmenu\").value= \"paste\";mainform.submit();'><img src='images/lists/paste.png' alt='' border='0' class='center'>&nbsp;"._("Paste")."</a></li>";
+        $result.= "<li$separator><a href='#' onClick='document.getElementById(\"actionmenu\").value= \"paste\";document.getElementById(\"exec_act\").click();'><img src='images/lists/paste.png' alt='' border='0' class='center'>&nbsp;"._("Paste")."</a></li>";
       }else{
         $result.= "<li$separator><a href='#'><img src='images/lists/paste-grey.png' alt='' border='0' class='center'>&nbsp;"._("Paste")."</a></li>";
       }
@@ -1253,7 +1300,7 @@ class listing {
 
       // Draw icons according to the restore flag
       if($restore){
-        $result.= "<li$separator><a href='#' onClick='document.getElementById(\"actionmenu\").value= \"restore\";mainform.submit();'><img src='images/lists/restore.png' alt='' border='0' class='center'>&nbsp;"._("Restore snapshots")."</a></li>";
+        $result.= "<li$separator><a href='#' onClick='document.getElementById(\"actionmenu\").value= \"restore\";document.getElementById(\"exec_act\").click();'><img src='images/lists/restore.png' alt='' border='0' class='center'>&nbsp;"._("Restore snapshots")."</a></li>";
       }else{
         $result.= "<li$separator><a href='#'><img src='images/lists/restore_grey.png' alt='' border='0' class='center'>&nbsp;"._("Restore snapshots")."</a></li>";
       }
@@ -1272,7 +1319,9 @@ class listing {
     $result.= "<li$separator><a href='#'><img border='0' class='center' src='images/lists/export.png'>&nbsp;"._("Export list")."&nbsp;<img border='0' src='images/forward-arrow.png'></a><ul class='level3'>";
 
     // Export CVS as build in exporter
-    $result.= "<li><a href='#' onClick='document.getElementById(\"actionmenu\").value= \"exportCSV\";mainform.submit();'><img border='0' class='center' src='plugins/lists/exportCSV.png'>&nbsp;CSV</a></li>";
+    foreach ($this->exporter as $action => $exporter) {
+      $result.= "<li><a href='#' onClick='document.getElementById(\"actionmenu\").value= \"$action\";document.getElementById(\"exec_act\").click();'><img border='0' class='center' src='".$exporter['image']."'>&nbsp;".$exporter['label']."</a></li>";
+    }
 
     // Finalize list
     $result.= "</ul></li>";
@@ -1332,7 +1381,7 @@ class listing {
       $events= DaemonEvent::get_event_types_by_category($this->categories);
       if(isset($events['BY_CLASS']) && count($events['BY_CLASS'])){
         foreach($events['BY_CLASS'] as $name => $event){
-          $result.= "<li$separator><a href='#' onClick='document.getElementById(\"actionmenu\").value=\"$name\";mainform.submit();'>".$event['MenuImage']."&nbsp;".$event['s_Menu_Name']."</a></li>";
+          $result.= "<li$separator><a href='#' onClick='document.getElementById(\"actionmenu\").value=\"$name\";document.getElementById(\"exec_act\").click();'>".$event['MenuImage']."&nbsp;".$event['s_Menu_Name']."</a></li>";
           $separator= "";
         }
       }