Code

Sudo update
[gosa.git] / gosa-plugins / sudo / admin / sudo / class_sudoManagement.inc
index fe78bd12ac9b7109827cf647af314b378dcfb422..47fd657a70b349c030866375670d5c6183d0d860 100644 (file)
  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  */
 
+/*! \brief This is the sudo management class. \
+           This class allows to add/remove/edit sudo roles with GOsa. \
+           All roles will be listed by this plugin, the displayed objects \
+            can also be filtered.
+*/
 class sudoManagement extends plugin
 {
   /* Definitions */
-  var $plHeadline     = "Sudo";
-  var $plDescription  = "Manage sudo roles";
-
-  var $DivListSudo    = NULL;
-  var $base           = "";
-
-  var $sudotabs       = NULL;
-
-  function sudoManagement (&$config, &$ui)
+  public $plHeadline     = "Sudo roles";
+  public $plDescription  = "Manage sudo roles";
+
+  private $DivListSudo    = NULL;
+  private $sudotabs       = NULL;
+  private $base           = "";
+  /*! \brief */ 
+  public function __construct(&$config, &$ui)
   {
     /* Save configuration for internal use */
     $this->config = &$config;
@@ -43,7 +48,9 @@ class sudoManagement extends plugin
   }
 
 
-  function execute()
+  /*! \brief Generate && Display HTML content 
+   */
+  public function execute()
   {
     /* Call parent execute */
     plugin::execute();
@@ -132,10 +139,13 @@ class sudoManagement extends plugin
           if ($this->dn != "new"){
             del_lock ($this->dn);
           }
-
           unset ($this->sudotabs);
           $this->sudotabs= NULL;
           session::un_set('objectinfo');
+        }else{
+          $this->dn = $this->sudotabs->dn;
+          $this->sudotabs= new sudotabs($this->config, $this->config->data['TABS']['SUDOTABS'], $this->dn);
+          session::set('objectinfo',$this->dn);
         }
       } else {
         /* Ok. There seem to be errors regarding to the tab data,
@@ -174,31 +184,33 @@ class sudoManagement extends plugin
      ********************/
 
     if ($s_action=="del_role"){
-
       $ids = $this->list_get_selected_items();
-
       if(!count($ids) && $s_entry!=""){
         $ids = array($s_entry);
       }
 
       if(count($ids)){
+
+        /* Create list of entries to delete */
         $this->dns = array();
+        $dns_names = array();
         foreach($ids as $id){
           $dn = $this->list[$id]['dn'];
-          if (($user= get_lock($dn)) != ""){
-            return(gen_locked_message ($user, $dn));
-          }
           $this->dns[$id] = $dn;
-        }
-
-        $dns_names = array();
-        foreach($this->dns as $dn){
-          add_lock ($dn, $this->ui->dn);
           $dns_names[] =@LDAP::fix($dn);
         }
+      
+        /* Check locking of entries */
+        $users = get_multiple_locks($this->dns);
+        if(count($users)){
+          return(gen_locked_message($users,$this->dns));
+        }
+    
+        /* Add locks */
+        add_lock($this->dns,$this->ui->dn);
 
         /* Lock the current entry, so nobody will edit it during deletion */
-        $smarty->assign("info", msgPool::deleteInfo($dns_names,_("sudo role")));
+        $smarty->assign("info", msgPool::deleteInfo($dns_names,_("Sudo role")));
         return($smarty->fetch(get_template_path('remove.tpl', TRUE)));
       }
     }
@@ -246,10 +258,8 @@ class sudoManagement extends plugin
 
     /* Remove lock */
     if(isset($_POST['delete_sudo_cancel'])){
-      foreach($this->dns as $key => $dn){
-        del_lock ($dn);
-        unset($this->dns[$key]);
-      }
+      del_lock ($this->dns);
+      unset($this->dns);
     }
 
     /********************
@@ -257,7 +267,7 @@ class sudoManagement extends plugin
      ********************/
 
     /* Cancel dialogs */
-    if (isset($_POST['edit_cancel'])){
+    if (isset($_POST['edit_cancel']) && is_object($this->sudotabs)){
       if(isset($this->sudotabs->dn)){
         del_lock ($this->sudotabs->dn);
       }
@@ -272,7 +282,7 @@ class sudoManagement extends plugin
      ********************/
 
     /* Show tab dialog if object is present */
-    if (isset($this->sudotabs->config)){
+    if (is_object($this->sudotabs)){
       $display= $this->sudotabs->execute();
 
       /* Don't show buttons if tab dialog requests this */
@@ -293,15 +303,17 @@ class sudoManagement extends plugin
     }
 
     /* Display dialog with sudo list */
-    $this->DivListSudo->parent = &$this;
     $this->DivListSudo->execute();
     $this->reload ();
     $this->DivListSudo->setEntries($this->list);
     return($this->DivListSudo->Draw());
   }
 
-
-  function list_get_selected_items()
+  
+  /*! \brief  Return all selected elements from HTML list 
+      @return Array List of all selected list elements 
+    */
+  private function list_get_selected_items()
   {
     $ids = array();
     foreach($_POST as $name => $value){
@@ -314,7 +326,9 @@ class sudoManagement extends plugin
   }
 
 
-  function reload($CreatePosixsList=false)
+  /*! \brief  Reload the list of sudo roles. 
+   */
+  private function reload($CreatePosixsList=false)
   {
     $this->list             = array();
     $base                   = $this->base;
@@ -342,39 +356,43 @@ class sudoManagement extends plugin
   }
 
 
-  /* Save data to object */
-  function save_object()
+  /*! \brief Save HTML post data to object 
+   */
+  public function save_object()
   {
     $this->DivListSudo->save_object();
   }
 
-
-  function remove_lock()
-  {
-    if (isset($this->sudotabs->dn)){
-      del_lock ($this->sudotabs->dn);
-    }
-  }
-
-
-  function remove_from_parent()
+  
+  /*! \brief Remove this account 
+   */
+  public function remove_from_parent()
   {
     /* Optionally execute a command after we're done */
     $this->postremove();
   }
 
 
-  /* Save to LDAP */
-  function save()
+  /*! \brief Save to LDAP 
+   */
+  public function save()
   {
     /* Optionally execute a command after we're done */
     $this->postcreate();
   }
 
-  /* Unused functions  */
-  function check()  { }
-  function adapt_from_template($dn, $skip= array()) { }
-  function password_change_needed()  { }
+  
+  /*! \brief Remove lock from entry 
+   */
+  public function remove_lock()
+  {
+    if (is_object($this->sudotabs) && $this->sudotabs->dn != "new"){
+      del_lock ($this->sudotabs->dn);
+    }
+    if(isset($this->dns) && is_array($this->dns) && count($this->dns)){
+      del_lock($this->dns);
+    }
+  }
 }
 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
 ?>