Code

Added exporter
[gosa.git] / gosa-core / include / class_listing.inc
index 796793c8b3efe637232d8a02e25cff5ffd2fe317..ecaaf244c894de9c0d71e3545c64d91d0d94e1ec 100644 (file)
@@ -47,11 +47,15 @@ class listing {
   var $objectTypeCount= array();
   var $copyPasteHandler= null;
   var $snapshotHandler= null;
+  var $exporter= array();
+  var $exportColumns= array();
+  var $showExporter= false;
 
 
   function listing($filename)
   {
     global $config;
+    global $class_mapping;
 
     // Initialize pid
     $this->pid= preg_replace("/[^0-9]/", "", microtime(TRUE));
@@ -75,6 +79,14 @@ 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"));
+        $this->exporter= array_merge($this->exporter, $info);
+      }
+    }
   }
 
 
@@ -140,6 +152,9 @@ class listing {
     }
     $this->categories= array();
     if (isset($this->xmlData['definition']['objectType'])) {
+      if(isset($this->xmlData['definition']['objectType']['label'])) {
+        $this->xmlData['definition']['objectType']= array($this->xmlData['definition']['objectType']);
+      }
       foreach ($this->xmlData['definition']['objectType'] as $index => $otype) {
         $this->objectTypes[]= $this->xmlData['definition']['objectType'][$index];
         if (isset($this->xmlData['definition']['objectType'][$index]['category'])){
@@ -161,6 +176,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;  
   }
 
@@ -168,6 +192,7 @@ class listing {
   function renderHeader()
   {
     $this->header= array();
+    $this->plainHeader= array();
 
     // Initialize sort?
     $sortInit= false;
@@ -205,12 +230,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[]= "";
         }
       }
     }
@@ -224,26 +251,26 @@ class listing {
     }
 
     // Initialize list
-    $result= "<input type='hidden' value='$this->pid' name='PID'>";
-    $result.= "<div class='contentboxb' id='listing_container' style='border-top:1px solid #B0B0B0;'>";
+    $result= "<input type='hidden' value='$this->pid' name='PID'>\n";
+    $result.= "<div class='contentboxb' id='listing_container' style='border-top:1px solid #B0B0B0;'>\n";
     $result.= "<table summary='$this->headline' style='width:600px;height:450px;' cellspacing='0' id='t_scrolltable'>
-<tr><td class='scrollhead'><table summary='' style='width:100%;' cellspacing='0' id='t_scrollhead'>";
+<tr><td class='scrollhead'><table summary='' style='width:100%;' cellspacing='0' id='t_scrollhead'>\n";
     $this->numColumns= count($this->colprops) + ($this->multiSelect?1:0);
 
     // Build list header
-    $result.= "<tr>";
+    $result.= "<tr>\n";
     if ($this->multiSelect) {
-      $result.= "<td class='listheader' style='width:20px;'><input type='checkbox' id='select_all' name='select_all' title='"._("Select all")."' onClick='toggle_all_(\"listing_selected_[0-9]*$\",\"select_all\");' ></td>";
+      $result.= "<td class='listheader' style='width:20px;'><input type='checkbox' id='select_all' name='select_all' title='"._("Select all")."' onClick='toggle_all_(\"listing_selected_[0-9]*$\",\"select_all\");' ></td>\n";
     }
     foreach ($this->header as $header) {
       $result.= $header;
     }
 
     // Add 13px for scroller
-    $result.= "<td class='listheader' style='width:13px;border-right:0px;'>&nbsp;</td></table></td></tr>";
+    $result.= "<td class='listheader' style='width:13px;border-right:0px;'>&nbsp;</td></table></td></tr>\n";
 
     // New table for the real list contents
-    $result.= "<tr><td colspan='$this->numColumns' class='scrollbody'><div style='width:600px;height:430px;' id='d_scrollbody' class='scrollbody'><table summary='' style='height:100%;width:581px;' cellspacing='0' id='t_scrollbody'>";
+    $result.= "<tr><td colspan='$this->numColumns' class='scrollbody'><div style='width:600px;height:430px;' id='d_scrollbody' class='scrollbody'><table summary='' style='height:100%;width:581px;' cellspacing='0' id='t_scrollbody'>\n";
 
     // No results? Just take an empty colspanned row
     if (count($this->entries) + count($this->departments) == 0) {
@@ -290,21 +317,37 @@ class listing {
     }
 
     // Fill with contents, sort as configured
-    $entryIterator= new listingSortIterator($this->entries, $this->sortDirection[$this->sortColumn], $this->sortAttribute, $this->sortType);
-    foreach ($entryIterator as $row => $entry){
-      $result.="<tr class='rowxp".($alt&1)."'>";
+    foreach ($this->entries as $row => $entry) {
+      $trow= "";
 
       // Render multi select if needed
       if ($this->multiSelect) {
-        $result.="<td style='text-align:center;width:20px;' class='list0'><input type='checkbox' id='listing_selected_$row' name='listing_selected_$row'></td>";
+        $trow.="<td style='text-align:center;width:20px;' class='list0'><input type='checkbox' id='listing_selected_$row' name='listing_selected_$row'></td>\n";
       }
 
       foreach ($this->xmlData['table']['column'] as $index => $config) {
-        $result.="<td ".$this->colprops[$index]." class='list0'>".$this->renderCell($config['value'], $entry, $row)."</td>";
+        $renderedCell= $this->renderCell($config['value'], $entry, $row);
+        $trow.="<td ".$this->colprops[$index]." class='list0'>".$renderedCell."</td>\n";
+
+        // Save rendered column
+        $sort= preg_replace('/.*>([^<]+)<.*$/', '$1', $renderedCell);
+        if (preg_match('/</', $sort)){
+          $sort= "";
+        }
+        $this->entries[$row]["_sort$index"]= $sort;
       }
-      $result.="</tr>";
 
+      // Save rendered entry
+      $this->entries[$row]['_rendered']= $trow;
+    }
+
+    // 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 ;-))
@@ -343,6 +386,12 @@ class listing {
 
     $result.= "</table></div>";
 
+    // Open export window?
+    if ($this->showExporter) {
+      $result.= "<SCRIPT TYPE='text/javascript'>window.open('getbin.php', '"._("GOsa - export list")."');</SCRIPT>";
+      $this->showExporter= false;
+    }
+
     $smarty= get_smarty();
     $smarty->assign("FILTER", $this->filter->render());
     $smarty->assign("SIZELIMIT", print_sizelimit_warning());
@@ -398,6 +447,20 @@ class listing {
       }
     }
 
+    // Filter POST with "act" attributes -> posted from action menu
+    if (isset($_POST['act']) && $_POST['act'] != '') {
+      if (preg_match('/^export.*$/', $_POST['act']) && isset($this->exporter[$_POST['act']])) {
+        $exporter= $this->exporter[$_POST['act']];
+        $instance= new $exporter['class']($this->plainHeader, $this->entries, $this->exportColumns);
+        $type= call_user_func(array($exporter['class'], "getInfo"));
+        $type= $type[$_POST['act']];
+        session::set('binarytype', $type['mime']);
+        session::set('binaryfile', $type['filename']);
+        session::set('binary', $instance->query());
+        $this->showExporter= true;
+      }
+    }
+
     // Filter GET with "act" attributes
     if (isset($_GET['act'])) {
       $key= validate($_GET['act']);
@@ -452,6 +515,18 @@ class listing {
   }
 
 
+  function getBase($base)
+  {
+    $this->base= $base;
+  }
+
+
+  function setBase()
+  {
+    return $this->base;
+  }
+
+
   function parseLayout($layout)
   {
     $result= array();
@@ -879,7 +954,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
@@ -901,7 +978,7 @@ class listing {
     $actions= &$this->xmlData['actionmenu']['action'];
     $result= "<input type='hidden' name='act' id='actionmenu' value=''>".
              "<ul class='level1' id='root'><li><a href='#'>Aktionen&nbsp;<img ".
-             "border=0 src='images/lists/sort-down.png'></a>";
+             "border=0 class='center' src='images/lists/sort-down.png'></a>";
 
     // Build ul/li list
     $result.= $this->recurseActions($actions);
@@ -926,7 +1003,7 @@ class listing {
       // Fill image if set
       $img= "";
       if (isset($action['image'])){
-        $img= "<img border=0 src='".$action['image']."'>&nbsp;";
+        $img= "<img border='0' class='center' src='".$action['image']."'>&nbsp;";
       }
 
       if ($action['type'] == "separator"){
@@ -961,6 +1038,10 @@ class listing {
           $result.= $this->renderSnapshotMenu($separator);
           break;
 
+        case 'exporter':
+          $result.= $this->renderExporterMenu($separator);
+          break;
+
         case 'daemon':
           $result.= $this->renderDaemonMenu($separator);
           break;
@@ -1228,6 +1309,26 @@ class listing {
   }
 
 
+  function renderExporterMenu($separator)
+  {
+    // Presets
+    $result = "";
+
+    // Draw entries
+    $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
+    foreach ($this->exporter as $action => $exporter) {
+      $result.= "<li><a href='#' onClick='document.getElementById(\"actionmenu\").value= \"$action\";mainform.submit();'><img border='0' class='center' src='".$exporter['image']."'>&nbsp;".$exporter['label']."</a></li>";
+    }
+
+    // Finalize list
+    $result.= "</ul></li>";
+
+    return($result);
+  }
+
+
   function renderSnapshotActions($row, $dn, $category, $class, $copy= true, $cut= true)
   {
     // We can only provide information if we've got a snapshot handler
@@ -1279,7 +1380,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();'><img src='".$event['MenuImage']."' alt='' border='0' class='center'>&nbsp;".$event['s_Menu_Name']."</a></li>";
+          $result.= "<li$separator><a href='#' onClick='document.getElementById(\"actionmenu\").value=\"$name\";mainform.submit();'>".$event['MenuImage']."&nbsp;".$event['s_Menu_Name']."</a></li>";
           $separator= "";
         }
       }