Code

Fixed duplicated info message in dep_iframe.tpl
[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);
205         /* This object must be tagged, so set ObjectTaggingRequested to true */
206         if($this->deptabs->by_object['department']->must_be_tagged()){
207           $this->ObjectTaggingRequested   = true; 
208         }               
210         /* Get recursive move is required, set RecursiveRemoveRequested to true */
211         if($this->deptabs->by_object['department']->am_i_moved()){      
212           $this->RecursiveRemoveRequested = true;
213         }               
214       
215         /* This var indicated that there is an object which isn't saved right now. */
216         $this->ObjectInSaveMode = true;
218       } else {
219         /* Ok. There seem to be errors regarding to the tab data,
220            show message and continue as usual. */
221         show_errors($message);
222       }
223     }
226     /***************
227       Handle Tagging (Return output for an iframe)
228      ***************/
230     /* This department must be tagged (Is called from iframe, generates output)*/
231     if(isset($_GET['TagDepartment'])){
232       $this->deptabs->by_object['department']->tag_objects();
233       exit();  
234     }
237     /***************
238       Handle recursive move (Return output for an iframe)
239      ***************/
241     /* initiate recursive remove  (Is called from iframe, generates output)*/
242     if(isset($_GET['PerformRecMove'])){
243       $this->deptabs->by_object['department']->recursive_move("","",true);
244       exit();
245     }
248     /***************
249       Return iframes, which call tagging / recusrsive move 
250      ***************/
252     /* While one of these vars below isset, we must return an iframe, 
253        to perform requested operation */
254     if($this->ObjectTaggingRequested){
255       $this->ObjectTaggingRequested = false;
256       return($this->deptabs->by_object['department']->ShowTagFrame());
257     }
258     if($this->RecursiveRemoveRequested){
259       $this->RecursiveRemoveRequested = false;
260       return($this->deptabs->by_object['department']->ShowMoveFrame());
261     }
264     /***************
265       In case of tagging/moving the object wasn't deleted, do it know
266      ***************/
268     /* If there is an unsaved object and all operations are done
269        remove locks & save object tab & unset current object */
270     if($this->ObjectInSaveMode && (!$this->RecursiveRemoveRequested) && (!$this->ObjectTaggingRequested)){
271       $this->deptabs->save();
272       $this->ObjectInSaveMode = false;
273       if ($this->dn != "new"){
274         del_lock ($this->dn);
275       }
276       gosa_log ("Department object'".$this->dn."' has been saved");
277       unset ($this->deptabs);
278       $this->deptabs= NULL;
279       unset ($_SESSION['objectinfo']);
280     }
283     /***************
284       Dialog canceled  
285      ***************/
287     /* User canceled edit oder delete
288      * Cancel dialog 
289      */
290     if (isset($_POST['edit_cancel']) || isset($_POST['delete_cancel']) || isset($_POST['delete_department_confirm'])){
291       del_lock ($this->dn);
292       unset($this->depdabs);
293       $this->deptabs= NULL;
294       unset ($_SESSION['objectinfo']);
295     }
297     /* Headpage or normal plugin screen? */
298     if ($this->deptabs != NULL){
300       /* Show main page (tabs) */
301       $display= $this->deptabs->execute();
302       if (!$this->deptabs->by_object[$this->deptabs->current]->dialog){
303         $display.= "<p style=\"text-align:right\">\n";
304         $display.= "<input type=submit name=\"edit_finish\" value=\""._("Save")."\">\n";
305         $display.= "&nbsp;\n";
306         $display.= "<input type=submit name=\"edit_cancel\" value=\""._("Cancel")."\">\n";
307         $display.= "</p>";
308       }
309       return ($display);
310     }else{
311       /* Display dialog with group list */
312       $this->DivListDepartment->parent = $this;
313       $this->DivListDepartment->execute();
314       $this->reload();
315       $this->DivListDepartment->DepartmentsAdded = true;
316       $this->DivListDepartment->setEntries($this->departments);
317       return($this->DivListDepartment->Draw());
318     }
319   }
322   function reload()
323   {
324     /* Vairaible init */
325     $base         = $this->DivListDepartment->selectedBase;
326     $base_back    = preg_replace("/^[^,]+,/","",$base);
327     $Regex        = $this->DivListDepartment->Regex;
328   
329     // Create Array to Test if we have a valid back button
330     $tmp = $_SESSION['config']->idepartments;
332     // In case of a valid back button create entry
333     if(isset($tmp[$base_back])){
334       $tmp2    ['dn']          = convert_department_dn($base_back);
336       // If empty always go to top
337       if(empty($tmp2['dn'])){
338         $tmp2['dn']="/";
339       }
340       $tmp2    ['description'][0] = _("..");
341       $result[$tmp[$base_back]]=$tmp2;
342     }
344     if($this->DivListDepartment->SubSearch){
345       $res= get_list("(&(|(ou=$Regex)(description=$Regex))(objectClass=gosaDepartment))",
346           "department", $base, array("ou", "description"), GL_SIZELIMIT | GL_SUBSEARCH);
347     }else{
348       $res= get_list("(&(|(ou=$Regex)(description=$Regex))(objectClass=gosaDepartment))",
349           "department", $base, array("ou", "description"), GL_SIZELIMIT );
350     }
352     $this->departments= array();
354     /* Add current base to the list of available departments, but only if its naming attribute is 'ou' */
355     if(preg_match("/^ou=/",$base)){
356       $this->departments [ convert_department_dn($base) ] = ".";
357     }
359     foreach ($res as $key => $value){
361       /* Don't display base as entry on subsearch */
362       if(($value['dn'] == $base) && ($this->DivListDepartment->SubSearch)){
363         continue;
364       }
366       $cdn= convert_department_dn($value['dn']);
368       /* Append to dep list */
369       if(isset($value["description"][0])){
370         $this->departments[$cdn]= get_sub_department($cdn)." - [".$value["description"][0]."]";
371       }else{
372         $this->departments[$cdn]= get_sub_department($cdn);//$value["description"][0];
373       }
374     }
375     natcasesort ($this->departments);
376     reset ($this->departments);
377   }
379   function remove_from_parent()
380   {
381     $ldap= $this->config->get_ldap_link();
382     $ldap->cd ($this->dn);
383     $ldap->recursive_remove();
385     /* Optionally execute a command after we're done */
386     $this->postremove();
388     /* Delete references to object groups */
389     $ldap->cd ($this->config->current['BASE']);
390     $ldap->search ("(&(objectClass=gosaGroupOfNames)(member=".$this->dn."))", array("cn"));
391     while ($ldap->fetch()){
392       $og= new ogroup($this->config, $ldap->getDN());
393       unset($og->member[$this->dn]);
394       $og->save ();
395     }
397   }
399   function remove_lock()
400   {
401     if (isset($this->dn)){
402       del_lock ($this->dn);
403     }
404   }
406   function save_object()
407   {
408     /* reload department */
409     $this->config->get_departments();
411     $this->config->make_idepartments();
412     $this->DivListDepartment->config= $this->config;
413     $this->DivListDepartment->save_object();
414   }
417 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
418 ?>