Code

Reload department array in config object, if department was saved.
[gosa.git] / plugins / admin / departments / class_departmentManagement.inc
1 <?php
2 /*
3    This code is part of GOsa (https://gosa.gonicus.de)
4    Copyright (C) 2003  Cajus Pollmeier
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 2 of the License, or
9    (at your option) any later version.
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
16    You should have received a copy of the GNU General Public License
17    along with this program; if not, write to the Free Software
18    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  */
20 require "tabs_department.inc";
22 class departmentManagement extends plugin
23 {
24   /* Definitions */
25   var $plHeadline= "Departments";
26   var $plDescription= "This does something";
28   /* CLI vars */
29   var $cli_summary= "Handling of LDAP subtrees";
30   var $cli_description= "Some longer text\nfor help";
31   var $cli_parameters= array("eins" => "Eins ist toll", "zwei" => "Zwei ist noch besser");
33   /* Headpage attributes */
34   var $last_dep_sorting= "invalid";
35   var $departments= array();
36   var $deptabs= NULL;
38   /* attribute list for save action */
39   var $attributes= array();
40   var $objectclasses= array();
42   /* Vars to handle operations after saving the department 
43      Recursive move && tagging   */
44   var $ObjectInSaveMode         = false;    // Is true, if current object wasn't saved right now
45   var $ObjectTaggingRequested   = false;    // Object must be tagged, an iframe will be shown. 
46   var $RecursiveRemoveRequested = false;    // Is true, if this object must be moved, an iframe will be displayed in this case
48   function departmentManagement ($config, $ui)
49   {
50     $this->ui= $ui;
51     $this->dn= "";
52     $this->config= $config;
53     $this->DivListDepartment = new divListDepartment($this->config,$this);
54   }
56   function execute()
57   {
58     global $config;
59   
60     /* Call parent execute */
61     plugin::execute();
63     /***************
64       Var init 
65      ***************/
67     $_SESSION['LOCK_VARS_TO_USE'] = array("/^act$/","/^id$/","/^dep_edit_.*/","/^dep_del_.*/");
69     /* Reload departments */
70     $smarty                                             = get_smarty();
71     $display                                    = "";
72     $s_action                                   = "";  // Will contain an action, like del or edit
73     $s_entry                                    = "";  // The entry name for edit delete -...
76     /***************
77       Check posts  
78      ***************/
80     // Check Post action
81     foreach($_POST as $key => $val){
82       // Post for delete
83       if(preg_match("/dep_del.*/",$key)){
84         $s_action = "del";
85         $s_entry  = preg_replace("/dep_".$s_action."_/i","",$key);
86         $s_entry  = preg_replace("/_.*$/","",$s_entry);
87         $s_entry  = base64_decode($s_entry);
88         // Post for edit
89       }elseif(preg_match("/dep_edit_.*/",$key)){
90         $s_action="edit";
91         $s_entry  = preg_replace("/dep_".$s_action."_/i","",$key);
92         $s_entry  = preg_replace("/_.*$/","",$s_entry);
93         $s_entry  = base64_decode($s_entry);
94         // Post for new
95       }elseif(preg_match("/dep_new.*/",$key)){
96         $s_action="new";
97       }
99     }
102     /***************
103       Create a new department
104      ***************/
106     /* New Entry if Posted action (s_action) == new
107      */
108     if ($s_action=="new"){
109       $this->dn= "new";
110       $this->deptabs= new deptabs($this->config,$this->config->data['TABS']['DEPTABS'], $this->dn,"department");
111       $this->deptabs->set_acl_base($this->DivListDepartment->selectedBase);
112     }
115     /***************
116       Edit entry
117      ***************/
119     /* Edit Entry if Posted action (s_action) == edit 
120      * The entry which will be edited is defined in $s_entry
121      */
122     if (( $s_action=="edit") && (!isset($this->deptabs->config))){
123       $this->dn= $this->config->departments[trim($s_entry)];
125       if (($user= get_lock($this->dn)) != ""){
126         return(gen_locked_message ($user, $this->dn));
127       }
129       /* Lock the current entry, so everyone will get the  above dialog */
130       add_lock ($this->dn, $this->ui->dn);
132       /* Register deptabs to trigger edit dialog */
133       $this->deptabs= new deptabs($this->config,$this->config->data['TABS']['DEPTABS'], $this->dn,"department");
134       $this->deptabs->set_acl_base($this->dn);
136       $_SESSION['objectinfo']= $this->dn;
137     }
140     /***************
141       Delete entry 
142      ***************/
144     /* Delete Entry if Posted action (s_action) == del 
145      * The entry which will be deleted is defined in $s_entry
146      */
147     if ($s_action =="del"){
148       $this->dn= $this->config->departments[trim($s_entry)];
150       /* Check locking */
151       if (($user= get_lock($this->dn)) != ""){
152         $_SESSION['dn']= $this->dn;
153         return(gen_locked_message($user, $this->dn));
154       } else {
155         add_lock ($this->dn, $this->ui->dn);
156         $smarty->assign("info", sprintf(_("You're about to delete the whole LDAP subtree placed under '%s'."), @LDAP::fix($this->dn)));
157         $display.= $smarty->fetch (get_template_path('remove.tpl', TRUE));
158         return ($display);
159       }
160     }
163     /***************
164       Delete department confirmed  
165      ***************/
167     /* If department deletion is accepted ...
168      * Finally delete department 
169      */
170     if (isset($_POST['delete_department_confirm'])){
171       if($this->acl_is_removeable()){
172         $this->remove_from_parent();
173         gosa_log ("Department object'".$this->dn."' has been removed");
174       } else {
175         print_red (_("You have no permission to remove this department."));
176       }
177     }
180     /***************
181       Edit department finished 
182      ***************/
184     if ((isset($_POST['edit_finish'])) && (isset($this->deptabs->config)) && !isset($_POST['dep_move_confirm'])){
185       $this->deptabs->save_object();
186       $obj = $this->deptabs->by_object['department'];
187       if($obj->orig_dn != "new"){
188         if($obj->orig_ou != $obj->ou || $obj->base != $obj->orig_base){
189           return($smarty->fetch(get_template_path("dep_move_confirm.tpl",TRUE)));
190         }
191       }
192     }
194     /* Save changes */
195     if ((isset($_POST['edit_finish'])|| isset($_POST['dep_move_confirm'])) && (isset($this->deptabs->config))){
197       /* Check tabs, will feed message array */
198       $message= $this->deptabs->check();
200       /* Save, or display error message? */
201       if (count($message) == 0){
203         $this->deptabs->save(true);
204         $this->config->get_departments();
206         /* This object must be tagged, so set ObjectTaggingRequested to true */
207         if($this->deptabs->by_object['department']->must_be_tagged()){
208           $this->ObjectTaggingRequested   = true; 
209         }               
211         /* Get recursive move is required, set RecursiveRemoveRequested to true */
212         if($this->deptabs->by_object['department']->am_i_moved()){      
213           $this->RecursiveRemoveRequested = true;
214         }               
215       
216         /* This var indicated that there is an object which isn't saved right now. */
217         $this->ObjectInSaveMode = true;
219       } else {
220         /* Ok. There seem to be errors regarding to the tab data,
221            show message and continue as usual. */
222         show_errors($message);
223       }
224     }
227     /***************
228       Handle Tagging (Return output for an iframe)
229      ***************/
231     /* This department must be tagged (Is called from iframe, generates output)*/
232     if(isset($_GET['TagDepartment'])){
233       $this->deptabs->by_object['department']->tag_objects();
234       exit();  
235     }
238     /***************
239       Handle recursive move (Return output for an iframe)
240      ***************/
242     /* initiate recursive remove  (Is called from iframe, generates output)*/
243     if(isset($_GET['PerformRecMove'])){
244       $this->deptabs->by_object['department']->recursive_move("","",true);
245       exit();
246     }
249     /***************
250       Return iframes, which call tagging / recusrsive move 
251      ***************/
253     /* While one of these vars below isset, we must return an iframe, 
254        to perform requested operation */
255     if($this->ObjectTaggingRequested){
256       $this->ObjectTaggingRequested = false;
257       return($this->deptabs->by_object['department']->ShowTagFrame());
258     }
259     if($this->RecursiveRemoveRequested){
260       $this->RecursiveRemoveRequested = false;
261       return($this->deptabs->by_object['department']->ShowMoveFrame());
262     }
265     /***************
266       In case of tagging/moving the object wasn't deleted, do it know
267      ***************/
269     /* If there is an unsaved object and all operations are done
270        remove locks & save object tab & unset current object */
271     if($this->ObjectInSaveMode && (!$this->RecursiveRemoveRequested) && (!$this->ObjectTaggingRequested)){
272       $this->deptabs->save();
273       $this->config->get_departments();
274       $this->ObjectInSaveMode = false;
275       if ($this->dn != "new"){
276         del_lock ($this->dn);
277       }
278       gosa_log ("Department object'".$this->dn."' has been saved");
279       unset ($this->deptabs);
280       $this->deptabs= NULL;
281       unset ($_SESSION['objectinfo']);
282     }
285     /***************
286       Dialog canceled  
287      ***************/
289     /* User canceled edit oder delete
290      * Cancel dialog 
291      */
292     if (isset($_POST['edit_cancel']) || isset($_POST['delete_cancel']) || isset($_POST['delete_department_confirm'])){
293       del_lock ($this->dn);
294       unset($this->depdabs);
295       $this->deptabs= NULL;
296       unset ($_SESSION['objectinfo']);
297     }
299     /* Headpage or normal plugin screen? */
300     if ($this->deptabs != NULL){
302       /* Show main page (tabs) */
303       $display= $this->deptabs->execute();
304       if (!$this->deptabs->by_object[$this->deptabs->current]->dialog){
305         $display.= "<p style=\"text-align:right\">\n";
306         $display.= "<input type=submit name=\"edit_finish\" value=\""._("Save")."\">\n";
307         $display.= "&nbsp;\n";
308         $display.= "<input type=submit name=\"edit_cancel\" value=\""._("Cancel")."\">\n";
309         $display.= "</p>";
310       }
311       return ($display);
312     }else{
313       /* Display dialog with group list */
314       $this->DivListDepartment->parent = $this;
315       $this->DivListDepartment->execute();
316       $this->reload();
317       $this->DivListDepartment->DepartmentsAdded = true;
318       $this->DivListDepartment->setEntries($this->departments);
319       return($this->DivListDepartment->Draw());
320     }
321   }
324   function reload()
325   {
326     /* Vairaible init */
327     $base         = $this->DivListDepartment->selectedBase;
328     $base_back    = preg_replace("/^[^,]+,/","",$base);
329     $Regex        = $this->DivListDepartment->Regex;
330   
331     // Create Array to Test if we have a valid back button
332     $tmp = $_SESSION['config']->idepartments;
334     // In case of a valid back button create entry
335     if(isset($tmp[$base_back])){
336       $tmp2    ['dn']          = convert_department_dn($base_back);
338       // If empty always go to top
339       if(empty($tmp2['dn'])){
340         $tmp2['dn']="/";
341       }
342       $tmp2    ['description'][0] = _("..");
343       $result[$tmp[$base_back]]=$tmp2;
344     }
346     if($this->DivListDepartment->SubSearch){
347       $res= get_list("(&(|(ou=$Regex)(description=$Regex))(objectClass=gosaDepartment))",
348           "department", $base, array("ou", "description"), GL_SIZELIMIT | GL_SUBSEARCH);
349     }else{
350       $res= get_list("(&(|(ou=$Regex)(description=$Regex))(objectClass=gosaDepartment))",
351           "department", $base, array("ou", "description"), GL_SIZELIMIT );
352     }
354     $this->departments= array();
356     /* Add current base to the list of available departments, but only if its naming attribute is 'ou' */
357     if(preg_match("/^ou=/",$base)){
358       $this->departments [ convert_department_dn($base) ] = ".";
359     }
361     foreach ($res as $key => $value){
363       /* Don't display base as entry on subsearch */
364       if(($value['dn'] == $base) && ($this->DivListDepartment->SubSearch)){
365         continue;
366       }
368       $cdn= convert_department_dn($value['dn']);
370       /* Append to dep list */
371       if(isset($value["description"][0])){
372         $this->departments[$cdn]= get_sub_department($cdn)." - [".$value["description"][0]."]";
373       }else{
374         $this->departments[$cdn]= get_sub_department($cdn);//$value["description"][0];
375       }
376     }
377     natcasesort ($this->departments);
378     reset ($this->departments);
379   }
381   function remove_from_parent()
382   {
383     $ldap= $this->config->get_ldap_link();
384     $ldap->cd ($this->dn);
385     $ldap->recursive_remove();
387     /* Optionally execute a command after we're done */
388     $this->postremove();
390     /* Delete references to object groups */
391     $ldap->cd ($this->config->current['BASE']);
392     $ldap->search ("(&(objectClass=gosaGroupOfNames)(member=".$this->dn."))", array("cn"));
393     while ($ldap->fetch()){
394       $og= new ogroup($this->config, $ldap->getDN());
395       unset($og->member[$this->dn]);
396       $og->save ();
397     }
399   }
401   function remove_lock()
402   {
403     if (isset($this->dn)){
404       del_lock ($this->dn);
405     }
406   }
408   function save_object()
409   {
410     /* reload department */
411     $this->config->get_departments();
413     $this->config->make_idepartments();
414     $this->DivListDepartment->config= $this->config;
415     $this->DivListDepartment->save_object();
416   }
419 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
420 ?>