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"=>" ","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;
165 /* Add default header */
166 $listhead = MultiSelectWindow::get_default_header();
168 /* Add base selection */
169 $listhead .= _("Base")." <select name='CurrentMainBase' onChange='mainform.submit()' class='center'>$options</select>".
170 " <input class='center' type='image' src='images/list_submit.png' align='middle'
171 title='"._("Submit department")."' name='submit_department' alt='". _("Submit")."'> ";
173 /* Handle create icons */
174 $s = ".|"._("Actions")."|\n";
175 $s.= "..|<img src='images/list_new.png' alt='' border='0' class='center'>".
176 " "._("Create")."|\n";
177 if(preg_match("/c/",$ui->get_permissions($this->selectedBase,"terminal/termgeneric"))){
178 $s.= "...|<img src='images/select_terminal.png' alt='' border='0' class='center'>".
179 " "._("Terminal")."|"."newsystem_terminal|\n";
180 }
181 if(preg_match("/c/",$ui->get_permissions($this->selectedBase,"workstation/workgeneric"))){
182 $s.= "...|<img src='images/select_workstation.png' alt='' border='0' class='center'>".
183 " "._("Workstation")."|"."newsystem_workstation|\n";
184 }
185 if(preg_match("/c/",$ui->get_permissions($this->selectedBase,"workstation/servgeneric"))){
186 $s.= "...|<img src='images/select_server.png' alt='' border='0' class='center'>".
187 " "._("Server")."|"."newsystem_server|\n";
188 }
189 if(preg_match("/c/",$ui->get_permissions($this->selectedBase,"phone/phoneGeneric"))){
190 $s.= "...|<img src='images/select_phone.png' alt='' border='0' class='center'>".
191 " "._("Phone")."|"."newsystem_phone|\n";
192 }
193 if(preg_match("/c/",$ui->get_permissions($this->selectedBase,"printer/printgeneric"))){
194 $s.= "...|<img src='images/select_printer.png' alt='' border='0' class='center'>".
195 " "._("Printer")."|"."newsystem_printer|\n";
196 }
197 if(preg_match("/c/",$ui->get_permissions($this->selectedBase,"component/componentGeneric"))){
198 $s.= "...|<img src='images/select_component.png' alt='' border='0' class='center'>".
199 " "._("Component")."|"."newsystem_component|\n";
200 }
202 # Actions
203 $s.= "..|<img src='images/rocket.png' alt='' border='0' class='center'>".
204 " "._("Trigger action")."|\n";
205 $s.= "...|"." "._("Halt")."|"."halt_multiple|\n";
206 $s.= "...|"." "._("Reboot")."|"."reboot_multiple|\n";
207 $s.= "...|"." "._("Re-install")."|"."reinstall_multiple|\n";
208 $s.= "...|"." "._("Softupdate")."|"."update_multiple|\n";
209 $s.= "...|"." "._("Wake up")."|"."wake_multiple|\n";
210 $s.= "..|<img src='images/clock.png' alt='' border='0' class='center'>".
211 " "._("Schedule action")."|\n";
212 $s.= "...|"." "._("Halt")."|"."schedule_halt_multiple|\n";
213 $s.= "...|"." "._("Reboot")."|"."schedule_reboot_multiple|\n";
214 $s.= "...|"." "._("Re-install")."|"."schedule_reinstall_multiple|\n";
215 $s.= "...|"." "._("Softupdate")."|"."schedule_update_multiple|\n";
216 $s.= "...|"." "._("Wake up")."|"."schedule_wake_multiple|\n";
218 $s.= "..|<img src='images/edittrash.png' alt='' border='0' class='center'>".
219 " "._("Remove")."|"."remove_multiple|\n";
221 /* Add multiple copy & cut icons */
222 if(is_object($this->parent->CopyPasteHandler)){
223 $s.= "..|---|\n";
224 $s.= "..|<img src='images/editcopy.png' alt='' border='0' class='center'>".
225 " "._("Copy")."|"."multiple_copy_systems|\n";
226 $s.= "..|<img src='images/editcut.png' alt='' border='0' class='center'>".
227 " "._("Cut")."|"."multiple_cut_systems|\n";
228 }
230 /* Get copy & paste icon */
231 $Copy_Paste ="";
232 if(preg_match("/(c.*w|w.*c)/",$all_module_acls) && $this->parent->CopyPasteHandler){
233 $s .= "..|---|\n";
234 if($this->parent->CopyPasteHandler->entries_queued()){
235 $img = "<img border='0' class='center' src='images/editpaste.png' alt=''>";
236 $s.="..|".$img." "._("Paste")."|editPaste|\n";
237 }else{
238 $img = "<img border='0' class='center' src='images/cant_editpaste.png' alt=''>";
239 $s.="..|".$img." "._("Paste")."\n";
240 }
241 }
243 /* Add snapshot icons */
244 if(preg_match("/(c.*w|w.*c)/",$all_module_acls)){
245 $s .= "..|---|\n";
246 $s .= $this->get_snapshot_header(TRUE);
247 }
249 $this->SetDropDownHeaderMenu($s);
250 $this->SetListHeader($listhead);
251 }
253 function execute()
254 {
255 $this->ClearElementsList();
256 $this->GenHeader();
257 }
259 function setEntries($terminals)
260 {
261 $img1 = "<img class='center' src='images/printer.png' alt='C' title='"._("Cups Server") ."'>";
262 $img2 = "<img class='center' src='images/scanner.png' alt='L' title='"._("Log Db") ."'>";
263 $img3 = "<img class='center' src='images/select_terminal.png' alt='L' title='"._("Syslog Server") ."'>";
264 $img4 = "<img class='center' src='images/mailto.png' alt='M' title='"._("Mail Server") ."'>";
265 $img5 = "<img class='center' src='images/select_phone.png' alt='I' title='"._("Imap Server") ."'>";
266 $img6 = "<img class='center' src='images/fax_small.png' alt='F' title='"._("Nfs Server") ."'>";
267 $img7 = "<img class='center' src='images/select_winstation.png' alt='K' title='"._("Kerberos Server") ."'>";
268 $img8 = "<img class='center' src='images/select_phone.png' alt='A' title='"._("Asterisk Server") ."'>";
269 $img9 = "<img class='center' src='images/fax_small.png' alt='F' title='"._("Fax Server") ."'>";
270 $img10 = "<img class='center' src='images/save.png' alt='L' title='"._("Ldap Server") ."'>";
272 $empty ="<img src='images/empty.png' style='width:16px ; height: 16px;' class='center' alt=''>";
274 /* Dynamic action col, depending on snapshot icons */
275 $action_col_size = 110;
276 if($this->parent->snapshotEnabled()){
277 $action_col_size += 38;
278 }
280 // User and Template Images
281 $editlink = "<a href='?plug=".$_GET['plug']."&id=%s&act=edit_entry'>%s</a>";
283 /* ACL mapping */
284 $ui = get_userinfo();
285 $tabs = array(
286 "terminal" => array("CLASS"=>"TERMTABS", "TABCLASS" =>"termtabs", "ACL"=> "terminal/termgeneric"),
287 "workstation" => array("CLASS"=>"WORKTABS", "TABCLASS" =>"worktabs", "ACL"=> "workstation/workgeneric"),
288 "server" => array("CLASS"=>"SERVTABS", "TABCLASS" =>"servtabs", "ACL"=> "server/servgeneric"),
289 "printer" => array("CLASS"=>"PRINTTABS", "TABCLASS" =>"printtabs", "ACL"=> "printer/printgeneric"),
290 "phone" => array("CLASS"=>"PHONETABS", "TABCLASS" =>"phonetabs", "ACL"=> "phone/phoneGeneric"),
291 "winstation" => array("CLASS"=>"WINTABS", "TABCLASS" =>"wintabs", "ACL"=> "winworkstation/wingeneric"),
292 "incoming" => array("CLASS"=>"", "TABCLASS" =>"", "ACL"=> "incoming/systems"),
293 "component" => array("CLASS"=>"COMPONENTTABS","TABCLASS" =>"componenttabs", "ACL"=> "component/componentGeneric"));
296 $cnts = array("component" => 0 , "terminal" => 0 , "workstation" => 0 ,
297 "printer" => 0 , "phone" => 0 , "server" => 0,
298 "NewDevice" => 0, "winstation"=> 0);
300 // Test Every Entry and generate divlist Array
301 foreach($terminals as $key => $val){
303 /* Get system type, it is used to fetch the acls for the current object.
304 "winstation" acls are stored as 2winworkstation", so we have to map this here */
305 $type = $this->parent->get_system_type($val);
306 if($type == "winstation") {
307 $acl_type = "winworkstation";
308 }else{
309 $acl_type = $type;
310 }
312 /* Map NewDevice acls to workstation acls */
313 if($type == "NewDevice" || $type == "ArpNewDevice"){
314 $type = "incoming";
315 $acl_type = "incoming";
316 }
318 /* Get complete category acls */
319 $acl_all = $ui->has_complete_category_acls($val['dn'],$acl_type) ;
321 /* Get specific generic acls */
322 $acl = $ui->get_permissions($val['dn'],$tabs[$type]['ACL']);
324 $action ="";
325 if(($this->parent->CopyPasteHandler) && preg_match("/(c.*w|w.*c)/",$acl_all)){
326 $action.= "<input class='center' type='image'
327 src='images/editcut.png' alt='"._("cut")."' name='cut_%KEY%' title='"._("Cut this entry")."'> ";
328 $action.= "<input class='center' type='image'
329 src='images/editcopy.png' alt='"._("copy")."' name='copy_%KEY%' title='"._("Copy this entry")."'> ";
330 }
331 $action.= "<input class='center' type='image' src='images/edit.png'
332 alt='"._("edit")."' name='system_edit_%KEY%' title='"._("Edit system")."'>";
333 if(preg_match("/(c.*w|w.*c)/",$acl_all)){
334 $action.= $this->GetSnapShotActions($val['dn']);
335 }else{
336 $action.= $empty." ".$empty." ";
337 }
340 if(preg_match("/d/",$acl)){
341 $action.= "<input class='center' type='image' src='images/edittrash.png'
342 alt='"._("delete")."' name='system_del_%KEY%' title='"._("Delete system")."'>";
343 }else{
344 $action.= $empty;
345 }
347 /* Generate picture list, which is currently disabled */
348 if(in_array("goCupsServer" ,$val['objectClass'])) $cups = $img1; else $cups =$empty;
349 if(in_array("goLogDBServer" ,$val['objectClass'])) $logdb = $img2; else $logdb =$empty;
350 if(in_array("goSyslogServer" ,$val['objectClass'])) $syslog = $img3; else $syslog=$empty;
351 if(in_array("goImapServer" ,$val['objectClass'])) $imap = $img4; else $imap =$empty;
352 if(in_array("sambaSamAccount" ,$val['objectClass'])) $samba = $img5; else $samba =$empty;
353 if(in_array("goShareServer" ,$val['objectClass'])) $nfs = $img6; else $nfs =$empty;
354 if(in_array("goKrbServer" ,$val['objectClass'])) $krb = $img7; else $krb =$empty;
355 if(in_array("goFonServer" ,$val['objectClass'])) $fon = $img8; else $fon =$empty;
356 if(in_array("goFaxServer" ,$val['objectClass'])) $fax = $img9; else $fax =$empty;
357 if(in_array("goLdapServer" ,$val['objectClass'])) $ldap = $img10; else $ldap =$empty;
359 $pics = $cups.$logdb.$syslog.$imap.$samba.$nfs.$krb.$fon.$fax.$ldap;
360 $pics = ""; // Pictures currently hidden
362 $val['cn'][0]= preg_replace('/\$$/', '', $val['cn'][0]);
364 // Generate Array to Add
365 $dsc= "";
366 if (isset($val['description'][0])){
367 $dsc= " [".$val['description'][0]."]";
368 }
369 if((isset($val['is_new']))&&(!empty($val['is_new']))){
370 $display= $val["cn"][0]." ".$val['is_new'].$dsc;
371 }else{
372 $display= $val["cn"][0].$dsc;
373 }
376 /* Check if this is a terminal/workstation && if we are allowed to change the gotoRootPasswd */
377 $pwd_acl ="";
378 if(in_array("gotoWorkstation",$val['objectClass'])){
379 $pwd_acl = $ui->get_permissions($val['dn'],"workstation/workgeneric","gotoRootPasswd");
380 }
381 if(in_array("gotoTerminal",$val['objectClass'])){
382 $pwd_acl = $ui->get_permissions($val['dn'],"terminal/termgeneric","gotoRootPasswd");
383 }
384 if(preg_match("/w/",$pwd_acl)){
385 $action2 = "<input class='center' type='image' src='images/certs.png' alt='"._("Password")."' name='system_setpwd_%KEY%' title='"._("Set root password")."'>";
386 }else{
387 $action2 = $empty;
388 }
391 if(in_array("gotoWorkstation",$val['objectClass'])){
392 $action2= "<input class='center' type='image' src='images/cdrom.png' alt='"._("Create CD")."'
393 name='gen_cd_%KEY%' title='"._("Create FAI CD")."'> ".$action2;
394 }else{
395 $action2= $empty.$action2;
396 }
398 if(isset($val['message'])){
399 $display.= " (".$val['message'].")";
400 }
402 $img = $this->parent->convert_list($val);
404 /* Cutted objects should be displayed in light grey */
405 if($this->parent->CopyPasteHandler){
406 foreach($this->parent->CopyPasteHandler->queue as $queue_key => $queue_data){
407 if($queue_data['dn'] == $val['dn']) {
408 $display = "<font color='#999999'>".$display."</font>";
409 break;
410 }
411 }
412 }
414 $type = $this->parent->get_system_type($val);
415 if($type == "ArpNewDevice"){
416 $type = "NewDevice";
417 }
418 $cnts[$type] ++;
421 /* Create each field */
422 $field0 = array("string" => "<input type='checkbox' id='item_selected_".$key."' name='item_selected_".$key."'>" ,
423 "attach" => "style='width:20px;'");
425 $field1 = array("string" => sprintf($img['img'],$val['dn']), "attach" => "style='text-align:center;width:20px;'");
426 $field2 = array("string" => sprintf($editlink,$key,$display), "attach" => "style='' title='".preg_replace('/ /', ' ', @LDAP::fix($val['dn']))."'");
427 $field3 = array("string" => preg_replace("/%KEY%/", "$key", $action2.$action), "attach" => "style='width:".$action_col_size."px;border-right:0px;text-align:right;'");
428 $this->AddElement( array($field0,$field1,$field2,$field3));
429 }
431 /* Create summary string for list footer */
432 $num_deps=0;
433 if(!$this->SubSearch){
434 $num_deps = count($this->Added_Departments);
435 }
437 $num_ser_str = _("Number of listed servers");
438 $num_ws_str = _("Number of listed workstations");
439 $num_ter_str = _("Number of listed terminals");
440 $num_pho_str = _("Number of listed phones");
441 $num_prt_str = _("Number of listed printers");
442 $num_com_str = _("Number of listed network components");
443 $num_new_str = _("Number of listed new devices");
444 $num_wws_str = _("Number of listed windows workstations");
445 $num_dep_str = _("Number of listed departments");
447 $str = "<img class='center' src='images/select_server.png'
448 title='".$num_ser_str."' alt='".$num_ser_str."'> ".$cnts['server']." ";
449 $str.= "<img class='center' src='images/select_workstation.png'
450 title='".$num_ws_str."' alt='".$num_ws_str."'> ".$cnts['workstation']." ";
451 $str.= "<img class='center' src='images/select_terminal.png'
452 title='".$num_ter_str."' alt='".$num_ter_str."'> ".$cnts['terminal']." ";
453 $str.= "<img class='center' src='images/select_phone.png'
454 title='".$num_pho_str."' alt='".$num_pho_str."'> ".$cnts['phone']." ";
455 $str.= "<img class='center' src='images/select_printer.png'
456 title='".$num_prt_str."' alt='".$num_prt_str."'> ".$cnts['printer']." ";
457 $str.= "<img class='center' src='images/select_component.png'
458 title='".$num_com_str."' alt='".$num_com_str."'> ".$cnts['component']." ";
459 $str.= "<img class='center' src='images/select_newsystem.png'
460 title='".$num_new_str."' alt='".$num_new_str."'> ".$cnts['NewDevice']." ";
461 $str.= "<img class='center' src='images/select_winstation.png'
462 title='".$num_wws_str."' alt='".$num_wws_str."'> ".$cnts['winstation']." ";
463 $str.= "<img class='center' src='images/folder.png'
464 title='".$num_dep_str."' alt='".$num_dep_str."'> ".$num_deps." ";
466 $this->set_List_Bottom_Info($str);
467 }
470 function Save()
471 {
472 MultiSelectWindow :: Save();
473 }
476 function save_object()
477 {
478 /* Save automatic created POSTs like regex, checkboxes */
479 MultiSelectWindow :: save_object();
482 }
483 }
484 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
485 ?>