Code

Added a first set of reference changes - nearly untested
[gosa.git] / plugins / admin / systems / class_divListSystem.inc
1 <?php
3 class divListSystem extends MultiSelectWindow
4 {
6   /* Current base */
7   var $selectedBase       = "";
8   var $departments        = array();
10   /* Regex */
11   var $Regex              = "*";
12   var $UserRegex          = "*";
14   /* CheckBoxes, to change default values modify $this->AddCheckBox */
15   var $ShowServers;
16   var $ShowTerminals;
17   var $ShowWorkstations;
18   var $ShowWinWorkstations;
19   var $ShowPrinters;
20   var $ShowDevices;
21   var $ShowPhones;
23   /* Subsearch checkbox */
24   var $SubSearch;
26   var $parent             ;
27   var $ui                 ;
29   function divListSystem (&$config,$parent)
30   {
31     MultiSelectWindow::MultiSelectWindow($config, "System", array("server",
32                                                                   "workstation",
33                                                                   "terminal",
34                                                                   "phone",
35                                                                   "incoming",
36                                                                   "printer"));
38     $this->parent       = $parent;
39     $this->ui           = get_userinfo();
41     /* Set list strings */
42     $this->SetTitle(_("List of systems"));
43     $this->SetSummary(_("List of systems"));
45     /* Result page will look like a headpage */
46     $this->SetHeadpageMode();
47     $this->SetInformation(_("This menu allows you to add, remove and change the properties of specific systems. You can only add systems which have already been started once."));
49     $this->EnableAplhabet   (true);
51     /* Disable buttonsm */
52     $this->EnableCloseButton(false);
53     $this->EnableSaveButton (false);
55     /* Dynamic action col, depending on snapshot icons */
56     $action_col_size = 110;
57     if($this->parent->snapshotEnabled()){
58       $action_col_size += 38;
59     }
61     /* Toggle all selected / deselected */
62     $chk = "<input type='checkbox' id='select_all' name='select_all'
63                onClick='toggle_all_(\"^item_selected_[0-9]*$\",\"select_all\");' >";
65     /* set Page header */
66     $this->AddHeader(array("string"=> $chk,          "attach"=>"style='width:20px;'"));
67     $this->AddHeader(array("string"=>"&nbsp;","attach"=>"style='width:20px;'"));
68     $this->AddHeader(array("string"=>_("System / Department")));
69     $this->AddHeader(array("string"=>_("Actions"),"attach"=>"style='width:".$action_col_size."px;border-right:0px;'"));
71     /*                  Text        ,Value    ,Name         ,Is selected */
72     $this->AddCheckBox("ShowServers",         _("Select to see servers"),            _("Show servers"),          true);
73     $this->AddCheckBox("ShowTerminals",       _("Select to see Linux terminals"),    _("Show terminals") ,       true);
74     $this->AddCheckBox("ShowWorkstations",    _("Select to see Linux workstations"), _("Show workstations"),     true);
75     $this->AddCheckBox("ShowWinWorkstations", _("Select to see MicroSoft Windows based workstations"), _("Show windows based workstations"),true);
76     $this->AddCheckBox("ShowPrinters",        _("Select to see network printers"),    _("Show network printers") ,true);
77     $this->AddCheckBox("ShowPhones",          _("Select to see VOIP phones"),         _("Show phones") ,          true);
78     $this->AddCheckBox("ShowDevices",         _("Select to see network devices"),     _("Show network devices"),  true);
80     /* Add SubSearch checkbox */
81     $this->AddCheckBox(SEPERATOR);
82     $this->AddCheckBox("SubSearch",  _("Select to search within subtrees"), _("Search in subtrees"), false);
84     /*                  Name                 ,Text                              ,Default  , Connect with alphabet  */
85     $this->AddRegex   ("Regex",     _("Display systems matching"),"*" , true);
86     $this->AddRegex   ("UserRegex", _("Display systems of user"), "*" , false, "images/search_user.png");
87   }
89   function GenHeader()
90   {
91    /* Prepare departments,
92        which are shown in the listbox on top of the listbox
93      */
94     $options= "";
96     /* Get all departments within this subtree */
97     $base = $this->config->current['BASE'];
99     /* Add base */
100     $tmp = array();
101     $tmp[] = array("dn"=>$this->config->current['BASE']);
102     $tmp=  array_merge($tmp,get_list("(&(|(ou=*)(description=*))(objectClass=gosaDepartment))", $this->module, $base,
103                     array("ou", "description"), GL_SIZELIMIT | GL_SUBSEARCH));
105     $deps = array();
106     foreach($tmp as $tm){
107       $deps[$tm['dn']] = $tm['dn'];
108     }
110     /* Load possible departments */
111     $ui= get_userinfo();
112     $first = "";
113     $found = FALSE;
114     $department = $departments = array();
115     foreach($this->module as $module){
116       $d = $ui->get_module_departments($module);      
117       foreach($d as $department){
118         $departments[$department] = $department;
119       }
120     }
122     /* Load possible departments */
123     $ui= get_userinfo();
124     $ids = $this->config->idepartments;
125     $first = "";
126     $found = FALSE;
127     foreach($ids as $dep => $name){
128       if(isset($deps[$dep]) && in_array_ics($dep, $departments)){
130         /* Keep first base dn in mind, we could need this
131          *  info if no valid base was found
132          */
133         if(empty($first)) {
134           $first = $dep['dn'];
135         }
137         $value = $ids[$dep];
138         if ($this->selectedBase == $dep){
139           $found = TRUE;
140           $options.= "<option selected='selected' value='".$dep."'>$value</option>";
141         } else {
142           $options.= "<option value='".$dep."'>$value</option>";
143         }
144       }
145     }
148     /* The currently used base is not visible with your acl setup.
149      * Set base to first useable base.
150      */
151     if(!$found){
152       $this->selectedBase = $first;
153     }
155     /* If there is at least one c (Create) and one w (Write) acl in this combination
156         display the snapshot paste icon. BUT check the correct acls in the management plugin */
157     $all_module_acls = "";
158     foreach($this->module as $module){
159       $all_module_acls .= $ui->has_complete_category_acls($this->selectedBase,$module);
160     }
162     /* Must we add an additional seperator */
163     $add_sep = false;
164    
165     /* Get copy & paste icon */
166     $Copy_Paste ="";
167     if(preg_match("/(c.*w|w.*c)/",$all_module_acls) &&  $this->parent->CopyPasteHandler){
168       $Copy_Paste = $this->parent->CopyPasteHandler->generatePasteIcon();
169       $addsep = true;
170     }
172     /* Add default header */
173     $listhead = MultiSelectWindow::get_default_header();
175     /* Add snapshot icons */
176     if(preg_match("/(c.*w|w.*c)/",$all_module_acls)){
177       $listhead .= $this->get_snapshot_header($this->selectedBase);
178       $add_sep = true;
179     }
181     /* Assign copy & paste icons */
182     $listhead.=      $Copy_Paste;
184     /* Handle create icons */ 
185     if(preg_match("/c/",$ui->get_permissions($this->selectedBase,"terminal/termgeneric"))){
186       $add_sep = true;
187       $listhead .= "<input class='center' type='image' align='middle' src='images/select_new_terminal.png'
188         name='newsystem_terminal'    alt='"._("New Terminal template")."' title='"._("New Terminal")."'>&nbsp;";
189     }
191     if(preg_match("/c/",$ui->get_permissions($this->selectedBase,"workstation/workgeneric"))){
192       $add_sep = true;
193       $listhead .= "<input class='center' type='image' align='middle' src='images/select_new_workstation.png'
194         name='newsystem_workstation' alt='"._("New Workstation template")."' title='"._("New Workstation")."'>&nbsp;";
195     }
197     if(preg_match("/c/",$ui->get_permissions($this->selectedBase,"server/servgeneric"))){
198       $add_sep = true;
199       $listhead .= "<input class='center' type='image' align='middle' src='images/select_new_server.png'     
200         name='newsystem_server' alt='"._("New Server")."' title='"._("New Server")."'>&nbsp;";
201     }
203     if(preg_match("/c/",$ui->get_permissions($this->selectedBase,"printer/printgeneric"))){
204       $add_sep = true;
205       $listhead .= "<input class='center' type='image' align='middle' src='images/select_new_printer.png'    
206         name='newsystem_printer'     alt='"._("New Printer")."' title='"._("New Printer")."'>&nbsp;";
207     }
209     if(preg_match("/c/",$ui->get_permissions($this->selectedBase,"phone/phoneGeneric"))){
210       $add_sep = true;
211       $listhead .= "<input class='center' type='image' align='middle' src='images/select_new_phone.png'      
212         name='newsystem_phone' alt='"._("New Phone")."' title='"._("New Phone")."'>&nbsp;";
213     }
215     if(preg_match("/c/",$ui->get_permissions($this->selectedBase,"component/componentGeneric"))){
216       $add_sep = true;
217       $listhead .= "<input class='center' type='image' align='middle' src='images/select_new_component.png'  
218         name='newsystem_component' alt='"._("New Component")."' title='"._("New Component")."'>&nbsp;";
219     }
221     /* Should we add a seperator ? */
222     if($add_sep){
223       $listhead .= "<img class='center' src='images/list_seperator.png' align='middle' alt='' height='16' width='1'>&nbsp;";
224     }
226     /* Add base selection */
227     $listhead .= _("Base")."&nbsp; <select name='CurrentMainBase' onChange='mainform.submit()' class='center'>$options</select>".
228       " <input class='center' type='image' src='images/list_submit.png' align='middle'
229       title='"._("Submit department")."' name='submit_department' alt='".           _("Submit")."'>&nbsp;";
231     /* Multiple options */
232     $listhead .= "&nbsp;<input class='center' type='image' align='middle' src='images/edittrash.png'
233         title='"._("Remove selected systems")."' alt='"._("Remove systems")."' name='remove_multiple_systems'>&nbsp;";
235     /* Add multiple copy & cut icons */
236     if(is_object($this->parent->CopyPasteHandler)){
237       $listhead .= "&nbsp;<input class='center' type='image' align='middle' src='images/editcopy.png'
238         title='"._("Copy selected system")."' alt='"._("Copy systems")."' name='multiple_copy_systems'>&nbsp;";
239       $listhead .= "&nbsp;<input class='center' type='image' align='middle' src='images/editcut.png'
240         title='"._("cut selected system")."' alt='"._("Cut systems")."' name='multiple_cut_systems'>&nbsp;";
241     }
242     $listhead .="</div>";
244     $this->SetListHeader($listhead);
245   }
247   function execute()
248   {
249     $this->ClearElementsList();
250     $this->GenHeader();
251   }
254   function setEntries($terminals)
255   {
256     $img1  = "<img class='center' src='images/printer.png'            alt='C' title='"._("Cups Server")  ."'>";
257     $img2  = "<img class='center' src='images/scanner.png'            alt='L' title='"._("Log Db") ."'>";
258     $img3  = "<img class='center' src='images/select_terminal.png'    alt='L' title='"._("Syslog Server") ."'>";
259     $img4  = "<img class='center' src='images/mailto.png'             alt='M' title='"._("Mail Server")  ."'>";
260     $img5  = "<img class='center' src='images/select_phone.png'       alt='I' title='"._("Imap Server") ."'>";
261     $img6  = "<img class='center' src='images/fax_small.png'          alt='F' title='"._("Nfs Server")   ."'>";
262     $img7  = "<img class='center' src='images/select_winstation.png'  alt='K' title='"._("Kerberos Server") ."'>";
263     $img8  = "<img class='center' src='images/select_phone.png'       alt='A' title='"._("Asterisk Server") ."'>";
264     $img9  = "<img class='center' src='images/fax_small.png'          alt='F' title='"._("Fax Server") ."'>";
265     $img10 = "<img class='center' src='images/save.png'               alt='L' title='"._("Ldap Server") ."'>";
267     $empty    ="<img src='images/empty.png' style='width:16px ; height: 16px;' class='center' alt=''>";
269     /* Dynamic action col, depending on snapshot icons */
270     $action_col_size = 110;
271     if($this->parent->snapshotEnabled()){
272       $action_col_size += 38;
273     }
275     // User and Template  Images
276     $editlink = "<a href='?plug=".$_GET['plug']."&amp;id=%s&amp;act=edit_entry'>%s</a>";
278     /* ACL mapping */
279     $ui = get_userinfo();
280     $tabs = array(
281           "terminal"    => array("CLASS"=>"TERMTABS",     "TABCLASS" =>"termtabs",      "ACL"=> "terminal/termgeneric"),
282           "workstation" => array("CLASS"=>"WORKTABS",     "TABCLASS" =>"worktabs",      "ACL"=> "workstation/workgeneric"),
283           "server"      => array("CLASS"=>"SERVTABS",     "TABCLASS" =>"servtabs",      "ACL"=> "server/servgeneric"),
284           "printer"     => array("CLASS"=>"PRINTTABS",    "TABCLASS" =>"printtabs",     "ACL"=> "printer/printgeneric"),
285           "phone"       => array("CLASS"=>"PHONETABS",    "TABCLASS" =>"phonetabs",     "ACL"=> "phone/phoneGeneric"),
286           "winstation"  => array("CLASS"=>"WINTABS",      "TABCLASS" =>"wintabs",       "ACL"=> "winworkstation/wingeneric"),
287           "incoming"    => array("CLASS"=>"",             "TABCLASS" =>"",              "ACL"=> "incoming/systems"),
288           "component"   => array("CLASS"=>"COMPONENTTABS","TABCLASS" =>"componenttabs", "ACL"=> "component/componentGeneric"));
291     $cnts = array("component" => 0 , "terminal" => 0 , "workstation" => 0 , 
292                   "printer" => 0 , "phone" => 0 , "server" => 0,
293                   "NewDevice" => 0, "winstation"=> 0);
295     // Test Every Entry and generate divlist Array
296     foreach($terminals as $key => $val){
298       /* Get system type, it is used to fetch the acls for the current object.
299           "winstation" acls are stored as 2winworkstation", so we have to map this here */
300       $type     = $this->parent->get_system_type($val['objectClass']);
301       if($type == "winstation") {
302         $acl_type = "winworkstation";
303       }else{
304         $acl_type = $type;
305       }
307       /* Map NewDevice acls to workstation acls */
308       if($type == "NewDevice"){
309         $type     = "incoming";
310         $acl_type = "incoming";
311       }
313       /* Get complete category acls */
314       $acl_all  = $ui->has_complete_category_acls($val['dn'],$acl_type) ;
315   
316       /* Get specific generic acls */
317       $acl      = $ui->get_permissions($val['dn'],$tabs[$type]['ACL']);
319       $action ="";
320       if(($this->parent->CopyPasteHandler) && preg_match("/(c.*w|w.*c)/",$acl_all)){
321         $action.= "<input class='center' type='image'
322           src='images/editcut.png' alt='"._("cut")."' name='cut_%KEY%' title='"._("Cut this entry")."'>&nbsp;";
323         $action.= "<input class='center' type='image'
324           src='images/editcopy.png' alt='"._("copy")."' name='copy_%KEY%' title='"._("Copy this entry")."'>&nbsp;";
325       }
326       $action.= "<input class='center' type='image' src='images/edit.png' 
327                     alt='"._("edit")."'     name='system_edit_%KEY%' title='"._("Edit system")."'>";
328       if(preg_match("/(c.*w|w.*c)/",$acl_all)){
329         $action.= $this->GetSnapShotActions($val['dn']);
330       }else{
331         $action.= $empty."&nbsp;".$empty."&nbsp;";
332       }
335       if(preg_match("/d/",$acl)){
336         $action.= "<input class='center' type='image' src='images/edittrash.png' 
337           alt='"._("delete")."'   name='system_del_%KEY%' title='"._("Delete system")."'>";
338       }else{
339         $action.= $empty;    
340       }
342       /* Generate picture list, which is currently disabled */
343       if(in_array("goCupsServer"    ,$val['objectClass'])) $cups    = $img1;   else $cups  =$empty;
344       if(in_array("goLogDBServer"   ,$val['objectClass'])) $logdb   = $img2;   else $logdb =$empty;
345       if(in_array("goSyslogServer"  ,$val['objectClass'])) $syslog  = $img3;   else $syslog=$empty;
346       if(in_array("goImapServer"    ,$val['objectClass'])) $imap    = $img4;   else $imap  =$empty;
347       if(in_array("sambaSamAccount" ,$val['objectClass'])) $samba   = $img5;   else $samba =$empty;
348       if(in_array("goShareServer"   ,$val['objectClass'])) $nfs     = $img6;   else $nfs   =$empty;
349       if(in_array("goKrbServer"     ,$val['objectClass'])) $krb     = $img7;   else $krb   =$empty;
350       if(in_array("goFonServer"     ,$val['objectClass'])) $fon     = $img8;   else $fon   =$empty;
351       if(in_array("goFaxServer"     ,$val['objectClass'])) $fax     = $img9;   else $fax   =$empty;
352       if(in_array("goLdapServer"    ,$val['objectClass'])) $ldap     = $img10;   else $ldap   =$empty;
354       $pics = $cups.$logdb.$syslog.$imap.$samba.$nfs.$krb.$fon.$fax.$ldap;
355       $pics = ""; // Pictures currently hidden
357       $val['cn'][0]= preg_replace('/\$$/', '', $val['cn'][0]);
359       // Generate Array to Add
360       $dsc= "";
361       if (isset($val['description'][0])){
362         $dsc= " [".$val['description'][0]."]";
363       }
364       if((isset($val['is_new']))&&(!empty($val['is_new']))){
365         $display= $val["cn"][0]." ".$val['is_new'].$dsc;
366       }else{
367         $display= $val["cn"][0].$dsc;
368       }
370      
371       /* Check if this is a terminal/workstation && if we are allowed to change the gotoRootPasswd */
372       $pwd_acl =""; 
373       if(in_array("gotoWorkstation",$val['objectClass'])){
374         $pwd_acl = $ui->get_permissions($val['dn'],"workstation/workgeneric","gotoRootPasswd");
375       }    
376       if(in_array("gotoTerminal",$val['objectClass'])){
377         $pwd_acl = $ui->get_permissions($val['dn'],"terminal/termgeneric","gotoRootPasswd");
378       }    
379       if(preg_match("/w/",$pwd_acl)){
380         $action2 = "<input class='center' type='image' src='images/certs.png' alt='"._("Password")."'   name='system_setpwd_%KEY%' title='"._("Set root       password")."'>";
381       }else{
382         $action2 = $empty;
383       }
386       if(in_array("gotoWorkstation",$val['objectClass'])){
387         $action2= "<input class='center' type='image' src='images/cdrom.png' alt='"._("Create CD")."'   
388                       name='gen_cd_%KEY%' title='"._("Create FAI CD")."'>&nbsp;".$action2;
389       }else{
390         $action2= $empty.$action2;
391       }
393       if(isset($val['message'])){
394         $display.= "  (".$val['message'].")";
395       }
397       $img    = $this->parent->convert_list($val);
399       /* Cutted objects should be displayed in light grey */
400       if($this->parent->CopyPasteHandler){
401         foreach($this->parent->CopyPasteHandler->queue as $queue_key => $queue_data){
402           if($queue_data['dn'] == $val['dn']) {
403             $display = "<font color='#999999'>".$display."</font>";
404             break;
405           }
406         }
407       }
409       $type = $this->parent->get_system_type($val['objectClass']);
410       $cnts[$type] ++;
413       /* Create each field */
414       $field0 = array("string" => "<input type='checkbox' id='item_selected_".$key."' name='item_selected_".$key."'>" ,
415                       "attach" => "style='width:20px;'");
417       $field1 = array("string" => sprintf($img['img'],$val['dn']), "attach" => "style='text-align:center;width:20px;'");
418       $field2 = array("string" => sprintf($editlink,$key,$display), "attach" => "style='' title='".preg_replace('/ /', '&nbsp;', @LDAP::fix($val['dn']))."'");
419       $field3 = array("string" => preg_replace("/%KEY%/", "$key", $action2.$action), "attach" => "style='width:".$action_col_size."px;border-right:0px;text-align:right;'");
420       $this->AddElement( array($field0,$field1,$field2,$field3));
421     }
423     /* Create summary string for list footer */
424     $num_deps=0;
425     if(!$this->SubSearch){
426       $num_deps = count($this->Added_Departments);
427     }
429     $num_ser_str = _("Number of listed servers");
430     $num_ws_str  = _("Number of listed workstations");
431     $num_ter_str = _("Number of listed terminals");
432     $num_pho_str = _("Number of listed phones");
433     $num_prt_str = _("Number of listed printers");
434     $num_com_str = _("Number of listed network components");
435     $num_new_str = _("Number of listed new devices");
436     $num_wws_str = _("Number of listed windows workstations");
437     $num_dep_str = _("Number of listed departments");
439     $str = "<img class='center' src='images/select_server.png'
440       title='".$num_ser_str."' alt='".$num_ser_str."'>&nbsp;".$cnts['server']."&nbsp;&nbsp;&nbsp;&nbsp;";
441     $str.= "<img class='center' src='images/select_workstation.png'
442       title='".$num_ws_str."' alt='".$num_ws_str."'>&nbsp;".$cnts['workstation']."&nbsp;&nbsp;&nbsp;&nbsp;";
443     $str.= "<img class='center' src='images/select_terminal.png'
444       title='".$num_ter_str."' alt='".$num_ter_str."'>&nbsp;".$cnts['terminal']."&nbsp;&nbsp;&nbsp;&nbsp;";
445     $str.= "<img class='center' src='images/select_phone.png'
446       title='".$num_pho_str."' alt='".$num_pho_str."'>&nbsp;".$cnts['phone']."&nbsp;&nbsp;&nbsp;&nbsp;";
447     $str.= "<img class='center' src='images/select_printer.png'
448       title='".$num_prt_str."' alt='".$num_prt_str."'>&nbsp;".$cnts['printer']."&nbsp;&nbsp;&nbsp;&nbsp;";
449     $str.= "<img class='center' src='images/select_component.png'
450       title='".$num_com_str."' alt='".$num_com_str."'>&nbsp;".$cnts['component']."&nbsp;&nbsp;&nbsp;&nbsp;";
451     $str.= "<img class='center' src='images/select_newsystem.png'
452       title='".$num_new_str."' alt='".$num_new_str."'>&nbsp;".$cnts['NewDevice']."&nbsp;&nbsp;&nbsp;&nbsp;";
453     $str.= "<img class='center' src='images/select_winstation.png'
454       title='".$num_wws_str."' alt='".$num_wws_str."'>&nbsp;".$cnts['winstation']."&nbsp;&nbsp;&nbsp;&nbsp;";
455     $str.= "<img class='center' src='images/folder.png'
456       title='".$num_dep_str."' alt='".$num_dep_str."'>&nbsp;".$num_deps."&nbsp;&nbsp;&nbsp;&nbsp;";
458     $this->set_List_Bottom_Info($str);
459   }
462   function Save()
463   {
464     MultiSelectWindow :: Save();  
465   }
468   function save_object()
469   {
470     /* Save automatic created POSTs like regex, checkboxes */
471     MultiSelectWindow :: save_object();  
474   }
476 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
477 ?>