Code

Fixed dns zone creation , if server is new
[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 acls */
151       $acl = $this->ui->get_permissions($this->dn,"department/department");
152       if(preg_match("/d/",$acl)){
154         /* Check locking */
155         if (($user= get_lock($this->dn)) != ""){
156           $_SESSION['dn']= $this->dn;
157           return(gen_locked_message($user, $this->dn));
158         } else {
159           add_lock ($this->dn, $this->ui->dn);
160           $smarty->assign("info", sprintf(_("You're about to delete the whole LDAP subtree placed under '%s'."), @LDAP::fix($this->dn)));
161           $display.= $smarty->fetch (get_template_path('remove.tpl', TRUE));
162           return ($display);
163         }
164       }else{
165         print_red (_("You have no permission to remove this department."));
166       }
167     }
170     /***************
171       Delete department confirmed  
172      ***************/
174     /* If department deletion is accepted ...
175      * Finally delete department 
176      */
177     if (isset($_POST['delete_department_confirm'])){
179       /* check acls */
180       $acl = $this->ui->get_permissions($this->dn,"department/department");
181       if(preg_match("/d/",$acl)){
182         $this->remove_from_parent();
183         gosa_log ("Department object'".$this->dn."' has been removed");
184       } else {
185         print_red (_("You have no permission to remove this department."));
186       }
187     }
190     /***************
191       Edit department finished 
192      ***************/
194     if ((isset($_POST['edit_finish'])) && (isset($this->deptabs->config)) && !isset($_POST['dep_move_confirm'])){
195       $this->deptabs->save_object();
196       $obj = $this->deptabs->by_object['department'];
197       if($obj->orig_dn != "new"){
198         if($obj->orig_ou != $obj->ou || $obj->base != $obj->orig_base){
199           return($smarty->fetch(get_template_path("dep_move_confirm.tpl",TRUE)));
200         }
201       }
202     }
204     /* Save changes */
205     if ((isset($_POST['edit_finish'])|| isset($_POST['dep_move_confirm'])) && (isset($this->deptabs->config))){
207       /* Check tabs, will feed message array */
208       $message= $this->deptabs->check();
210       /* Save, or display error message? */
211       if (count($message) == 0){
213         $this->deptabs->save(true);
214         $this->config->get_departments();
216         /* This object must be tagged, so set ObjectTaggingRequested to true */
217         if($this->deptabs->by_object['department']->must_be_tagged()){
218           $this->ObjectTaggingRequested   = true; 
219         }               
221         /* Get recursive move is required, set RecursiveRemoveRequested to true */
222         if($this->deptabs->by_object['department']->am_i_moved()){      
223           $this->RecursiveRemoveRequested = true;
224         }               
225       
226         /* This var indicated that there is an object which isn't saved right now. */
227         $this->ObjectInSaveMode = true;
229       } else {
230         /* Ok. There seem to be errors regarding to the tab data,
231            show message and continue as usual. */
232         show_errors($message);
233       }
234     }
237     /***************
238       Handle Tagging (Return output for an iframe)
239      ***************/
241     /* This department must be tagged (Is called from iframe, generates output)*/
242     if(isset($_GET['TagDepartment'])){
243       $this->deptabs->by_object['department']->tag_objects();
244       exit();  
245     }
248     /***************
249       Handle recursive move (Return output for an iframe)
250      ***************/
252     /* initiate recursive remove  (Is called from iframe, generates output)*/
253     if(isset($_GET['PerformRecMove'])){
254       $this->deptabs->by_object['department']->recursive_move("","",true);
255       exit();
256     }
259     /***************
260       Return iframes, which call tagging / recusrsive move 
261      ***************/
263     /* While one of these vars below isset, we must return an iframe, 
264        to perform requested operation */
265     if($this->ObjectTaggingRequested){
266       $this->ObjectTaggingRequested = false;
267       return($this->deptabs->by_object['department']->ShowTagFrame());
268     }
269     if($this->RecursiveRemoveRequested){
270       $this->RecursiveRemoveRequested = false;
271       return($this->deptabs->by_object['department']->ShowMoveFrame());
272     }
275     /***************
276       In case of tagging/moving the object wasn't deleted, do it know
277      ***************/
279     /* If there is an unsaved object and all operations are done
280        remove locks & save object tab & unset current object */
281     if($this->ObjectInSaveMode && (!$this->RecursiveRemoveRequested) && (!$this->ObjectTaggingRequested)){
282       $this->deptabs->save();
283       $this->config->get_departments();
284       $this->ObjectInSaveMode = false;
285       if ($this->dn != "new"){
286         del_lock ($this->dn);
287       }
288       gosa_log ("Department object'".$this->dn."' has been saved");
289       unset ($this->deptabs);
290       $this->deptabs= NULL;
291       unset ($_SESSION['objectinfo']);
292     }
295     /***************
296       Dialog canceled  
297      ***************/
299     /* User canceled edit oder delete
300      * Cancel dialog 
301      */
302     if (isset($_POST['edit_cancel']) || isset($_POST['delete_cancel']) || isset($_POST['delete_department_confirm'])){
303       del_lock ($this->dn);
304       unset($this->depdabs);
305       $this->deptabs= NULL;
306       unset ($_SESSION['objectinfo']);
307     }
309     /* Headpage or normal plugin screen? */
310     if ($this->deptabs != NULL){
312       /* Show main page (tabs) */
313       $display= $this->deptabs->execute();
314       if (!$this->deptabs->by_object[$this->deptabs->current]->dialog){
315         $display.= "<p style=\"text-align:right\">\n";
316         $display.= "<input type=submit name=\"edit_finish\" value=\""._("Save")."\">\n";
317         $display.= "&nbsp;\n";
318         $display.= "<input type=submit name=\"edit_cancel\" value=\""._("Cancel")."\">\n";
319         $display.= "</p>";
320       }
321       return ($display);
322     }else{
323       /* Display dialog with group list */
324       $this->DivListDepartment->parent = $this;
325       $this->DivListDepartment->execute();
326       $this->reload();
327       $this->DivListDepartment->DepartmentsAdded = true;
328       $this->DivListDepartment->setEntries($this->departments);
329       return($this->DivListDepartment->Draw());
330     }
331   }
334   function reload()
335   {
336     /* Vairaible init */
337     $base         = $this->DivListDepartment->selectedBase;
338     $base_back    = preg_replace("/^[^,]+,/","",$base);
339     $Regex        = $this->DivListDepartment->Regex;
340   
341     // Create Array to Test if we have a valid back button
342     $tmp = $_SESSION['config']->idepartments;
344     // In case of a valid back button create entry
345     if(isset($tmp[$base_back])){
346       $tmp2    ['dn']          = convert_department_dn($base_back);
348       // If empty always go to top
349       if(empty($tmp2['dn'])){
350         $tmp2['dn']="/";
351       }
352       $tmp2    ['description'][0] = _("..");
353       $result[$tmp[$base_back]]=$tmp2;
354     }
356     if($this->DivListDepartment->SubSearch){
357       $res= get_list("(&(|(ou=$Regex)(description=$Regex))(objectClass=gosaDepartment))",
358           "department", $base, array("ou", "description"), GL_SIZELIMIT | GL_SUBSEARCH);
359     }else{
360       $res= get_list("(&(|(ou=$Regex)(description=$Regex))(objectClass=gosaDepartment))",
361           "department", $base, array("ou", "description"), GL_SIZELIMIT );
362     }
364     $this->departments= array();
366     /* Add current base to the list of available departments, but only if its naming attribute is 'ou' */
367     if(preg_match("/^ou=/",$base)){
368       $this->departments [ convert_department_dn($base) ] = ".";
369     }
371     foreach ($res as $key => $value){
373       /* Don't display base as entry on subsearch */
374       if(($value['dn'] == $base) && ($this->DivListDepartment->SubSearch)){
375         continue;
376       }
378       $cdn= convert_department_dn($value['dn']);
380       /* Append to dep list */
381       if(isset($value["description"][0])){
382         $this->departments[$cdn]= get_sub_department($cdn)." - [".$value["description"][0]."]";
383       }else{
384         $this->departments[$cdn]= get_sub_department($cdn);//$value["description"][0];
385       }
386     }
387     natcasesort ($this->departments);
388     reset ($this->departments);
389   }
391   function remove_from_parent()
392   {
393     $ldap= $this->config->get_ldap_link();
394     $ldap->cd ($this->dn);
395     $ldap->recursive_remove();
397     /* Optionally execute a command after we're done */
398     $this->postremove();
400     /* Delete references to object groups */
401     $ldap->cd ($this->config->current['BASE']);
402     $ldap->search ("(&(objectClass=gosaGroupOfNames)(member=".$this->dn."))", array("cn"));
403     while ($ldap->fetch()){
404       $og= new ogroup($this->config, $ldap->getDN());
405       unset($og->member[$this->dn]);
406       $og->save ();
407     }
409   }
411   function remove_lock()
412   {
413     if (isset($this->dn)){
414       del_lock ($this->dn);
415     }
416   }
418   function save_object()
419   {
420     /* reload department */
421     $this->config->get_departments();
423     $this->config->make_idepartments();
424     $this->DivListDepartment->config= $this->config;
425     $this->DivListDepartment->save_object();
426   }
429 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
430 ?>