Code

queue parameter modifcated
[gosa.git] / plugins / admin / systems / class_systemManagement.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_terminal.inc";
21 require "tabs_workstation.inc";
22 require "tabs_printers.inc";
23 require "tabs_phone.inc";
24 require "tabs_server.inc";
25 require "tabs_component.inc";
26 require "tabs_winstation.inc";
29 class systems extends plugin
30 {
31   /* Definitions */
32   var $plHeadline= "Systems";
33   var $plDescription= "This does something";
34   var $departments=array();
36   /* Dialog attributes */
37   var $systab= NULL;
38   var $terminals= array();
39   var $ui= NULL;
40   var $acl= "";
42   function systems ($config, $ui)
43   {
44     /* Save configuration for internal use */
45     $this->config= $config;
46     $this->ui= $ui;
48     /* Get global filter config */
49     if (!is_global("terminalfilter")){
50       $ui= get_userinfo();
51       $base= get_base_from_people($ui->dn);
52       $terminalfilter= array("workstations" => "checked",
53           "thins" => "checked",
54           "winstations" => "checked",
55           "servers" => "checked",
56           "printers" => "checked",
57           "phones" => "checked",
58           "netdev" => "checked",
59           "user" => "*",
60           "depselect" => $base,
61           "regex" => "*");
62       register_global("terminalfilter", $terminalfilter);
63     }
64   }
66   function execute()
67   {
68     /* Save data */
69     $terminalfilter= get_global("terminalfilter");
70     foreach( array("depselect", "user", "regex") as $type){
71       if (isset($_POST[$type])){
72         $terminalfilter[$type]= $_POST[$type];
73       }
74     }
75     if (isset($_POST['depselect'])){
76       foreach( array("workstations", "thins", "winstations", "printers", "phones", "servers", "netdev") as $type){
78         if (isset($_POST[$type])) {
79           $terminalfilter[$type]= "checked";
80         } else {
81           $terminalfilter[$type]= "";
82         }
83       }
84     }
85     if (isset($_GET['search'])){
86       $s= mb_substr($_GET['search'], 0, 1, "UTF8")."*";
87       if ($s == "**"){
88         $s= "*";
89       }
90       $terminalfilter['regex']= $s;
91     }
93     $terminalfilter   = get_global("terminalfilter"); // contains Filter Settings
94     $s_action     = "";                       // Contains the action to proceed
95     $s_entry      = "";                       // The value for s_action
96     $base_back    = "";                       // The Link for Backbutton
97     $smarty       = get_smarty();
99     /* Start for New List Managment */
100     if(isset($_GET['act'])&&($_GET['act']=="dep_open")){
101             $s_action="open";
102             $s_entry = base64_decode($_GET['dep_id']);
103             $terminalfilter['depselect']= "".$this->config->departments[trim($s_entry)];
104             $this->reload();
105     }
107     /* Test Posts */
108     foreach($_POST as $key => $val){
109       // Post for delete
110       if(preg_match("/user_del.*/",$key)){
111         $s_action = "del";
112         $s_entry  = preg_replace("/user_".$s_action."_/i","",$key);
113         // Post for edit
114       }elseif(preg_match("/user_edit_.*/",$key)){
115         $s_action="edit";
116         $s_entry  = preg_replace("/user_".$s_action."_/i","",$key);
117         // Post for new
118       }elseif(preg_match("/dep_back.*/i",$key)){
119         $s_action="back";
120       }elseif(preg_match("/user_new.*/",$key)){
121         $s_action="new";
122       }elseif(preg_match("/dep_home.*/i",$key)){
123         $s_action="home";
124       }elseif(preg_match("/user_tplnew.*/i",$key)){
125         $s_action="new_tpl";
126       }elseif(preg_match("/user_setpwd_.*/i",$key)){
127         $s_action="change_pw";
128         $s_entry  = preg_replace("/user_setpwd_/i","",$key);
129       }elseif(preg_match("/dep_root.*/i",$key)){
130         $s_action="root";
131       }elseif(preg_match("/newsystem_.*/i",$key)){
132         $s_action="newsystem";
133         $s_entry  = preg_replace("/newsystem_/i","",$key);
134       }
135     }
137      if((isset($_GET['act']))&&($_GET['act']=="edit_entry")){
138       $s_action ="edit";
139       $s_entry  = $_GET['id'];
140     }
142     $s_entry  = preg_replace("/_.$/","",$s_entry);
144     /* Department changed? */
145     if(isset($_POST['depselect']) && $_POST['depselect']){
146       $terminalfilter['depselect']= $_POST['depselect'];
147     }
149     /* Homebutton is posted */
150     if($s_action=="home"){
151       $terminalfilter['depselect']=(preg_replace("/^[^,]+,/","",$this->ui->dn));
152       $terminalfilter['depselect']=(preg_replace("/^[^,]+,/","",$terminalfilter['depselect']));
153     }
155     if($s_action=="root"){
156       $terminalfilter['depselect']=($this->config->current['BASE']);
157     }
160     /* If Backbutton is Posted */
161     if($s_action=="back"){
162       $base_back          = preg_replace("/^[^,]+,/","",$terminalfilter['depselect']);
163       $base_back          = convert_department_dn($base_back);
165       if(isset($this->config->departments[trim($base_back)])){
166         $terminalfilter['depselect']= $this->config->departments[trim($base_back)];
167       }else{
168         $terminalfilter['depselect']= $this->config->departments["/"];
169       }
170     }
172     register_global("terminalfilter", $terminalfilter);
173     $this->reload();
175     /* Check for exeeded sizelimit */
176     if (($message= check_sizelimit()) != ""){
177       return($message);
178     }
180     /* Try to get informations about what kind of system to create */
181     if ($s_action=="new") {
182       return ($smarty->fetch(get_template_path('chooser.tpl', TRUE)));
183     }
185     /* Create new default terminal */
186     if (isset($_POST['create_system'])||$s_action=="newsystem") {
187       $this->dn= "new";
188       $this->acl= array(":all");
190       if(isset($_POST['system'])){
191         $sw = $_POST['system'];
192       }else{
193         $sw = $s_entry;
194       }
196       switch ($sw){
197         case 'terminal':
198           $this->systab= new termtabs($this->config,
199               $this->config->data['TABS']['TERMTABS'], $this->dn);
200           $this->systab->set_acl ($this->acl);
201           $this->systab->by_object['termgeneric']->cn= "default";
202           $this->systab->by_object['termservice']->cn= "default";
203           break;
205         case 'workstation':
206           $this->systab= new worktabs($this->config,
207               $this->config->data['TABS']['WORKTABS'], $this->dn);
208           $this->systab->set_acl ($this->acl);
209           $this->systab->by_object['workgeneric']->cn= "wdefault";
210           $this->systab->by_object['termservice']->cn= "default";
211           break;
213         case 'server':
214           $this->systab= new servtabs($this->config,
215               $this->config->data['TABS']['SERVTABS'], $this->dn);
216           $this->systab->set_acl ($this->acl);
217           break;
219         case 'printer':
220           $this->systab= new printtabs($this->config,
221               $this->config->data['TABS']['PRINTTABS'], $this->dn);
222           $this->systab->set_acl ($this->acl);
223           break;
225         case 'phone':
226           $this->systab= new phonetabs($this->config,
227               $this->config->data['TABS']['PHONETABS'], $this->dn);
228           $this->systab->set_acl ($this->acl);
229           break;
231         case 'component':
232           $this->systab= new componenttabs($this->config,
233               $this->config->data['TABS']['COMPONENTTABS'], $this->dn);
234           $this->systab->set_acl ($this->acl);
235           break;
236       }
237     }
239     /* User wants to edit data? */
240     if ($s_action == "edit"){
242       /* Get 'dn' from posted 'cn', must be unique */
243       $this->dn= $this->terminals[$s_entry]['dn'];
245       /* Check locking, save current plugin in 'back_plugin', so
246          the dialog knows where to return. */
247       if (($user= get_lock($this->dn)) != ""){
248         return(gen_locked_message ($user, $this->dn));
249       }
251       /* Set up the users ACL's for this 'dn' */
252       $acl= get_permissions ($this->dn, $this->ui->subtreeACL);
254       /* Find out more about the object type */
255       $ldap= $this->config->get_ldap_link();
256       $ldap->cat($this->dn);
257       $attrs= $ldap->fetch();
258       $type= $this->get_system_type($attrs['objectClass']);
260       /* Lock the current entry, so everyone will get the
261          above dialog */
262       add_lock ($this->dn, $this->ui->dn);
264       switch ($type){
265         case "terminal":
266           /* Register systab to trigger edit dialog */
267           $this->systab= new termtabs($this->config,
268               $this->config->data['TABS']['TERMTABS'], $this->dn);
269           $this->systab->set_acl($acl);
270           $_SESSION['objectinfo']= $this->dn;
271           break;
273         case "server":
274           /* Register systab to trigger edit dialog */
275           $this->systab= new servtabs($this->config,
276               $this->config->data['TABS']['SERVTABS'], $this->dn);
277           $this->systab->set_acl($acl);
278           $_SESSION['objectinfo']= $this->dn;
279           break;
281         case "workstation":
282           /* Register systab to trigger edit dialog */
283           $this->systab= new worktabs($this->config,
284               $this->config->data['TABS']['WORKTABS'], $this->dn);
285           $this->systab->set_acl($acl);
286           $_SESSION['objectinfo']= $this->dn;
287           break;
289         case "printer":
290           /* Register systab to trigger edit dialog */
291           $this->systab= new printtabs($this->config,
292               $this->config->data['TABS']['PRINTTABS'], $this->dn);
293           $this->systab->set_acl($acl);
294           $_SESSION['objectinfo']= $this->dn;
295           break;
297         case "phone":
298           /* Register systab to trigger edit dialog */
299           $this->systab= new phonetabs($this->config,
300               $this->config->data['TABS']['PHONETABS'], $this->dn);
301           $this->systab->set_acl($acl);
302           $_SESSION['objectinfo']= $this->dn;
303           break;
305         case "component":
306           /* Register systab to trigger edit dialog */
307           $this->systab= new componenttabs($this->config,
308               $this->config->data['TABS']['COMPONENTTABS'], $this->dn);
309           $this->systab->set_acl($acl);
310           $_SESSION['objectinfo']= $this->dn;
311           break;
312        
313         case "winstation":
314           /* Register systab to trigger edit dialog */
315           $this->systab= new wintabs($this->config,
316               $this->config->data['TABS']['WINTABS'], $this->dn);
317           $this->systab->set_acl($acl);
318           $_SESSION['objectinfo']= $this->dn;
319           break;
322         default:
323           print_red (_("You can't edit this object type yet!"));
324           del_lock($this->dn);
325           break;
326       }
327     }
329     /* Set terminals root password */
330     if ($s_action=="change_pw"){
331       $this->dn= $this->terminals[$s_entry]['dn'];
332       $_SESSION['objectinfo']= $this->dn;
333       return ($smarty->fetch(get_template_path('password.tpl', TRUE)));
334     }
336     /* Correctly specified? */
337     if (isset($_POST['password_finish'])){
338       if ($_POST['new_password'] != $_POST['repeated_password']){
339         print_red (_("Passwords entered as new and repeated do not match!"));
340         return($smarty->fetch(get_template_path('password.tpl', TRUE)));
341       }
342     }
344     /* Change terminal password */
345     if (isset($_POST['password_finish']) && 
346         $_POST['new_password'] == $_POST['repeated_password']){
348       /* Check if user is allowed to set password */
349       $acl= get_permissions ($this->dn, $this->ui->subtreeACL);
350       $acl= get_module_permission($acl, "terminal", $this->dn);
351       if (chkacl($acl, "password") != ""){
352         print_red (_("You are not allowed to set this systems password!"));
353       } else {
354         $ldap= $this->config->get_ldap_link();
355         $ldap->cd($this->dn);
357         $attrs= array();
358         if ($_POST['new_password'] == ""){
359           $attrs['gotoRootPasswd']= array();
360         } else {
361           $attrs['gotoRootPasswd']= crypt($_POST['new_password'],
362               substr(session_id(),0,2));
363         }
364         $ldap->modify($attrs);
365         gosa_log ("Password for '".$this->dn."' has been changed");
366       }
367       unset($_SESSION['objectinfo']);
368     }
370     /* Delete terminal canceled? */
371     if (isset($_POST['delete_cancel']) || isset($_POST['password_cancel'])){
372       del_lock ($this->dn);
373       unset($_SESSION['objectinfo']);
374     }
376     /* Remove terminal was requested */
377     if ($s_action=="del"){
379       /* Get 'dn' from posted termlinst */
380       $this->dn= $this->terminals[$s_entry]['dn'];
382       /* Load permissions for selected 'dn' and check if
383          we're allowed to remove this 'dn' */
384       $acl= get_permissions ($this->dn, $this->ui->subtreeACL);
385       $this->acl= get_module_permission($acl, "terminal", $this->dn);
386       if (chkacl($this->acl, "delete") == ""){
388         /* Check locking, save current plugin in 'back_plugin', so
389            the dialog knows where to return. */
390         if (($user= get_lock($this->dn)) != ""){
391           return(gen_locked_message ($user, $this->dn));
392         }
394         /* Lock the current entry, so nobody will edit it during deletion */
395         add_lock ($this->dn, $this->ui->dn);
396         $smarty->assign("warning", sprintf(_("You're about to delete all information about the component at '%s'."), $this->dn));
397         return($smarty->fetch(get_template_path('remove.tpl', TRUE)));
398       } else {
400         /* Obviously the user isn't allowed to delete. Show message and
401            clean session. */
402         print_red (_("You are not allowed to delete this component!"));
403       }
404     }
406     /* Confirmation for deletion has been passed. Terminal should be deleted. */
407     if (isset($_POST['delete_terminal_confirm'])){
409       /* Some nice guy may send this as POST, so we've to check
410          for the permissions again. */
411       if (chkacl($this->acl, "delete") == ""){
413         /* Find out more about the object type */
414         $ldap= $this->config->get_ldap_link();
415         $ldap->cat($this->dn);
416         $attrs= $ldap->fetch();
417         $type= $this->get_system_type($attrs['objectClass']);
419         switch ($type){
420           case "terminal":
421             $tabtype= "termtabs";
422           break;
424           case "workstation":
425             $tabtype= "worktabs";
426           break;
427           
428           case "phone":
429             $tabtype= "phonetabs";
430           break;
432           case "server":
433             $tabtype= "servtabs";
434           break;
436           default:
437 #print_red (_("You can't remove this object type yet!"));
438 #del_lock($this->dn);
439 #return;
440           $tabtype= "termtabs";
441           break;
442         }
444         /* Delete request is permitted, perform LDAP action */
445         if($tabtype=="phonetabs"){
446           $this->systab= new $tabtype($this->config,
447              $this->config->data['TABS']['PHONETABS'], $this->dn);
448           $this->systab->set_acl(array($this->acl));
449           $this->systab->by_object['phonegeneric']->remove_from_parent ();
450         }else{  
451           $this->systab= new $tabtype($this->config,
452              $this->config->data['TABS']['TERMTABS'], $this->dn);
453           $this->systab->set_acl(array($this->acl));
454           $this->systab->by_object['termgeneric']->remove_from_parent ();
455         }
456         unset ($this->systab);
457         gosa_log ("System object'".$this->dn."' has been removed");
458         $this->systab= NULL;
460         /* Terminal list has changed, reload it. */
461         $this->reload ();
462       } else {
464         /* Normally this shouldn't be reached, send some extra
465            logs to notify the administrator */
466         print_red (_("You are not allowed to delete this component!"));
467         gosa_log ("Warning: '".$this->ui->uid."' tried to trick system ".
468             "deletion.");
469       }
471       /* Remove lock file after successfull deletion */
472       del_lock ($this->dn);
473     }
475     /* Finish user edit is triggered by the tabulator dialog, so
476        the user wants to save edited data. Check and save at this
477        point. */
478     if (isset($_POST['edit_finish'])){
480       /* Check tabs, will feed message array */
481       $message= $this->systab->check();
483       /* Save, or display error message? */
484       if (count($message) == 0){
486         /* Save terminal data to ldap */
487         gosa_log ("System object'".$this->dn."' has been saved");
488         $this->systab->save();
490         /* Terminal has been saved successfully, remove lock from
491            LDAP. */
492         if ($this->dn != "new"){
493           del_lock ($this->dn);
494         }
496         /* There's no page reload so we have to read new terminals at
497            this point. */
498         $this->reload ();
499         unset ($this->systab);
500         $this->systab= NULL;
501         unset($_SESSION['objectinfo']);
503       } else {
504         /* Ok. There seem to be errors regarding to the tab data,
505            show message and continue as usual. */
506         show_errors($message);
507       }
509     }
511     /* Cancel dialogs */
512     if (isset($_POST['edit_cancel']) || isset($_POST['password_cancel'])){
513       if (isset($this->systab)){
514         del_lock ($this->systab->dn);
515         unset ($this->systab);
516       }
517       $this->systab= NULL;
518       unset($_SESSION['objectinfo']);
519     }
521     /* Show tab dialog if object is present */
522     if ($this->systab){
523       $display= $this->systab->execute();
525       /* Don't show buttons if tab dialog requests this */
526       if (!$this->systab->by_object[$this->systab->current]->dialog){
527         $display.= "<p style=\"text-align:right\">\n";
528         $display.= "<input type=submit name=\"edit_finish\" value=\""._("Finish")."\">\n";
529         $display.= "&nbsp;\n";
530         $display.= "<input type=submit name=\"edit_cancel\" value=\""._("Cancel")."\">\n";
531         $display.= "</p>";
532       }
533       return ($display);
534     }
541     /* Prepare departments */
542     $options= "";
543     foreach ($this->config->idepartments as $key => $value){
544             if ($terminalfilter['depselect'] == $key){
545                     $options.= "<option selected value='$key'>$value</option>";
546             } else {
547                     $options.= "<option value='$key'>$value</option>";
548             }
549     }
552   /* NEW LIST MANAGMENT */
553     $listhead = "<div style='background:#F0F0F9;padding:5px;'>".
554     " <input type='image' align='middle' src='images/list_back.png' title='"._("Go up one department")."' alt='"._("Up")."' name='dep_back'>&nbsp;".
555     " <input type='image' src='images/list_root.png' align='middle' title='"._("Go to root department")."' name='dep_root' alt='"._("Root")."'>&nbsp;".
556     " <input type='image' align='middle' src='images/list_home.png' title='"._("Go to users department")."' alt='"._("Home")."'                     name='dep_home'>&nbsp;".
557     " <img src='images/list_seperator.png' align='middle' alt='' height='16' width='1'>&nbsp;".
558     " <input type='image' align='middle' src='images/select_terminal.png'   name='newsystem_terminal'    alt='"._("New Terminal")."' title='"._("New Terminal")."'>".
559     " <input type='image' align='middle' src='images/select_winstation.png' name='newsystem_workstation' alt='"._("New Workstation")."' title='"._("New Workstation")."'>".
560     " <input type='image' align='middle' src='images/select_server.png'     name='newsystem_server'      alt='"._("New Server")."' title='"._("New Server")."'>".
561     " <input type='image' align='middle' src='images/select_printer.png'    name='newsystem_printer'     alt='"._("New Printer")."' title='"._("New Printer")."'>".
562     " <input type='image' align='middle' src='images/select_phone.png'      name='newsystem_phone'       alt='"._("New Phone")."' title='"._("New Phone")."'>".
563     " <input type='image' align='middle' src='images/select_component.png'  name='newsystem_component'   alt='"._("New Component")."' title='"._("New Component")."'>".
564     " <img src='images/list_seperator.png' align='middle' alt='' height='16' width='1'>&nbsp;".
565     " <input type='image' align='middle' src='images/list_new_user.png' title='"._("Create new system")."' alt='"._("New system")."'                    name='user_new'>&nbsp;".
566     " <img src='images/list_seperator.png' align='middle' alt='' height='16' width='1'>&nbsp;".
567     _("Current base")."&nbsp;<select name='depselect' onChange='mainform.submit()'>$options</select>".
568     " <input type='image' src='images/list_submit.png' align='middle' title='"._("Submit department")."' name='submit_department' alt='".           _("Submit")."'>&nbsp;".
569     "</div>";
573     $action= "<input type='image' src='images/edit.png' alt='"._("edit")."'     name='user_edit_%KEY%' title='"._("Edit system")."'>";
574     $action.= "<input type='image' src='images/editdelete.png' alt='"._("delete")."'   name='user_del_%KEY%' title='"._("Delete system")."'>";
577     $divlist = new divlist("systemstab");
578     $divlist->SetHeader(array(
579           array("string" => "&nbsp;"),
580           array("string" => _("System")." / "._("Department")),
581           array("string" => _("Actions"), "attach" => "style='border:none'" )));
584     $divlist->SetSummary(_("This table displays all systems, in the selected tree."));
585     $divlist->SetEntriesPerPage(20);
587     // Defining Links
588     $linkopen = "<a href='?plug=".$_GET['plug']."&amp;act=dep_open&amp;dep_id=%s'>%s</a>";
590     foreach($this->departments as $key=> $val){
592       if(!isset($this->config->departments[trim($key)])){
593         $this->config->departments[trim($key)]="";
594       }
596       $non_empty="";
597       $keys= str_replace("/","\/",$key);
598       foreach($this->config->departments as $keyd=>$vald ){
599         if(preg_match("/".$keys."\/.*/",$keyd)){
600           $non_empty="full";
601         }
602       }
604       $field1 = array("string" => "<img src='images/".$non_empty."folder.png' alt='department'>");
605       $field2 = array("string" => sprintf($linkopen,base64_encode($key),$val));
606       $field3 = array("string" => "&nbsp;", "attach" => "style='border:none'");
607       $divlist->AddEntry(array($field1,$field2,$field3));
608     }
610     // Space
611     $empty    ="&nbsp;";
613     // User and Template  Images
614     $editlink = "<a href='?plug=".$_GET['plug']."&amp;id=%s&amp;act=edit_entry'>%s</a>";
616     // Pictures for Extensions
617     $img1  = "<img src='images/printer.png'            alt='C' title='"._("Cups Server")  ."'>";
618     $img2  = "<img src='images/scanner.png'            alt='L' title='"._("Log Db") ."'>";
619     $img3  = "<img src='images/select_terminal.png'    alt='L' title='"._("Syslog Server") ."'>";
620     $img4  = "<img src='images/mailto.png'             alt='M' title='"._("Mail Server")  ."'>";
621     $img5  = "<img src='images/select_phone.png'       alt='I' title='"._("Imap Server") ."'>";
622     $img6  = "<img src='images/fax_small.png'          alt='F' title='"._("Nfs Server")   ."'>";
623     $img7  = "<img src='images/select_winstation.png'  alt='K' title='"._("Kerberos Server") ."'>";
624     $img8  = "<img src='images/select_phone.png'       alt='A' title='"._("Asterisk Server") ."'>";
625     $img9  = "<img src='images/fax_small.png'          alt='F' title='"._("Fax Server") ."'>";
626     $img10 = "<img src='images/save.png'               alt='L' title='"._("Ldap Server") ."'>";
628     // Test Every Entry and generate divlist Array
629     foreach($this->terminals as $key => $val){
630       // Specify Pics for Extensions
631       if(in_array("goCupsServer"    ,$val['objectClass'])) $cups    = $img1;   else $cups  =$empty;
632       if(in_array("goLogDBServer"   ,$val['objectClass'])) $logdb   = $img2;   else $logdb =$empty;
633       if(in_array("goSyslogServer"  ,$val['objectClass'])) $syslog  = $img3;   else $syslog=$empty;
634       if(in_array("goImapServer"    ,$val['objectClass'])) $imap    = $img4;   else $imap  =$empty;
635       if(in_array("sambaSamAccount" ,$val['objectClass'])) $samba   = $img5;   else $samba =$empty;
636       if(in_array("goNfsServer"     ,$val['objectClass'])) $nfs     = $img6;   else $nfs   =$empty;
637       if(in_array("goKrbServer"     ,$val['objectClass'])) $krb     = $img7;   else $krb   =$empty;
638       if(in_array("goFonServer"     ,$val['objectClass'])) $fon     = $img8;   else $fon   =$empty;
639       if(in_array("goFaxServer"     ,$val['objectClass'])) $fax     = $img9;   else $fax   =$empty;
640       if(in_array("goLdapServer"    ,$val['objectClass'])) $ldap     = $img10;   else $ldap   =$empty;
641   
642       $pics = $cups.$logdb.$syslog.$imap.$samba.$nfs.$krb.$fon.$fax.$ldap;
643       $pics = "";
644       // Generate Array to Add
645       if((isset($val['is_new']))&&(!empty($val['is_new']))){
646         $display= "".$val["cn"][0]." ".$val['is_new'];
647       }else{
648         $display= "".$val["cn"][0]."";
649       }
651       if(in_array("gotoTerminal",$val['objectClass'])){
652         $action2 = "<input type='image' src='images/certs.png' alt='"._("Password")."'   name='user_setpwd_%KEY%' title='"._("Set root password")."'>";
653       }else{
654         $action2 = "";
655       }
658       if(isset($val['message'])){
659         $display.= "  (".$val['message']." '".$this->config->idepartments[$terminalfilter['depselect']]."'  )";
660       }
662       $img=$this->convert_list($val);
664       $field1 = array("string" => sprintf($img['img'],$val['dn']),"attach"=>"style='width:20px;align:middle;'");
665       $field2 = array("string" => sprintf($editlink,$key,$display),"attach"=>"title='".$val['dn']."'");
666       $field3 = array("string" => preg_replace("/%KEY%/", "$key", $action2.$action),"attach" => "style='border:none; text-align:right;width:48px'");
667       $divlist->AddEntry( array($field1,$field2,$field3));
668     }
674     /* Show main page */
675     $smarty->assign("terminalshead", $listhead);
676     $smarty->assign("terminals", $divlist->DrawList());
677     $smarty->assign("search_image", get_template_path('images/search.png'));
678     $smarty->assign("tree_image", get_template_path('images/tree.png'));
679     $smarty->assign("infoimage", get_template_path('images/info.png'));
680     $smarty->assign("launchimage", get_template_path('images/launch.png'));
681     foreach( array("depselect", "user", "regex", "workstations", "thins", "servers",
682           "winstations", "printers", "phones", "netdev") as $type){
684       $smarty->assign("$type", $terminalfilter[$type]);
685     }
686     $smarty->assign("deplist", $this->config->idepartments);
688     /* Extend if we are not using javascript */
689     $smarty->assign("apply", apply_filter());
690     $smarty->assign("alphabet", generate_alphabet());
691     $smarty->assign("hint", print_sizelimit_warning());
693     return($smarty->fetch(get_template_path('headpage.tpl', TRUE)));
694   }
697   function convert_list($input)
698   {
699     $temp= "";
700     $conv= array(       
701         "D" => array("select_default.png",_("Template")),
702         "T" => array("select_terminal.png",_("Terminal")),
703         "L" => array("select_workstation.png",_("Workstation")),
704         "F" => array("select_phone.png",_("Phone")),
705         "S" => array("select_server.png",_("Server")),
706         "NT"=> array("select_new_terminal.png",_("New Terminal")),
707         "NL"=> array("select_new_workstation.png",_("New Workstation")),
708         "W" => array("select_winstation.png",_("Winstation")),
709         "C" => array("select_component.png",_("Network Device")),
710         "P" => array("select_printer.png",_("Printer")));
712    if((isset($input['is_new']))&&(!empty($input['is_new']))){
713      $input['type']="N".$input['type'];
714    }
715    foreach ($conv  as $key => $value){
716       if($input['type']==$key){
717         $tmp['img'] ="<img src='images/".$value[0]."' alt='".$key."' title='".$value['1']."'>";
718         $tmp['class']=$key;
719         return $tmp;
720       }
721     }
722   }
724   function remove_from_parent()
725   {
726     /* Optionally execute a command after we're done */
727     $this->postremove();
728   }
731   /* Save data to object */
732   function save_object()
733   {
734   }
737   /* Check values */
738   function check()
739   {
740   }
743   /* Save to LDAP */
744   function save()
745   {
746   }
748   function adapt_from_template($dn)
749   {
750   }
752   function password_change_needed()
753   {
754   }
756   function show_header($button_text, $text, $disabled= FALSE)
757   {
758   }
760   function reload()
761   {
762     /* Load terminal shortcuts */
763     $responsible= array();
764     foreach ($this->config->departments as $key => $value){
765       if (get_module_permission(get_permissions ($value, $this->ui->subtreeACL),
766             "terminal", $value) == "#all#"){
767         $responsible[$key]= $value;
768       }
769     }
771     /* Get config */
772     $terminalfilter= get_global('terminalfilter');
773     $filter= "";
775     /* Set base for all searches */
776     $base= $terminalfilter['depselect'];
778     /* Regex filter? */
779     if ($terminalfilter['regex'] != ""){
780       $regex= $terminalfilter['regex'];
781     } else {
782       $regex= "*";
783     }
785     /* Get list of terminals to be shown */
786     if ($terminalfilter['thins'] == "checked"){
787       $termfilter= "(&(objectClass=gotoTerminal)(cn=$regex))";
788     } else {
789       $termfilter= "";
790     }
791     if ($terminalfilter['workstations'] == "checked"){
792       $workfilter= "(&(objectClass=gotoWorkstation)(cn=$regex))";
793     } else {
794       $workfilter= "";
795     }
796     if ($terminalfilter['winstations'] == "checked"){
797       if ($this->config->current['SAMBAVERSION'] == "3"){
798         $samba= "sambaSamAccount";
799       } else {
800         $samba= "sambaAccount";
801       }
802       $winfilter= "(&(objectClass=$samba)(cn=$regex\$))";
803     } else {
804       $winfilter= "";
805     }
806     if ($terminalfilter['printers'] == "checked"){
807       $printfilter= "(&(objectClass=gotoPrinter)(cn=$regex))";
808     } else {
809       $printfilter= "";
810     }
811     if ($terminalfilter['phones'] == "checked"){
812       $phonefilter= "(&(objectClass=goFonHardware)(cn=$regex))";
813     } else {
814       $phonefilter= "";
815     }
816     if ($terminalfilter['netdev'] == "checked"){
817       $netfilter= "(&(objectClass=ieee802Device)(cn=$regex))";
818     } else {
819       $netfilter= "";
820     }
821     if ($terminalfilter['servers'] == "checked"){
822       $serverfilter= "(&(objectClass=goServer)(cn=$regex))";
823     } else {
824       $serverfilter= "";
825     }
827     /* User filter? */
828     if ($terminalfilter['user'] != "" && $terminalfilter['user'] != "*"){
829       $filter.= "(gotoLastUser=".$terminalfilter['user'].")";
830     }
832     /* Get all gotoTerminal's */
833     $this->terminals= array();
835     $res= get_list($this->ui->subtreeACL, "(|$termfilter$workfilter$winfilter$printfilter$phonefilter$serverfilter$netfilter)", TRUE, $base, array("cn", "description", "macAddress", "objectClass", "sambaDomainName"), TRUE);
837       
838     /* NEW LIST MANAGMENT
839      * We also need to search for the departments
840      * So we are able to navigate like in konquerer
841      */
842     $base2 = preg_replace("/ou=people,/i","",$base);
844     $res3 =  get_list2($this->ui->subtreeACL, "(&(|(ou=$regex)(description=$regex))(objectClass=gosaDepartment))",
845                               TRUE, $base2, array("ou", "description"), TRUE);
847     $this->departments= array();
848     $tmp = array();
849     foreach ($res3 as $value){
850       $tmp[strtolower($value['dn']).$value['dn']]=$value;
851     }
852     ksort($tmp);
853     foreach($tmp as $value){
854       if($value["description"][0]!=".."){
855         $this->departments[$value['dn']]=convert_department_dn2($value['dn'])." - [".$value["description"][0]."]";
856       }else{
857         $this->departments[$value['dn']]=$value["description"][0];
858       }
859     }
861     /* END NEW LIST MANAGMENT
862      */
865     foreach ($res as $value){
867       /* Look for new terminals and mark them with '+' */
868       $tmp= "";
869       if (preg_match('/,ou=terminals,ou=systems,/i', $value["dn"])){
870         $tmp= preg_replace("/^[^,]+,[^o]*ou=terminals,ou=systems,/i", "", $value["dn"]);
871       }
872       if (preg_match('/,ou=workstations,ou=systems,/i', $value["dn"])){
873         $tmp= preg_replace("/^[^,]+,[^o]*ou=workstations,ou=systems,/i", "", $value["dn"]);
874       }
875       if (preg_match('/,ou=servers,ou=systems,/i', $value["dn"])){
876         $tmp= preg_replace("/^[^,]+,[^o]*ou=servers,ou=systems,/i", "", $value["dn"]);
877       }
878       if (preg_match('/,'.get_winstations_ou().'/i', $value["dn"])){
879         $tmp= preg_replace("/^[^,]+,[^o]*".get_winstations_ou()."/i", "", $value["dn"]);
880       }
881       if (preg_match('/,ou=printers,ou=systems,/i', $value["dn"])){
882         $tmp= preg_replace("/^[^,]+,[^o]*ou=printers,ou=systems,/i", "", $value["dn"]);
883       }
884       if (preg_match('/,ou=phones,ou=systems,/i', $value["dn"])){
885         $tmp= preg_replace("/^[^,]+,[^o]*ou=phones,ou=systems,/i", "", $value["dn"]);
886       }
887       if (preg_match('/,ou=netdevices,ou=systems,/i', $value["dn"])){
888         $tmp= preg_replace("/^[^,]+,[^o]*ou=netdevices,ou=systems,/i", "", $value["dn"]);
889       }
890       if ($tmp == ""){
891         $tmp= $value["dn"];
892       }
893       if (preg_match ("/,ou=incoming,/i", $tmp)){
894         if (in_array('gotoTerminal', $value['objectClass'])){
895           $add= "+ "._("New terminal");
896         }
897         if (in_array('gotoWorkstation', $value['objectClass'])){
898           $add= "+ "._("New workstation");
899         }
900       } else {
901         $add= "";
902       }
904       $terminal = array();
905   
906       if (in_array ($tmp, $responsible) || $add != ""){
907         if (in_array('gotoTerminal', $value["objectClass"])){
908           if (isset($value["macAddress"][0]) && $value["macAddress"][0] != "-"){
909             $terminal             = $value;
910             $terminal['type']     = "T";
911             $terminal['is_new']   = $add;
912           } else {
913             $terminal             = $value;
914             $terminal['type']     = "D";
915             $terminal['message']  = _("Terminal template for");
916             $terminal['location'] = array_search($tmp, $this->config->departments); 
917           }
918         } elseif (in_array('gotoWorkstation', $value["objectClass"])){
919           if (isset($value["macAddress"][0]) &&  $value["macAddress"][0] != "-"){
920             $terminal             = $value;
921             $terminal['type']     = "L";
922           } else {
923             $terminal             = $value;
924             $terminal['type']     = "D";
925             $terminal['location'] = array_search($tmp, $this->config->departments);
926             $terminal['message']  = _("Workstation template for");
927           }
928         } elseif (in_array('gotoPrinter', $value["objectClass"])){
929             $terminal             = $value;
930             $terminal['type']     = "P";
931         } elseif (in_array('goServer', $value["objectClass"])){
932             $terminal             = $value;
933             $terminal['type']     = "S";
934         } elseif (in_array('goFonHardware', $value["objectClass"])){
935             $terminal             = $value;
936             $terminal['type']     = "F";
937         } elseif (in_array('ieee802Device', $value["objectClass"])){
938             $terminal             = $value;
939             $terminal['type']     = "C";
940         } else{
941           $name= preg_replace('/\$$/', '', $value['cn'][0]);
942           if (isset($value['sambaDomainName'])){
943             $domain= " [".$value['sambaDomainName'][0]."]";
944           } else {
945             $domain= "";
946           }
947             $terminal=$value;
948             $terminal['type']     ="W";
949             $terminal['domain']   = $name.$domain;
950         }
951       $this->terminals[]=$terminal;
952       }
953     }
955     $tmp=array();
956     foreach($this->terminals as $tkey => $val ){
957       $tmp[strtolower($val['cn'][0]).$val['cn'][0]]=$val;
958     }
959     ksort($tmp);
960     $this->terminals=array();
961     foreach($tmp as $val){
962       $this->terminals[]=$val;
963     }
964     reset ($this->terminals);
965   }
967   function remove_lock()
968   {
969     if (isset($this->systab->dn)){
970       del_lock ($this->systab->dn);
971     }
972   }
975   function get_system_type($classes)
976   {
977     $type= "";
979     if (in_array('ieee802Device', $classes)){
980       $type= "component";
981     }
982     if (in_array('gotoTerminal', $classes)){
983       $type= "terminal";
984     }
985     if (in_array('gotoWorkstation', $classes)){
986       $type= "workstation";
987     }
988     if (in_array('gotoPrinter', $classes)){
989       $type= "printer";
990     }
991     if (in_array('goFonHardware', $classes)){
992       $type= "phone";
993     }
994     if (in_array('goServer', $classes)){
995       $type= "server";
996     }
997     if (in_array('sambaAccount', $classes) ||
998         in_array('sambaSamAccount', $classes)){
999       $type= "winstation";
1000     }
1002     return ($type);
1003   }
1007 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
1008 ?>