Code

Updated an error message. fixed server acl string
[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                                                                   "printer"));
37     $this->parent       = $parent;
38     $this->ui           = get_userinfo();
40     /* Set list strings */
41     $this->SetTitle(_("List of systems"));
42     $this->SetSummary(_("List of systems"));
44     /* Result page will look like a headpage */
45     $this->SetHeadpageMode();
46     $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."));
48     $this->EnableAplhabet   (true);
50     /* Disable buttonsm */
51     $this->EnableCloseButton(false);
52     $this->EnableSaveButton (false);
54     /* Dynamic action col, depending on snapshot icons */
55     $action_col_size = 70;
56     if($this->parent->snapshotEnabled()){
57       $action_col_size += 38;
58     }
60     /* set Page header */
61     $this->AddHeader(array("string"=>"&nbsp;","attach"=>"style='width:20px;'"));
62     $this->AddHeader(array("string"=>_("System / Department")));
63     $this->AddHeader(array("string"=>_("Actions"),"attach"=>"style='width:".$action_col_size."px;border-right:0px;'"));
65     /*                  Text        ,Value    ,Name         ,Is selected */
66     $this->AddCheckBox("ShowServers",         _("Select to see servers"),            _("Show servers"),          true);
67     $this->AddCheckBox("ShowTerminals",       _("Select to see Linux terminals"),    _("Show terminals") ,       true);
68     $this->AddCheckBox("ShowWorkstations",    _("Select to see Linux workstations"), _("Show workstations"),     true);
69     $this->AddCheckBox("ShowWinWorkstations", _("Select to see MicroSoft Windows based workstations"), _("Show windows based workstations"),true);
70     $this->AddCheckBox("ShowPrinters",        _("Select to see network printers"),    _("Show network printers") ,true);
71     $this->AddCheckBox("ShowPhones",          _("Select to see VOIP phones"),         _("Show phones") ,          true);
72     $this->AddCheckBox("ShowDevices",         _("Select to see network devices"),     _("Show network devices"),  true);
74     /* Add SubSearch checkbox */
75     $this->AddCheckBox(SEPERATOR);
76     $this->AddCheckBox("SubSearch",  _("Select to search within subtrees"), _("Ignore subtrees"), false);
78     /*                  Name                 ,Text                              ,Default  , Connect with alphabet  */
79     $this->AddRegex   ("Regex",     _("Display systems matching"),"*" , true);
80     $this->AddRegex   ("UserRegex", _("Display systems of user"), "*" , false, "images/search_user.png");
81   }
83   function GenHeader()
84   {
85    /* Prepare departments,
86        which are shown in the listbox on top of the listbox
87      */
88     $options= "";
90     /* Get all departments within this subtree */
91     $base = $this->config->current['BASE'];
92     $deps= get_list("(&(|(ou=*)(description=*))(objectClass=gosaDepartment))", $this->module, $base,
93                     array("ou", "description"), GL_SIZELIMIT | GL_SUBSEARCH);
95     $tmp =array();
96     foreach($deps as $dep){
97       $tmp[$dep['dn']] = $dep;
98     }
99     $deps = $tmp;
101     /* Load possible departments */
102     $ui= get_userinfo();
103     $department = array();
104     foreach($this->module as $module){
105       $d = $ui->get_module_departments($module);      
106       foreach($d as $department){
107         $departments[$department] = $department;
108       }
109     }
111     $ids = $this->config->idepartments;
113     foreach($deps as $dep){
114       if(isset($ids[$dep['dn']]) && in_array_ics($dep['dn'], $departments)){
116         $value = $ids[$dep['dn']];
117         if ($this->selectedBase == $dep['dn']){
118           $options.= "<option selected='selected' value='".$dep['dn']."'>$value</option>";
119         } else {
120           $options.= "<option value='".$dep['dn']."'>$value</option>";
121         }
122       }
123     }
125     /* If there is at least one c (Create) and one w (Write) acl in this combination
126         display the snapshot paste icon. BUT check the correct acls in the management plugin */
127     $all_module_acls = "";
128     foreach($this->module as $module){
129       $all_module_acls .= $ui->has_complete_category_acls($this->selectedBase,$module);
130     }
132     /* Must we add an additional seperator */
133     $add_sep = false;
134     
135     /* Add the basic icons for navigation */
136     $listhead = "<div style='background:#F0F0F9;padding:5px;'>".
137       " <input class='center' type='image' src='images/list_root.png' align='middle'
138       title='"._("Go to root department")."' name='dep_root' alt='"._("Root")."'>&nbsp;".
139       " <input class='center' type='image' align='middle' src='images/list_back.png'
140       title='"._("Go up one department")."' alt='"._("Up")."' name='dep_back'>&nbsp;".
141       " <input class='center' type='image' align='middle' src='images/list_home.png'
142       title='"._("Go to users department")."' alt='"._("Home")."'                     name='dep_home'>&nbsp;".
143       " <input class='center' type='image' src='images/list_reload.png' align='middle' title='"._("Reload list")."' name='submit_department' alt='".          _("Submit")."'>&nbsp;".
144       " <img class='center' src='images/list_seperator.png' align='middle' alt='' height='16' width='1'>&nbsp;";
146     /* Add snapshot icons */
147     if(preg_match("/(c.*w|w.*c)/",$all_module_acls)){
148       $listhead .= $this->get_snapshot_header($this->selectedBase);
149       $add_sep = true;
150     }
152     /* Handle create icons */ 
153     if(preg_match("/c/",$ui->get_permissions($this->selectedBase,"terminal/termgeneric"))){
154       $add_sep = true;
155       $listhead .= "<input class='center' type='image' align='middle' src='images/select_new_terminal.png'
156         name='newsystem_terminal'    alt='"._("New Terminal template")."' title='"._("New Terminal")."'>&nbsp;";
157     }
159     if(preg_match("/c/",$ui->get_permissions($this->selectedBase,"workstation/workgeneric"))){
160       $add_sep = true;
161       $listhead .= "<input class='center' type='image' align='middle' src='images/select_new_workstation.png'
162         name='newsystem_workstation' alt='"._("New Workstation template")."' title='"._("New Workstation")."'>&nbsp;";
163     }
165     if(preg_match("/c/",$ui->get_permissions($this->selectedBase,"server/servgeneric"))){
166       $add_sep = true;
167       $listhead .= "<input class='center' type='image' align='middle' src='images/select_new_server.png'     
168         name='newsystem_server' alt='"._("New Server")."' title='"._("New Server")."'>&nbsp;";
169     }
171     if(preg_match("/c/",$ui->get_permissions($this->selectedBase,"printer/printgeneric"))){
172       $add_sep = true;
173       $listhead .= "<input class='center' type='image' align='middle' src='images/select_new_printer.png'    
174         name='newsystem_printer'     alt='"._("New Printer")."' title='"._("New Printer")."'>&nbsp;";
175     }
177     if(preg_match("/c/",$ui->get_permissions($this->selectedBase,"phone/phoneGeneric"))){
178       $add_sep = true;
179       $listhead .= "<input class='center' type='image' align='middle' src='images/select_new_phone.png'      
180         name='newsystem_phone' alt='"._("New Phone")."' title='"._("New Phone")."'>&nbsp;";
181     }
183     if(preg_match("/c/",$ui->get_permissions($this->selectedBase,"component/componentGeneric"))){
184       $add_sep = true;
185       $listhead .= "<input class='center' type='image' align='middle' src='images/select_new_component.png'  
186         name='newsystem_component' alt='"._("New Component")."' title='"._("New Component")."'>&nbsp;";
187     }
189     /* Should we add a seperator ? */
190     if($add_sep){
191       $listhead .= "<img class='center' src='images/list_seperator.png' align='middle' alt='' height='16' width='1'>&nbsp;";
192     }
194     /* Add base selection */
195     $listhead .= _("Base")."&nbsp; <select name='CurrentMainBase' onChange='mainform.submit()' class='center'>$options</select>".
196       " <input class='center' type='image' src='images/list_submit.png' align='middle'
197       title='"._("Submit department")."' name='submit_department' alt='".           _("Submit")."'>&nbsp;".
198       "</div>";
199     $this->SetListHeader($listhead);
200   }
202   function execute()
203   {
204     $this->ClearElementsList();
205     $this->GenHeader();
206   }
209   function setEntries($terminals)
210   {
211     $img1  = "<img class='center' src='images/printer.png'            alt='C' title='"._("Cups Server")  ."'>";
212     $img2  = "<img class='center' src='images/scanner.png'            alt='L' title='"._("Log Db") ."'>";
213     $img3  = "<img class='center' src='images/select_terminal.png'    alt='L' title='"._("Syslog Server") ."'>";
214     $img4  = "<img class='center' src='images/mailto.png'             alt='M' title='"._("Mail Server")  ."'>";
215     $img5  = "<img class='center' src='images/select_phone.png'       alt='I' title='"._("Imap Server") ."'>";
216     $img6  = "<img class='center' src='images/fax_small.png'          alt='F' title='"._("Nfs Server")   ."'>";
217     $img7  = "<img class='center' src='images/select_winstation.png'  alt='K' title='"._("Kerberos Server") ."'>";
218     $img8  = "<img class='center' src='images/select_phone.png'       alt='A' title='"._("Asterisk Server") ."'>";
219     $img9  = "<img class='center' src='images/fax_small.png'          alt='F' title='"._("Fax Server") ."'>";
220     $img10 = "<img class='center' src='images/save.png'               alt='L' title='"._("Ldap Server") ."'>";
222     $empty    ="<img src='images/empty.png' style='width:16px ; height: 16px;' class='center'>";
224     /* Dynamic action col, depending on snapshot icons */
225     $action_col_size = 70;
226     if($this->parent->snapshotEnabled()){
227       $action_col_size += 38;
228     }
230     // User and Template  Images
231     $editlink = "<a href='?plug=".$_GET['plug']."&amp;id=%s&amp;act=edit_entry'>%s</a>";
233     /* ACL mapping */
234     $ui = get_userinfo();
235     $tabs = array(
236           "terminal"    => array("CLASS"=>"TERMTABS",     "TABCLASS" =>"termtabs",      "ACL"=> "terminal/termgeneric"),
237           "workstation" => array("CLASS"=>"WORKTABS",     "TABCLASS" =>"worktabs",      "ACL"=> "workstation/workgeneric"),
238           "server"      => array("CLASS"=>"SERVTABS",     "TABCLASS" =>"servtabs",      "ACL"=> "server/servgeneric"),
239           "printer"     => array("CLASS"=>"PRINTTABS",    "TABCLASS" =>"printtabs",     "ACL"=> "printer/printgeneric"),
240           "phone"       => array("CLASS"=>"PHONETABS",    "TABCLASS" =>"phonetabs",     "ACL"=> "phone/phoneGeneric"),
241           "winstation"  => array("CLASS"=>"WINTABS",      "TABCLASS" =>"wintabs",       "ACL"=> "winworkstation/wingeneric"),
242           "component"   => array("CLASS"=>"COMPONENTTABS","TABCLASS" =>"componenttabs", "ACL"=> "component/componentGeneric"));
245     // Test Every Entry and generate divlist Array
246     foreach($terminals as $key => $val){
248       /* Get system type, it is used to fetch the acls for the current object.
249           "winstation" acls are stored as 2winworkstation", so we have to map this here */
250       $type     = $this->parent->get_system_type($val['objectClass']);
251       if($type == "winstation") {
252         $acl_type = "winworkstation";
253       }else{
254         $acl_type = $type;
255       }
257       /* Get complete category acls */
258       $acl_all  = $ui->has_complete_category_acls($val['dn'],$acl_type) ;
259   
260       /* Get specific generic acls */
261       $acl      = $ui->get_permissions($val['dn'],$tabs[$type]['ACL']);
263       $action= "<input class='center' type='image' src='images/edit.png' 
264                     alt='"._("edit")."'     name='user_edit_%KEY%' title='"._("Edit system")."'>";
265       if(preg_match("/(c.*w|w.*c)/",$acl_all)){
266         $action.= $this->GetSnapShotActions($val['dn']);
267       }else{
268         $action.= $empty."&nbsp;".$empty."&nbsp;";
269       }
271       if(preg_match("/d/",$acl)){
272         $action.= "<input class='center' type='image' src='images/edittrash.png' 
273           alt='"._("delete")."'   name='user_del_%KEY%' title='"._("Delete system")."'>";
274       }else{
275         $action.= $empty;    
276       }
278       /* Generate picture list, which is currently disabled */
279       if(in_array("goCupsServer"    ,$val['objectClass'])) $cups    = $img1;   else $cups  =$empty;
280       if(in_array("goLogDBServer"   ,$val['objectClass'])) $logdb   = $img2;   else $logdb =$empty;
281       if(in_array("goSyslogServer"  ,$val['objectClass'])) $syslog  = $img3;   else $syslog=$empty;
282       if(in_array("goImapServer"    ,$val['objectClass'])) $imap    = $img4;   else $imap  =$empty;
283       if(in_array("sambaSamAccount" ,$val['objectClass'])) $samba   = $img5;   else $samba =$empty;
284       if(in_array("goShareServer"   ,$val['objectClass'])) $nfs     = $img6;   else $nfs   =$empty;
285       if(in_array("goKrbServer"     ,$val['objectClass'])) $krb     = $img7;   else $krb   =$empty;
286       if(in_array("goFonServer"     ,$val['objectClass'])) $fon     = $img8;   else $fon   =$empty;
287       if(in_array("goFaxServer"     ,$val['objectClass'])) $fax     = $img9;   else $fax   =$empty;
288       if(in_array("goLdapServer"    ,$val['objectClass'])) $ldap     = $img10;   else $ldap   =$empty;
290       $pics = $cups.$logdb.$syslog.$imap.$samba.$nfs.$krb.$fon.$fax.$ldap;
291       $pics = ""; // Pictures currently hidden
293       $val['cn'][0]= preg_replace('/\$$/', '', $val['cn'][0]);
295       // Generate Array to Add
296       $dsc= "";
297       if (isset($val['description'][0])){
298         $dsc= " [".$val['description'][0]."]";
299       }
300       if((isset($val['is_new']))&&(!empty($val['is_new']))){
301         $display= $val["cn"][0]." ".$val['is_new'].$dsc;
302       }else{
303         $display= $val["cn"][0].$dsc;
304       }
306      
307       /* Check if this is a terminal/workstation && if we are allowed to change the gotoRootPasswd */
308       $pwd_acl =""; 
309       if(in_array("gotoWorkstation",$val['objectClass'])){
310         $pwd_acl = $ui->get_permissions($val['dn'],"workstation/workgeneric","gotoRootPasswd");
311       }    
312       if(in_array("gotoTerminal",$val['objectClass'])){
313         $pwd_acl = $ui->get_permissions($val['dn'],"terminal/termgeneric","gotoRootPasswd");
314       }    
315       if(preg_match("/w/",$pwd_acl)){
316         $action2 = "<input class='center' type='image' src='images/certs.png' alt='"._("Password")."'   name='user_setpwd_%KEY%' title='"._("Set root       password")."'>";
317       }else{
318         $action2 = $empty;
319       }
322       if(in_array("gotoWorkstation",$val['objectClass'])){
323         $action2= "<input class='center' type='image' src='images/cdrom.png' alt='"._("Create CD")."'   
324                       name='gen_cd_%KEY%' title='"._("Create FAI CD")."'>&nbsp;".$action2;
325       }else{
326         $action2= $empty.$action2;
327       }
329       if(isset($val['message'])){
330         $display.= "  (".$val['message'].")";
331       }
333       $img    = $this->parent->convert_list($val);
334       $field1 = array("string" => sprintf($img['img'],$val['dn']), "attach" => "style='text-align:center;width:20px;'");
335       $field2 = array("string" => sprintf($editlink,$key,$display), "attach" => "style='' title='".preg_replace('/ /', '&nbsp;', @LDAP::fix($val['dn']))."'");
336       $field3 = array("string" => preg_replace("/%KEY%/", "$key", $action2.$action), "attach" => "style='width:".$action_col_size."px;border-right:0px;text-align:right;'");
337       $this->AddElement( array($field1,$field2,$field3));
338     }
340   }
343   function Save()
344   {
345     MultiSelectWindow :: Save();  
346   }
349   function save_object()
350   {
351     /* Save automatic created POSTs like regex, checkboxes */
352     MultiSelectWindow :: save_object();  
355   }
357 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
358 ?>