Code

Made return type clean.
[gosa.git] / include / class_SnapShotDialog.inc
index 4dd1466360bfce1857096b691f3c71737f30a170..66211bfd029c91e024cf433d78f4d7cee8691317 100755 (executable)
@@ -15,13 +15,24 @@ class SnapShotDialog extends plugin
        var $del_dn= "";
        var $ui;
        var $acl;
+  var $dns = array();
+  var $snap_shot_bases = array();
+  var $last_list = array();
+
        
        function SnapShotDialog($config,$dn,$parent)
        {
-               plugin::plugin($config,$dn);
-               $this->parent   = $parent;
-               $this->ui               = get_userinfo();
+    plugin::plugin($config,$dn);
+    $this->parent      = $parent;
+               $this->ui                 = get_userinfo();
        }
+
+  
+  /* Show deleted snapshots from these bases */
+  function set_snapshot_bases($bases)
+  {
+    $this->snap_shot_bases = $bases;
+  }
        
        
        /* Display snapshot dialog */
@@ -29,7 +40,7 @@ class SnapShotDialog extends plugin
        {
                plugin::execute();
                $smarty = get_smarty();
-       
+
                $once = true;
                foreach($_POST as $name => $value){
                        if((preg_match("/^RemoveSnapShot_/",$name)) && ($once)){
@@ -38,31 +49,27 @@ class SnapShotDialog extends plugin
                                $entry = preg_replace("/^RemoveSnapShot_/","",$name);
                                $entry = base64_decode(preg_replace("/_[xy]$/","",$entry));
 
-                               $acl                    = get_permissions ($entry, $this->ui->subtreeACL);
-                               $this->acl              = get_module_permission($acl, "snapshot", $entry );
-
-                               if (chkacl($this->acl, "delete") == ""){
-                                       $this->del_dn   = $entry;
-                                       $smarty= get_smarty();
-                                       $smarty->assign("intro", sprintf(_("You're about to delete the snapshot '%s'."), @LDAP::fix($this->del_dn)));
-                                       return($smarty->fetch (get_template_path('remove.tpl')));
-                               } else {
-
-                                       /* Obviously the user isn't allowed to delete. Show message and
-                                          clean session. */
-                                       print_red (_("You are not allowed to delete this snapshot!"));
-                               }
-                       }
-               }
-
-               /* Remove snapshot */
-               if(isset($_POST['delete_confirm']) && !empty($this->del_dn)){
-                       $acl                    = get_permissions ($this->del_dn, $this->ui->subtreeACL);
-                       $this->acl              = get_module_permission($acl, "snapshot", $this->del_dn);
-                       if (chkacl($this->acl, "delete") == ""){
-                               $this->remove_snapshot($this->del_dn);
-                               $this->del_dn = "";
-                       }       
+        $found = false;
+        foreach($this->last_list as $t_stamp => $obj){
+          if($obj['dn'] == $entry){
+            $found = true;
+            break;
+          }
+        }
+
+        if($found){
+          $this->del_dn        = $entry;
+          $smarty= get_smarty();
+          $smarty->assign("intro", sprintf(_("You're about to delete the snapshot '%s'."), @LDAP::fix($this->del_dn)));
+          return($smarty->fetch (get_template_path('remove.tpl')));
+        }
+      }
+    }
+
+    /* Remove snapshot */
+    if(isset($_POST['delete_confirm']) && !empty($this->del_dn)){
+      $this->remove_snapshot($this->del_dn);
+      $this->del_dn = "";
                }
 
                /* We must restore a snapshot */
@@ -71,14 +78,14 @@ class SnapShotDialog extends plugin
                        /* Should we only display all snapshots of already deleted objects 
                 or the snapshots for the given object dn */
                        $res = array();
+                       $tmp = array();
                        if($this->display_all_removed_objects){
-                               if(is_array($this->dn)){
-                                       $tmp = array();
-                                       foreach($this->dn as $dn){
+                               if(count($this->snap_shot_bases)){
+                                       foreach($this->snap_shot_bases as $dn){
                                                $tmp = array_merge($tmp,$this->getAllDeletedSnapshots($dn,true));
                                        }
                                }else{
-                                       $tmp = $this->getAllDeletedSnapshots($this->dn,true);
+                                       $tmp = $this->getAllDeletedSnapshots($this->snap_shot_bases,true);
                                }
                        }else{
                                $tmp = $this->Available_SnapsShots($this->dn,true);
@@ -99,6 +106,7 @@ class SnapShotDialog extends plugin
                        krsort($list_of_elements);
        
                        /* Add Elements to divlist */   
+      $this->last_list = $list_of_elements;
                        foreach($list_of_elements as $entry){
 
                                $actions= "<input type='image' src='images/restore.png' name='RestoreSnapShot_%KEY'