Code

Updated dhcp handling
[gosa.git] / plugins / admin / departments / class_departmentGeneric.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  */
21 class department extends plugin
22 {
23         /* department attributes */
24         var $ou= "";
25         var $description= "";
26         var $base= "";
27         var $st= "";
28         var $l= "";
29         var $postalAddress= "";
30         var $businessCategory= "";
31         var $telephoneNumber= "";
32         var $facsimileTelephoneNumber= "";
33         var $orig_dn= "";
34         var $is_administrational_unit= false;
35         var $gosaUnitTag= "";
37         var $rec_dst=false;     // Destination for recursive move
38         var $rec_src=false;     // Source for recursive move 
39         var $rec_cpy=false;     // Is recursive move requested ? 
41         /* Headpage attributes */
42         var $last_dep_sorting= "invalid";
43         var $departments= array();
45   var $must_be_tagged = false;
47         /* attribute list for save action */
48         var $attributes= array("ou", "description", "businessCategory", "st", "l", "postalAddress",
49                         "telephoneNumber", "facsimileTelephoneNumber", "gosaUnitTag");
50         var $objectclasses= array("top", "gosaDepartment", "organizationalUnit");
52         function department ($config, $dn)
53         {
55                 plugin::plugin($config, $dn);
56                 $this->is_account= TRUE;
57                 $this->ui= get_userinfo();
58                 $this->dn= $dn;
59                 $this->orig_dn= $dn;
60                 $this->config= $config;
62                 /* Set base */
63                 if ($this->dn == "new"){
64                         $ui= get_userinfo();
65                         if(isset($_SESSION['CurrentMainBase'])){
66                                 $this->base= $_SESSION['CurrentMainBase'];
67                         }else{
68                                 $this->base= dn2base($ui->dn);
69                         }
70                 } else {
71                         $this->base= preg_replace ("/^[^,]+,/", "", $this->dn);
72                 }
74                 /* set permissions */
75                 $ui= get_userinfo();
76                 $acl= get_permissions ($ui->dn, $ui->subtreeACL);
77                 $this->acl= get_module_permission($acl, "department", $ui->dn);
79                 /* Is administrational Unit? */
80                 if ($dn != "new" && in_array_ics('gosaAdministrativeUnit', $this->attrs['objectClass'])){
81                         $this->is_administrational_unit= true;
82                 }
83         }
85         function execute()
86         {
87                 /* Call parent execute */
88                 plugin::execute();
90                 /* Reload departments */
91                 $this->config->get_departments($this->dn);
92                 $this->config->make_idepartments();
93                 $smarty= get_smarty();
95                 /* Base select dialog */
96                 $once = true;
97                 foreach($_POST as $name => $value){
98                         if(preg_match("/^chooseBase/",$name) && $once){
99                                 $once = false;
100                                 $this->dialog = new baseSelectDialog($this->config);
101                                 $this->dialog->setCurrentBase($this->base);
102                         }
103                 }
105                 /* Dialog handling */
106                 if(is_object($this->dialog)){
107                         /* Must be called before save_object */
108                         $this->dialog->save_object();
110                         if($this->dialog->isClosed()){
111                                 $this->dialog = false;
112                         }elseif($this->dialog->isSelected()){
113                                 $this->base = $this->dialog->isSelected();
114                                 $this->dialog= false;
115                         }else{
116                                 return($this->dialog->execute());
117                         }
118                 }
120                 /* Hide all departments, that are subtrees of this department */
121                 $bases  = $this->config->idepartments;
122                 if(($this->dn == "new")||($this->dn == "")){
123                         $tmp = $bases;
124                 }else{
125                         $tmp    = array();      
126                         foreach($bases as $dn=>$base){
127                                 $fixed = str_replace("/","\\",$this->dn);
128                                 /* Only attach departments which are not a subtree of this one */
129                                 if(!preg_match("/".$fixed."/",$dn)){
130                                         $tmp[$dn]=$base;
131                                 }
132                         }
133                 }
134                 $smarty->assign("bases", $tmp);
136                 foreach ($this->attributes as $val){
137                         $smarty->assign("$val", $this->$val);
138                         $smarty->assign("$val"."ACL", chkacl($this->acl, "$val"));
139                 }
140     $smarty->assign("baseACL", chkacl($this->acl,"base"));
141                 $smarty->assign("base_select", $this->base);
143                 /* Set admin unit flag */
144                 if ($this->is_administrational_unit) {
145                         $smarty->assign("unitTag", "checked");
146                 } else {
147                         $smarty->assign("unitTag", "");
148                 }
149                 $smarty->assign("unitTag"."ACL", chkacl($this->acl, "unitTag"));
151                 return($smarty->fetch (get_template_path('generic.tpl', TRUE)));
152         }
154         function clear_fields()
155         {
156                 $this->dn= "";
157                 $this->base= "";
158                 $this->acl= "#none#";
160                 foreach ($this->attributes as $val){
161                         $this->$val= "";
162                 }
163         }
165         function remove_from_parent()
166         {
167                 $ldap= $this->config->get_ldap_link();
168                 $ldap->cd ($this->dn);
169                 $ldap->recursive_remove();
170                 show_ldap_error($ldap->get_error(), _("Removing department failed"));
172                 /* Optionally execute a command after we're done */
173                 $this->handle_post_events('remove');
174         }
176         function must_be_tagged()
177         {
178                 return $this->must_be_tagged;
179         }
181         function am_i_moved()
182         {
183                 return $this->rec_cpy;
184         }
187         /* Save data to object */
188         function save_object()
189         {
190                 if (isset($_POST['base'])){
191                         plugin::save_object();
193                         /* Save base, since this is no LDAP attribute */
194                         if (chkacl($this->acl, "create") == ""){
195                                 $this->base= $_POST['base'];
196                         }
198                         /* Save tagging flag */
199                         if (chkacl($this->acl, "unitTag") == ""){
200                                 if (isset($_POST['unitTag'])){
201                                         $this->is_administrational_unit= true;
202                                 } else {
203                                         $this->is_administrational_unit= false;
204                                 }
205                         }
206                 }
207         }
210         /* Check values */
211         function check()
212         {
213                 /* Call common method to give check the hook */
214                 $message= plugin::check();
216                 /* Permissions for that base? */
217                 if (chkacl($this->acl, "create") != ""){
218                         $message[]= _("You have no permissions to create a department on this 'Base'.");
219                 }
221                 /* Check for presence of this department */
222                 $ldap= $this->config->get_ldap_link();
223     $ldap->ls ("(&(ou=".$this->ou.")(objectClass=organizationalUnit))", $this->base, array('dn'));
224     if ($this->orig_dn == "new" && $ldap->count()){
225                         $message[]= _("Department with that 'Name' already exists.");
226                 } elseif ($this->orig_dn != $this->dn && !($attrs === FALSE)){
227                         $message[]= _("Department with that 'Name' already exists.");
228                 }
230                 /* All required fields are set? */
231                 if ($this->ou == ""){
232                         $message[]= _("Required field 'Name' is not set.");
233                 }
234                 if ($this->description == ""){
235                         $message[]= _("Required field 'Description' is not set.");
236                 }
238     if(is_department_name_reserved($this->ou,$this->base)){
239       $message[]= sprintf(_("The field 'Name' contains the reserved word '%s'. Please choose another name."),$this->ou);
240     }
242                 if (preg_match ('/["+>\\\\]/', $this->ou)){
243                         $message[]= _("The field 'Name' contains invalid characters.");
244                 }
245                 if (!is_phone_nr($this->telephoneNumber)){
246                         $message[]= _("The field 'Phone' contains an invalid phone number.");
247                 }
248                 if (!is_phone_nr($this->facsimileTelephoneNumber)){
249                         $message[]= _("The field 'Fax' contains an invalid phone number.");
250                 }
252                 return $message;
253         }
256         /* Save to LDAP */
257         function save()
258         {
259                 $ldap= $this->config->get_ldap_link();
261                 /* Add tag objects if needed */
262                 if ($this->is_administrational_unit){
263       if(!in_array_ics("gosaAdministrativeUnit",$this->objectclasses)){
264                         $this->objectclasses[]= "gosaAdministrativeUnit";
265                           $this->gosaUnitTag= "";
266       }
268                         if ($this->gosaUnitTag == ""){
270                                 /* It's unlikely, but check if already used... */
271                                 $try= 5;
272                                 $ldap->cd($this->config->current['BASE']);
273                                 while ($try--){
275                                         /* Generate microtime stamp as tag */
276                                         list($usec, $sec)= explode(" ", microtime());
277                                         $time_stamp= preg_replace("/\./", "", $sec.$usec);
279                                         $ldap->search("(&(objectClass=gosaAdministrativeUnit)(gosaUnitTag=$time_stamp))",array("gosaUnitTag"));
280                                         if ($ldap->count() == 0){
281                                                 break;
282                                         }
283                                 }
284                                 if($try == 0) {
285                                         print_red(_("Fatal error: Can't find an unused tag to mark the administrative unit!"));
286                                         return;
287                                 }
288                                 $this->gosaUnitTag= preg_replace("/\./", "", $sec.$usec);
289                         }
290                 }
292                 plugin::save();
294                 /* Remove tag information if needed */
295                 if (!$this->is_administrational_unit){
296                         $tmp= array();
298                         /* Remove gosaAdministrativeUnit from this plugin */
299       $has_unit_tag= false;
300                         foreach($this->attrs['objectClass'] as $oc){
301                                 if (!preg_match("/^gosaAdministrativeUnit$/i", $oc)){
302                                         $tmp[]= $oc;
303                                 }
304                                 if (preg_match("/^gosaAdministrativeUnitTag$/i", $oc)){
305                                         $has_unit_tag= true;
306                                 }
307                         }
308                         $this->attrs['objectClass']= $tmp;
310                         if(!$has_unit_tag && isset($this->attrs['gosaUnitTag'])){
311                                 $this->attrs['gosaUnitTag']= array();
312                         }
313                 }
315                 /* Write back to ldap */
316                 $ldap= $this->config->get_ldap_link();
317                 $ldap->cat($this->dn, array('dn'));
318                 $a= $ldap->fetch();
319                 $ldap->cd($this->dn);
321                 if (count($a)){
322                         $this->cleanup();
323                         $ldap->modify ($this->attrs); 
325                         $this->handle_post_events('modify');
326                 } else {
327                         $ldap->add($this->attrs);
328                         $this->handle_post_events('add');
329                 }
330                 show_ldap_error($ldap->get_error(), _("Saving department failed"));
332     /* The parameter forces only to set must_be_tagged, and don't touch any objects 
333         This will be done later */
334     $this->tag_objects(true);
336     /* Fix tagging if needed */
337     if (!$this->is_administrational_unit){
338       $this->handle_object_tagging();
339     }
340     
341     /* Optionally execute a command after we're done */
342                 $this->postcreate();
343     return(true);
344         }
347   function ShowMoveFrame()
348   {
349     $smarty = get_smarty();
350     $smarty->assign("src","?plug=".$_GET['plug']."&amp;PerformRecMove");
351     $smarty->assign("message","As soon as the move operation has finished, you can scroll down to end of the page and press the 'Continue' button to continue with the department management dialog.");
352     $display=  $smarty->fetch(get_template_path("dep_iframe.tpl",TRUE));
353     return($display);
354   }
356   function ShowTagFrame()
357   {
358     $smarty = get_smarty();
359     $smarty->assign("src","?plug=".$_GET['plug']."&amp;TagDepartment");
360     $smarty->assign("message","As soon as the tag operation has finished, you can scroll down to end of the page and press the 'Continue' button to continue with the department management dialog.");
361     $display=  $smarty->fetch(get_template_path("dep_iframe.tpl",TRUE));
362     return($display);
363   }
365         /* Tag objects to have the gosaAdministrativeUnitTag */
366         function tag_objects($OnlySetTagFlag = false)
367         {
368     if(!$OnlySetTagFlag){
369       $smarty= get_smarty();
371       /* Print out html introduction */
372       echo '  <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
373         <html>
374         <head>
375         <title></title>
376         <style type="text/css">@import url("themes/default/style.css");</style>
377         <script language="javascript" src="include/focus.js" type="text/javascript"></script>
378         </head>
379         <body style="background-image:none;margin:3px;color:black" id="body" >
380         ';
382       echo "<h3>".sprintf(_("Tagging '%s'."),"<i>".@LDAP::fix($this->dn)."</i>")."</h3>";
383     }
385                 $add= $this->is_administrational_unit;
386                 $len= strlen($this->dn);
387                 $ldap= $this->config->get_ldap_link();
388                 $ldap->cd($this->dn);
389                 if ($add){
390                         $ldap->search('(!(&(objectClass=gosaAdministrativeUnitTag)(gosaUnitTag='.
391                                                                 $this->gosaUnitTag.')))', array('dn'));
392                 } else {
393                         $ldap->search('objectClass=gosaAdministrativeUnitTag', array('dn'));
394                 }
396                 while ($attrs= $ldap->fetch()){
398                         /* Skip self */
399                         if ($attrs['dn'] == $this->dn){
400                                 continue;
401                         }
403                         /* Check for confilicting administrative units */
404                         $fix= true;
405                         foreach ($this->config->adepartments as $key => $tag){
406                                 /* This one is shorter than our dn, its not relevant... */
407                                 if ($len >= strlen($key)){
408                                         continue;
409                                 }
411                                 /* This one matches with the latter part. Break and don't fix this entry */
412                                 if (preg_match('/(^|,)'.normalizePreg($key).'$/', $attrs['dn'])){
413                                         $fix= false;
414                                         break;
415                                 }
416                         }
418       /* Fix entry if needed */
419       if ($fix){
420         if($OnlySetTagFlag){
421           $this->must_be_tagged =true;
422           return;
423         }
424                                 $this->handle_object_tagging($attrs['dn'], $this->gosaUnitTag, TRUE );
425         echo "<script language=\"javascript\" type=\"text/javascript\">scrollDown2();</script>" ;
426                         }
427                 }
428     if(!$OnlySetTagFlag){
429       echo '<p class="seperator">&nbsp;</p>';
430       echo "<div style='width:100%;text-align:right;'><form name='form' method='post' action='?plug=".$_GET['plug']."' target='_parent'>
431         <br><input type='submit' name='back' value='"._("Continue")."'>
432         </form></div>";
433     }
434         }
437         /* Move/Rename complete trees */
438         function recursive_move($src_dn, $dst_dn,$force = false)
439         {
440     /* If force == false prepare to recursive move this object from src to dst 
441         on the next call. */
442                 if(!$force){
443                         $this->rec_cpy  = true;
444                         $this->rec_src  = $src_dn;
445                         $this->rec_dst  = $dst_dn;
446                 }else{
448       /* If this is called, but not wanted, abort */
449                         if(!$this->rec_cpy){ 
450                                 return;
451                         }
453                         $src_dn = $this->rec_src;
454                         $dst_dn = $this->rec_dst;
456                         /* Print header to have styles included */
457                         $smarty= get_smarty();
459       /* Print out html introduction */
460       echo '  <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
461         <html>
462         <head>
463         <title></title>
464         <style type="text/css">@import url("themes/default/style.css");</style>
465         <script language="javascript" src="include/focus.js" type="text/javascript"></script>
466         </head>
467         <body style="background: none; margin:4px;" id="body" >
468         ';
470                         echo "<h3>".sprintf(_("Moving '%s' to '%s'"),"<i>".@LDAP::fix($src_dn)."</i>","<i>".@LDAP::fix($dst_dn)."</i>")."</h3>";
472                         /* Check if the destination entry exists */
473                         $ldap= $this->config->get_ldap_link();
475                         /* Check if destination exists - abort */
476                         $ldap->cat($dst_dn, array('dn'));
477                         if ($ldap->fetch()){
478                                 trigger_error("Recursive_move ".@LDAP::fix($dst_dn)." already exists.",
479                                                 E_USER_WARNING);
480                                 echo sprintf("Recursive_move: '%s' already exists", @LDAP::fix($dst_dn))."<br>"; 
481                                 return (FALSE);
482                         }
484                         /* Perform a search for all objects to be moved */
485                         $objects= array();
486                         $ldap->cd($src_dn);
487                         $ldap->search("(objectClass=*)", array("dn"));
488                         while($attrs= $ldap->fetch()){
489                                 $dn= $attrs['dn'];
490                                 $objects[$dn]= strlen($dn);
491                         }
493                         /* Sort objects by indent level */
494                         asort($objects);
495                         reset($objects);
497                         /* Copy objects from small to big indent levels by replacing src_dn by dst_dn */
498                         foreach ($objects as $object => $len){
499                                 $src= str_replace("\\","\\\\",$object);
500                                 $dst= preg_replace("/".str_replace("\\","\\\\",$src_dn)."$/", "$dst_dn", $object);
501                                 $dst= str_replace($src_dn,$dst_dn,$object);
503                                 echo "<b>"._("Object").":</b> ".@LDAP::fix($src)."<br>";
505         if (!$this->copy($src, $dst)){
506                                         echo "<font color='#FF0000'><br>".sprintf(_("FAILED to copy %s, aborting operation"),@LDAP::fix($src))."</font>";
507                                         return (FALSE);
508                                 }
510         echo "<script language=\"javascript\" type=\"text/javascript\">scrollDown2();</script>" ;
511                                 flush();
512                         }
514                         /* Remove src_dn */
515                         $ldap->cd($src_dn);
516                         $ldap->recursive_remove();
517                         $this->rec_src = $this->rec_dst = "";
518                         $this->rec_cpy =false;
520                         echo '<p class="seperator">&nbsp;</p>';
522                         echo "<div style='width:100%;text-align:right;'><form name='form' method='post' action='?plug=".$_GET['plug']."' target='_parent'>
523                                 <br><input type='submit' name='back' value='"._("Continue")."'>
524                                 </form></div>";
526       echo "<script language=\"javascript\" type=\"text/javascript\">scrollDown2();</script>" ;
527                         echo "</body></html>";
529                         return (TRUE);
530                 }
531         }
533 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
534 ?>