Code

Move fix_config.sh to docs, not copy it...
[gosa.git] / plugins / gofon / macro / class_gofonMacroManagement.inc
index f3b873fb5d7f682391e988880fd9ef964b241c27..f494bc828a40af5f4f97467cbd40d61542d53036 100755 (executable)
@@ -22,14 +22,15 @@ require "tabs_macros.inc";
 class gofonMacro extends plugin
 {
   /* Definitions */
-  var $plHeadline              = "Phone macros";
-  var $plDescription   = "This does something";
+  var $plHeadline                  = "Phone macros";
+  var $plDescription     = "This does something";
 
   /* Dialog attributes */
-  var $macrotabs               = NULL;
-  var $applications            = array();
-  var $ui                              = NULL;
-  var $acl                             = "";
+  var $macrotabs                   = NULL;
+  var $macros                  = array();
+  var $ui                                      = NULL;
+  var $acl                                   = "";
+  var $DivListMacro     = NULL;
 
   function gofonMacro($config, $ui)
   {
@@ -37,51 +38,62 @@ class gofonMacro extends plugin
     $this->config= $config;
     $this->ui= $ui;
 
-    /* Get global filter config */
-    if (!is_global("macrofilter")){
-      $base= get_base_from_people($ui->dn);
-      $macrofilter= array("depselect" => $base,  "regex" => "*");
-      register_global("macrofilter", $macrofilter);
-    }
+    $acl= get_permissions ($ui->dn, $ui->subtreeACL);
+    $this->acl= get_module_permission($acl, "goFonMacro", $ui->dn);
+
+    $this->DivListMacro = new divListMacro($this->config,$this);
   }
 
   function execute()
   {
-    /* Save data */
-    $macrofilter= get_global("macrofilter");
-    foreach( array("depselect", "regex") as $type){
-      if (isset($_POST[$type])){
-        $macrofilter[$type]= $_POST[$type];
-      }
-    }
-    if (isset($_GET['search'])){
-      $s= mb_substr($_GET['search'], 0, 1, "UTF8")."*";
-      if ($s == "**"){
-        $s= "*";
+    /* Call parent execute */
+    plugin::execute();
+
+    /*****************
+      Variable initialisation
+     *****************/
+
+    $s_action     = "";                       // Contains the action to proceed
+    $s_entry      = "";                       // The value for s_action
+    $base_back    = "";                       // The Link for Backbutton
+    $smarty= get_smarty();
+
+
+    /*****************
+      Check Posts 
+     *****************/
+
+    /* Test Posts */
+    foreach($_POST as $key => $val){
+      // Post for delete
+      if(preg_match("/user_del.*/",$key)){
+        $s_action = "del";
+        $s_entry  = preg_replace("/user_".$s_action."_/i","",$key);
+        // Post for edit
+      }elseif(preg_match("/user_edit_.*/",$key)){
+        $s_action="edit";
+        $s_entry  = preg_replace("/user_".$s_action."_/i","",$key);
+        // Post for new
+      }elseif(preg_match("/user_new.*/",$key)){
+        $s_action="new";
+      }elseif(preg_match("/user_chgpw.*/i",$key)){
+        $s_action="change_pw";
+        $s_entry  = preg_replace("/user_chgpw_/i","",$key);
       }
-      $macrofilter['regex']= $s;
     }
-    /* Save (new) Filter */
-    register_global("macrofilter", $macrofilter);
-
-    /* Check sorting variable */
-    if (!isset($this->macrotabs) &&
-        !isset($_POST['new_app']) &&
-        !isset($_POST['delete_app']) &&
-        !isset($_POST['select_app'])){
-      $this->reload();
+    if((isset($_GET['act']))&&($_GET['act']=="edit_entry")){
+      $s_action ="edit";
+      $s_entry  = $_GET['id'];
     }
-  
-    
-    $smarty= get_smarty();
+    $s_entry  = preg_replace("/_.$/","",$s_entry);
 
-    /* Check for exeeded sizelimit */
-    if (($message= check_sizelimit()) != ""){
-      return($message);
-    }
 
-    /* New application? */
-    if (isset($_POST['new_app'])){
+    /*****************
+      Create a new Macro 
+     *****************/
+
+    /* New macro? */
+    if ($s_action=="new"){
 
       /* By default we set 'dn' to 'new', all relevant plugins will
          react on this. */
@@ -89,21 +101,30 @@ class gofonMacro extends plugin
 
       /* Create new usertab object */
       $this->macrotabs= new macrotabs($this->config,$this->config->data['TABS']['MACROTABS'], $this->dn);
-      $this->macrotabs->set_acl(array(':all'));
     }
 
+
+    /*****************
+      Edit || Password canceled  
+     *****************/
+
     /* Cancel dialogs */
-    if (isset($_POST['edit_cancel']) || isset($_POST['password_cancel'])){
+    if (isset($_POST['edit_cancel']) || isset($_POST['delete_cancel'])){
       del_lock ($this->macrotabs->dn);
       unset ($this->macrotabs);
       $this->macrotabs= NULL;
       unset ($_SESSION['objectinfo']);
     }
 
-    /* Finish apps edit is triggered by the tabulator dialog, so
+
+    /*****************
+      Edit finised
+     *****************/
+
+    /* Finish mac edit is triggered by the tabulator dialog, so
        the user wants to save edited data. Check and save at this
        point. */
-    if (isset($_POST['edit_finish'])){
+    if ((isset($_POST['edit_finish']) || isset($_POST['edit_apply'])) && (isset($this->macrotabs->config))){
 
       /* Check tabs, will feed message array */
       $this->macrotabs->last= $this->macrotabs->current;
@@ -117,18 +138,17 @@ class gofonMacro extends plugin
         $this->macrotabs->save();
         gosa_log ("Macro object'".$this->dn."' has been saved");
 
-        /* Application has been saved successfully, remove lock from
-           LDAP. */
-        if ($this->dn != "new"){
-          del_lock ($this->dn);
-        }
+        if (!isset($_POST['edit_apply'])){
+          /* macro has been saved successfully, remove lock from
+             LDAP. */
+          if ($this->dn != "new"){
+            del_lock ($this->dn);
+          }
 
-        /* There's no page reload so we have to read new apps at
-           this point. */
-        $this->reload ();
-        unset ($this->macrotabs);
-        $this->macrotabs= NULL;
-        unset ($_SESSION['objectinfo']);
+          unset ($this->macrotabs);
+          $this->macrotabs= NULL;
+          unset ($_SESSION['objectinfo']);
+        }
       } else {
         /* Ok. There seem to be errors regarding to the tab data,
            show message and continue as usual. */
@@ -136,11 +156,16 @@ class gofonMacro extends plugin
       }
     }
 
-    /* User wants to edit data? */
-    if ((isset($_POST['select_app']) || (isset($_POST['edit_helper']) && $_POST['edit_helper'] == "1")) && isset($_POST['macrolists']) && $_POST['macrolists'] != ""){
+
+    /*****************
+      Edit macro 
+     *****************/
+
+    /* User wants to edit data */
+    if (($s_action=="edit") && (!isset($this->macrotabs->config))){
 
       /* Get 'dn' from posted 'macrolists', must be unique */
-      $this->dn= trim($_POST['macrolists']);
+      $this->dn= $this->macros[$s_entry]['dn']; 
 
       /* Check locking, save current plugin in 'back_plugin', so
          the dialog knows where to return. */
@@ -151,27 +176,27 @@ class gofonMacro extends plugin
       /* Lock the current entry, so everyone will get the
          above dialog */
       add_lock ($this->dn, $this->ui->dn);
-
-      /* Set up the users ACL's for this 'dn' */
-      $acl= get_permissions ($this->dn, $this->ui->subtreeACL);
-
       /* Register macrotabs to trigger edit dialog */
       $this->macrotabs= new macrotabs($this->config,
           $this->config->data['TABS']['MACROTABS'], $this->dn);
-      $this->macrotabs->set_acl($acl);
       $_SESSION['objectinfo']= $this->dn;
     }
 
+
+    /*****************
+      Remove marco
+     *****************/
+
     /* Remove user was requested */
-    if (isset($_POST['delete_app']) && isset($_POST['macrolists'])){
+    if ($s_action=="del"){
 
       /* Get 'dn' from posted 'uid' */
-      $this->dn= trim($_POST['macrolists']);
+      $this->dn= $this->macros[$s_entry]['dn'];
 
       /* Load permissions for selected 'dn' and check if
          we're allowed to remove this 'dn' */
       $acl= get_permissions ($this->dn, $this->ui->subtreeACL);
-      $this->acl= get_module_permission($acl, "application", $this->dn);
+      $this->acl= get_module_permission($acl, "goFonMacro", $this->dn);
       if (chkacl($this->acl, "delete") == ""){
 
         /* Check locking, save current plugin in 'back_plugin', so
@@ -189,156 +214,127 @@ class gofonMacro extends plugin
 
         /* Obviously the user isn't allowed to delete. Show message and
            clean session. */
-        print_red (_("You are not allowed to delete this, macro!"));
+        print_red (_("You are not allowed to delete this macro!"));
       }
     }
 
-    /* Confirmation for deletion has been passed. Group should be deleted. */
-    if (isset($_POST['delete_app_confirm'])){
+
+    /*****************
+      Remove macro
+     *****************/
+
+    /* Confirmation for deletion has been passed. Macro should be deleted. */
+    if (isset($_POST['delete_macro_confirm'])){
 
       /* Some nice guy may send this as POST, so we've to check
          for the permissions again. */
       if (chkacl($this->acl, "delete") == ""){
 
         /* Delete request is permitted, perform LDAP action */
-        $this->macrotabs= new macrotabs($this->config,
-            $this->config->data['TABS']['MACROTABS'], $this->dn);
+        $this->macrotabs= new macrotabs($this->config,$this->config->data['TABS']['MACROTABS'], $this->dn);
         $this->macrotabs->set_acl(array($this->acl));
+
         $this->macrotabs->delete ();
-        gosa_log ("Application object'".$this->dn."' has been removed");
+        gosa_log ("macro object'".$this->dn."' has been removed");
         unset ($this->macrotabs);
         $this->macrotabs= NULL;
-
-        /* Group list has changed, reload it. */
-        $this->reload ();
       } else {
-
         /* Normally this shouldn't be reached, send some extra
            logs to notify the administrator */
-        print_red (_("You are not allowed to delete this application!"));
+        print_red (_("You are not allowed to delete this macro!"));
         gosa_log ("Warning: '".$this->ui->uid."' tried to trick group deletion.");
       }
-
       /* Remove lock file after successfull deletion */
       del_lock ($this->dn);
     }
 
 
-    /* Delete application canceled? */
-    if (isset($_POST['delete_cancel'])){
-      del_lock ($this->dn);
-      unset($_SESSION['objectinfo']);
-    }
+    /*****************
+      Display open dialogs  
+     *****************/
 
     /* Show tab dialog if object is present */
-    if ($this->macrotabs){
+    if (($this->macrotabs) && (isset($this->macrotabs->config))){
       $display= $this->macrotabs->execute();
 
       /* Don't show buttons if tab dialog requests this */
       if (!$this->macrotabs->by_object[$this->macrotabs->current]->dialog){
         $display.= "<p style=\"text-align:right\">\n";
-        $display.= "<input type=submit name=\"edit_finish\" value=\""._("Finish")."\">\n";
+        $display.= "<input type=\"submit\" name=\"edit_finish\" style=\"width:80px\" value=\""._("Ok")."\">\n";
         $display.= "&nbsp;\n";
-        $display.= "<input type=submit name=\"edit_cancel\" value=\""._("Cancel")."\">\n";
+        if ($this->dn != "new"){
+          $display.= "<input type=submit name=\"edit_apply\" value=\""._("Apply")."\">\n";
+          $display.= "&nbsp;\n";
+        }
+        $display.= "<input type=\"submit\" name=\"edit_cancel\" value=\""._("Cancel")."\">\n";
         $display.= "</p>";
       }
       return ($display);
     }
 
-    /* Show main page */
-    $smarty->assign("applications", $this->applications);
-    $smarty->assign("search_image", get_template_path('images/search.png'));
-    $smarty->assign("tree_image", get_template_path('images/tree.png'));
-    $smarty->assign("infoimage", get_template_path('images/info.png'));
-    $smarty->assign("launchimage", get_template_path('images/launch.png'));
-    $smarty->assign("deplist", $this->config->idepartments);
-    foreach( array("depselect", "regex") as $type){
-      $smarty->assign("$type", $macrofilter[$type]);
-    }
 
-    /* Extend if we are not using javascript */
-    $smarty->assign("apply", apply_filter());
-    $smarty->assign("alphabet", generate_alphabet());
-    $smarty->assign("hint", print_sizelimit_warning());
+    /*****************
+      Display entry list 
+     *****************/
+
+    /* Return rendered main page */
+    /* Display dialog with system list */
+    $this->DivListMacro->parent = $this;
+    $this->DivListMacro->execute();
 
-    return($smarty->fetch(get_template_path('headpage.tpl', TRUE)));
+    /* Add departments if subsearch is disabled */
+    if(!$this->DivListMacro->SubSearch){
+      $this->DivListMacro->AddDepartments($this->DivListMacro->selectedBase,4);
+    }
+    $this->reload();
+    $this->DivListMacro->setEntries($this->macros);
+    return($this->DivListMacro->Draw());
   }
 
 
   function reload()
   {
-    /* Get config */
-    $macrofilter= get_global('macrofilter');
-
     /* Set base for all searches */
-    $base= $macrofilter['depselect'];
-
-    /* Regex filter? */
-    if ($macrofilter['regex'] != ""){
-      $regex= $macrofilter['regex'];
-    } else {
-      $regex= "*";
+    $base       = $this->DivListMacro->selectedBase;
+    $SubSearch  = $this->DivListMacro->SubSearch;
+    $Regex      = $this->DivListMacro->Regex;
+    $Filter     = "(&(cn=".$Regex.")(objectClass=goFonMacro))";
+    $Flags      = GL_SIZELIMIT;
+    $Attrs      = array("cn","description","displayName","goFonMacroVisible");
+
+    /* Prepare for ls or search*/        
+    if($SubSearch){
+      $Flags |= GL_SUBSEARCH;
+    }else{
+      $base = "ou=macros,ou=asterisk,ou=configs,ou=systems,".$base;
     }
 
-    /* Generate application list */
-    $res= get_list($this->ui->subtreeACL, "(&(cn=$regex)(objectClass=goFonMacro))", TRUE, $base, array("cn", "description"), TRUE);
-    $this->applications= array();
-    foreach ($res as $value){
-      $this->applications[$value["dn"]]= $value["cn"][0];
-      if (isset($value["description"][0])){
-        $this->applications[$value["dn"]]= $value["cn"][0]." (".
-          $value["description"][0].")";
-      }
+    /* Generate macro list */
+    $res= get_list($Filter, $this->ui->subtreeACL,$base, $Attrs, $Flags);
+
+    $tmp=array();
+    foreach($res as $tkey => $val ){
+      $tmp[strtolower($val['cn'][0]).$val['cn'][0]]=$val;
+    }
+    ksort($tmp);
+    $this->macros=array();
+    foreach($tmp as $val){
+      $this->macros[]=$val;
     }
-    natcasesort ($this->applications);
-    reset ($this->applications);
-  }
 
-  function remove_from_parent()
-  {
-    /* Optionally execute a command after we're done */
-    $this->postremove();
+    reset ($this->macros);
   }
 
 
   /* Save data to object */
   function save_object()
   {
+    $this->DivListMacro->save_object();
   }
 
 
-  /* Check values */
-  function check()
-  {
-  }
-
-
-  /* Save to LDAP */
-  function save()
-  {
-    /* Optionally execute a command after we're done */
-    $this->postcreate();
-  }
-
-  function adapt_from_template($dn)
-  {
-  }
-
-  function password_change_needed()
-  {
-  }
-
-  function show_header($button_text, $text, $disabled= FALSE)
-  {
-  }
-
-  function remove_lock()
-  {
-    if (isset($this->macrotabs->dn)){
-      del_lock ($this->macrotabs->dn);
-    }
-  }
-
+  function adapt_from_template($dn)  { }
+  function check() { }
 }
 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
 ?>