Code

Added timeout to GOsa::log mysql connections.
[gosa.git] / gosa-core / include / class_listing.inc
index 63124a1945a9e7c917e23dfd0829f8aabda15e0c..e0ca916ef09189fa7e64a337fc6435643e90a057 100644 (file)
@@ -45,7 +45,8 @@ class listing {
   var $pid;
   var $objectTypes= array();
   var $objectTypeCount= array();
-  var $CopyPasteHandler= null;
+  var $copyPasteHandler= null;
+  var $snapshotHandler= null;
 
 
   function listing($filename)
@@ -79,7 +80,24 @@ class listing {
 
   function setCopyPasteHandler($handler)
   {
-    $this->CopyPasteHandler= &$handler;
+    $this->copyPasteHandler= &$handler;
+  }
+
+
+  function setSnapshotHandler($handler)
+  {
+    $this->snapshotHandler= &$handler;
+  }
+
+
+  function setFilter($filter)
+  {
+    $this->filter= &$filter;
+    if ($this->departmentBrowser){
+      $this->departments= $this->getDepartments();
+    }
+    $this->filter->setBase($this->base);
+    $this->entries= $this->filter->query();
   }
 
 
@@ -122,6 +140,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'])){
@@ -200,7 +221,6 @@ class listing {
 
   function render()
   {
-echo "snapshot handler, daemon handler<br>";
     // Check for exeeded sizelimit
     if (($message= check_sizelimit()) != ""){
       return($message);
@@ -250,11 +270,18 @@ echo "snapshot handler, daemon handler<br>";
         }
 
         // Render defined department columns, fill the rest with some stuff
+        $rest= $this->numColumns - 1;
         foreach ($this->xmlData['table']['department'] as $index => $config) {
-          $result.="<td ".$this->colprops[$index]." class='list1'>".$this->renderCell($config['value'], $entry, $row)."</td>";
+          $colspan= 1;
+          if (isset($config['span'])){
+            $colspan= $config['span'];
+          }
+          $result.="<td colspan='$colspan' ".$this->colprops[$index]." class='list1'>".$this->renderCell($config['value'], $entry, $row)."</td>";
+          $rest-= $colspan;
         }
-        $last= count($this->xmlData['table']['department']) + 1;
-        $rest= $this->numColumns - $last;
+
+        // Fill remaining cols with nothing
+        $last= $this->numColumns - $rest;
         for ($i= 0; $i<$rest; $i++){
           $result.= "<td ".$this->colprops[$last+$i-1]." class='list1'>&nbsp;</td>";
         }
@@ -284,8 +311,8 @@ echo "snapshot handler, daemon handler<br>";
     }
 
     // Need to fill the list if it's not full (nobody knows why this is 22 ;-))
-    $emptyListStyle= (count($this->entries) + count($deps) == 0)?"border:0;":"";
-    if (count($this->entries) + count($deps) < 22) {
+    $emptyListStyle= (count($this->entries) + $deps == 0)?"border:0;":"";
+    if ((count($this->entries) + $deps) < 22) {
       $result.= "<tr>";
       for ($i= 0; $i<$this->numColumns; $i++) {
         if ($i == 0) {
@@ -344,22 +371,14 @@ echo "snapshot handler, daemon handler<br>";
   }
 
 
-  function setFilter($filter)
-  {
-    $this->filter= &$filter;
-    if ($this->departmentBrowser){
-      $this->departments= $this->getDepartments();
-    }
-    $this->filter->setBase($this->base);
-    $this->entries= $this->filter->query();
-  }
-
-
   function update()
   {
     global $config;
     $ui= get_userinfo();
 
+    // Reset object counter
+    $this->objectTypeCount= array();
+
     // Do not do anything if this is not our PID
     if(isset($_REQUEST['PID']) && $_REQUEST['PID'] != $this->pid) {
       return;
@@ -495,6 +514,10 @@ echo "snapshot handler, daemon handler<br>";
     // Watch out for filters and prepare to execute them
     $data= $this->processElementFilter($data, $config, $row);
 
+    // Replace all non replaced %{...} instances because they
+    // are non resolved attributes or filters
+    $data= preg_replace('/%{[^}]+}/', '&nbsp;', $data);
+
     return $data;
   }
 
@@ -685,11 +708,7 @@ echo "snapshot handler, daemon handler<br>";
       }
 
       // Handle special types
-      if ($action['type'] == "snapshot") {
-        #TODO
-        #echo "actiontriggers: snapshot missing<br>";
-      }
-      if ($action['type'] == "copypaste") {
+      if ($action['type'] == "copypaste" || $action['type'] == "snapshot") {
 
         $objectType= $this->getObjectType($this->objectTypes, $this->entries[$row]['objectClass']);
         $category= $class= null;
@@ -698,13 +717,12 @@ echo "snapshot handler, daemon handler<br>";
           $class= $objectType['class'];
         }
 
-        $result.= $this->renderCopyPasteActions($row, $this->entries[$row]['dn'], $category, $class);
-      }
-      if ($action['type'] == "daemon") {
-        #TODO
-        #echo "actiontriggers: daemon missing<br>";
+        if ($action['type'] == "copypaste") {
+          $result.= $this->renderCopyPasteActions($row, $this->entries[$row]['dn'], $category, $class);
+        } else {
+          $result.= $this->renderSnapshotActions($row, $this->entries[$row]['dn'], $category, $class);
+        }
       }
-
     }
 
     return $result;
@@ -886,7 +904,7 @@ echo "snapshot handler, daemon handler<br>";
     $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);
@@ -911,7 +929,7 @@ echo "snapshot handler, daemon handler<br>";
       // 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"){
@@ -943,13 +961,11 @@ echo "snapshot handler, daemon handler<br>";
           break;
 
         case 'snapshot':
-          #TODO
-          #echo "actionmenu: snapshot missing<br>";
+          $result.= $this->renderSnapshotMenu($separator);
           break;
 
         case 'daemon':
-          #TODO
-          #echo "actionmenu: daemon missing<br>";
+          $result.= $this->renderDaemonMenu($separator);
           break;
       }
 
@@ -974,7 +990,7 @@ echo "snapshot handler, daemon handler<br>";
       // Every ACL has to pass
       foreach ($acls as $acl) {
         $module= $this->module;
-        $acllist= array();
+        $aclList= array();
 
         // Split for category and plugins if needed
         // match for "[rw]" style entries
@@ -1102,7 +1118,7 @@ echo "snapshot handler, daemon handler<br>";
   {
     // We can only provide information if we've got a copypaste handler
     // instance
-    if(!(isset($this->CopyPasteHandler) && is_object($this->CopyPasteHandler))){
+    if(!(isset($this->copyPasteHandler) && is_object($this->copyPasteHandler))){
       return "";
     }
 
@@ -1136,7 +1152,7 @@ echo "snapshot handler, daemon handler<br>";
 
     // Draw entries that allow pasting entries
     if($paste){
-      if($this->CopyPasteHandler->entries_queued()){
+      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>";
       }else{
         $result.= "<li$separator><a href='#'><img src='images/lists/paste-grey.png' alt='' border='0' class='center'>&nbsp;"._("Paste")."</a></li>";
@@ -1151,7 +1167,7 @@ echo "snapshot handler, daemon handler<br>";
   {
     // We can only provide information if we've got a copypaste handler
     // instance
-    if(!(isset($this->CopyPasteHandler) && is_object($this->CopyPasteHandler))){
+    if(!(isset($this->copyPasteHandler) && is_object($this->copyPasteHandler))){
       return "";
     }
 
@@ -1182,6 +1198,99 @@ echo "snapshot handler, daemon handler<br>";
     return($result);
   }
 
+
+  function renderSnapshotMenu($separator)
+  {
+    // We can only provide information if we've got a snapshot handler
+    // instance
+    if(!(isset($this->snapshotHandler) && is_object($this->snapshotHandler))){
+      return "";
+    }
+
+    // Presets
+    $result = "";
+    $ui = get_userinfo();
+
+    if($this->snapshotHandler->enabled() && $ui->allow_snapshot_restore($this->base, $this->module)){
+
+      // Check if there is something to restore
+      $restore= false;
+      foreach($this->snapshotHandler->getSnapshotBases() as $base){
+        $restore= $restore || count($this->snapshotHandler->getDeletedSnapshots($base)) > 0;
+      }
+
+      // 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>";
+      }else{
+        $result.= "<li$separator><a href='#'><img src='images/lists/restore_grey.png' alt='' border='0' class='center'>&nbsp;"._("Restore snapshots")."</a></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
+    // instance
+    if(!(isset($this->snapshotHandler) && is_object($this->snapshotHandler))){
+      return "";
+    }
+
+    // Presets
+    $result= "";
+    $ui = get_userinfo();
+
+    // Only act if enabled here
+    if($this->snapshotHandler->enabled()){
+
+      // Draw restore button
+      if ($ui->allow_snapshot_restore($dn, $category)){
+
+        // Do we have snapshots for this dn?
+        if($this->snapshotHandler->hasSnapshots($dn)){
+          $result.= "<input class='center' type='image' src='images/lists/restore.png' ".
+                     "alt='"._("Restore snapshot")."' name='listing_restore_$row' title='".
+                     _("Restore snapshot")."' style='padding:1px'>";
+        } else {
+          $result.= "<img src='images/lists/restore_grey.png' alt=' ' class='center' style='padding:1px'>";
+        }
+      }
+
+      // Draw snapshot button
+      if($ui->allow_snapshot_create($dn, $category)){
+          $result.= "<input class='center' type='image' src='images/snapshot.png' ".
+                     "alt='"._("Create snapshot")."' name='listing_snapshot_$row' title='".
+                     _("Create a new snapshot from this object")."' style='padding:1px'>";
+      }else{
+          $result.= "<img src='images/empty.png' alt=' ' class='center' style='padding:1px'>";
+      }
+    }
+
+    return($result);
+  }
+
+
+  function renderDaemonMenu($separator)
+  {
+    $result= "";
+
+    // If there is a daemon registered, draw the menu entries
+    if(class_available("DaemonEvent")){
+      $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>";
+          $separator= "";
+        }
+      }
+    }
+
+    return $result;
+  }
+
 }
 
 ?>