X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=plugins%2Fadmin%2Fsystems%2Fclass_systemManagement.inc;h=adcb5b6bee0da4dbe5c68481797110a4a43b30c0;hb=a07e09435049ea336a78091402dab09261688d6e;hp=4020c6b1a04479b59e130a69fef1a6be6b3a1ff9;hpb=a0cb6455b7dfb51a937c24d043fabb4f31272629;p=gosa.git diff --git a/plugins/admin/systems/class_systemManagement.inc b/plugins/admin/systems/class_systemManagement.inc index 4020c6b1a..adcb5b6be 100644 --- a/plugins/admin/systems/class_systemManagement.inc +++ b/plugins/admin/systems/class_systemManagement.inc @@ -31,12 +31,14 @@ class systems extends plugin /* Definitions */ var $plHeadline= "Systems"; var $plDescription= "This does something"; + var $departments=array(); /* Dialog attributes */ var $systab= NULL; var $terminals= array(); var $ui= NULL; var $acl= ""; + var $DivListSystem; function systems ($config, $ui) { @@ -44,61 +46,68 @@ class systems extends plugin $this->config= $config; $this->ui= $ui; - /* Get global filter config */ - if (!is_global("terminalfilter")){ - $ui= get_userinfo(); - $base= get_base_from_people($ui->dn); - $terminalfilter= array("workstations" => "checked", - "thins" => "checked", - "winstations" => "checked", - "servers" => "checked", - "printers" => "checked", - "phones" => "checked", - "netdev" => "checked", - "user" => "*", - "depselect" => $base, - "regex" => "*"); - register_global("terminalfilter", $terminalfilter); - } + /* Creat dialog object */ + $this->DivListSystem = new divListSystem($this->config,$this); } function execute() { - /* Save data */ - $terminalfilter= get_global("terminalfilter"); - foreach( array("depselect", "user", "regex") as $type){ - if (isset($_POST[$type])){ - $terminalfilter[$type]= $_POST[$type]; + /* Call parent execute */ + plugin::execute(); + + $_SESSION['LOCK_VARS_TO_USE'] = array("/^user_edit_/i","/^user_del_/","/^act/","/^id/"); + + /******************** + Check for functional posts, edit|delete|add|... system devices + ********************/ + $s_action = ""; // Contains the action to proceed + $s_entry = ""; // The value for s_action + $base_back = ""; // The Link for Backbutton + $smarty = get_smarty(); + + /* Test Posts */ + foreach($_POST as $key => $val){ + // Post for delete + if(preg_match("/user_del.*/",$key)){ + $s_action = "del"; + $s_entry = preg_replace("/user_".$s_action."_/i","",$key); + // Post for edit + }elseif(preg_match("/user_edit_.*/",$key)){ + $s_action="edit"; + $s_entry = preg_replace("/user_".$s_action."_/i","",$key); + // Post for new + }elseif(preg_match("/user_new.*/",$key)){ + $s_action="new"; + }elseif(preg_match("/user_tplnew.*/i",$key)){ + $s_action="new_tpl"; + }elseif(preg_match("/user_setpwd_.*/i",$key)){ + $s_action="change_pw"; + $s_entry = preg_replace("/user_setpwd_/i","",$key); + }elseif(preg_match("/newsystem_.*/i",$key)){ + $s_action="newsystem"; + $s_entry = preg_replace("/newsystem_/i","",$key); } } - if (isset($_POST['depselect'])){ - foreach( array("workstations", "thins", "winstations", "printers", "phones", "servers", "netdev") as $type){ - if (isset($_POST[$type])) { - $terminalfilter[$type]= "checked"; - } else { - $terminalfilter[$type]= ""; - } - } + /* Incoming handling + * If someone made a systemtype and ogroup selection + * Display the new requested entry type ... servtab in case of server and so on. + */ + if(isset($_POST['SystemTypeChoosen'])){ + $s_action = "SelectedSystemType"; + $s_entry = $_POST['SystemType']; + $_SESSION['SelectedSystemType']['ogroup'] = $_POST['ObjectGroup']; + $this->systab = NULL; } - if (isset($_GET['search'])){ - $s= mb_substr($_GET['search'], 0, 1, "UTF8")."*"; - if ($s == "**"){ - $s= "*"; - } - $terminalfilter['regex']= $s; - } - register_global("terminalfilter", $terminalfilter); - - /* Check sorting variable */ - if (!isset($this->systab) && - !isset($_POST['new_terminal']) && - !isset($_POST['delete_terminal']) && - !isset($_POST['set_password']) && - !isset($_POST['select_terminal'])){ - $this->reload(); + + /* remove image tags from posted entry (posts looks like this 'name_x')*/ + $s_entry = preg_replace("/_.$/","",$s_entry); + + /* Edit was requested by pressing the name(link) of an item */ + if((isset($_GET['act']))&&($_GET['act']=="edit_entry")){ + $s_action ="edit"; + $s_entry = $_GET['id']; } - $smarty= get_smarty(); /* Check for exeeded sizelimit */ if (($message= check_sizelimit()) != ""){ @@ -106,64 +115,59 @@ class systems extends plugin } /* Try to get informations about what kind of system to create */ - if (isset($_POST['new_terminal'])) { + if ($s_action=="new") { return ($smarty->fetch(get_template_path('chooser.tpl', TRUE))); } - /* Create new default terminal */ - if (isset($_POST['create_system'])) { - $this->dn= "new"; + /******************** + Create new system ... + ********************/ + /* Create new default terminal + * Or create specified object of selected system type, from given incoming object + */ + if (isset($_POST['create_system'])||$s_action=="newsystem"||$s_action == "SelectedSystemType") { + + /* If the current entry is an incoming object + * $sw = System type as posted in new incoming handling dialog + */ + if($s_action == "SelectedSystemType") { + $sw = $s_entry; + }else{ + if(isset($_POST['system'])){ + $sw = $_POST['system']; + }else{ + $sw = $s_entry; + } + $this->dn= "new"; + } $this->acl= array(":all"); - - switch ($_POST['system']){ - case 'terminal': - $this->systab= new termtabs($this->config, - $this->config->data['TABS']['TERMTABS'], $this->dn); - $this->systab->set_acl ($this->acl); - $this->systab->by_object['termgeneric']->cn= "default"; - $this->systab->by_object['termservice']->cn= "default"; - break; - - case 'workstation': - $this->systab= new worktabs($this->config, - $this->config->data['TABS']['WORKTABS'], $this->dn); - $this->systab->set_acl ($this->acl); - $this->systab->by_object['workgeneric']->cn= "wdefault"; - $this->systab->by_object['termservice']->cn= "default"; - break; - - case 'server': - $this->systab= new servtabs($this->config, - $this->config->data['TABS']['SERVTABS'], $this->dn); - $this->systab->set_acl ($this->acl); - break; - - case 'printer': - $this->systab= new printtabs($this->config, - $this->config->data['TABS']['PRINTTABS'], $this->dn); - $this->systab->set_acl ($this->acl); - break; - - case 'phone': - $this->systab= new phonetabs($this->config, - $this->config->data['TABS']['PHONETABS'], $this->dn); - $this->systab->set_acl ($this->acl); - break; - - case 'component': - $this->systab= new componenttabs($this->config, - $this->config->data['TABS']['COMPONENTTABS'], $this->dn); - $this->systab->set_acl ($this->acl); - break; + $tabs = array( + "terminal" => array("CLASS"=>"TERMTABS", "TABNAME"=>"termgeneric", "TABCLASS" =>"termtabs"), + "workstation" => array("CLASS"=>"WORKTABS", "TABNAME"=>"workgeneric", "TABCLASS" =>"worktabs"), + "server" => array("CLASS"=>"SERVTABS", "TABNAME"=>"servgeneric", "TABCLASS" =>"servtabs"), + "printer" => array("CLASS"=>"PRINTTABS", "TABNAME"=>"printgeneric", "TABCLASS" =>"printtabs"), + "phone" => array("CLASS"=>"PHONETABS", "TABNAME"=>"phonegeneric", "TABCLASS" =>"phonetabs"), + "component" => array("CLASS"=>"COMPONENTTABS","TABNAME"=>"componentgeneric","TABCLASS" =>"componenttabs")); + + if(isset($tabs[$sw])){ + $class = $tabs[$sw]["CLASS"]; + $tabname = $tabs[$sw]["TABNAME"]; + $tabclass = $tabs[$sw]["TABCLASS"]; + $this->systab= new $tabclass($this->config, $this->config->data['TABS'][$class], $this->dn); + $this->systab->set_acl ($this->acl); + $this->systab->by_object[$tabname]->base = $this->DivListSystem->selectedBase; + $this->systab->base = $this->DivListSystem->selectedBase; } } + /******************** + Edit system ... + ********************/ + /* User wants to edit data? */ - if ((isset($_POST['select_terminal']) || (isset($_POST['edit_helper']) && $_POST['edit_helper'] == "1")) && isset($_POST['termlist']) && - $_POST['termlist'] != ""){ + if (($s_action == "edit") && (!isset($this->systab->config))){ - /* Get 'dn' from posted 'cn', must be unique */ - $this->dn= trim($_POST['termlist']); + $this->dn= $this->terminals[$s_entry]['dn']; /* Check locking, save current plugin in 'back_plugin', so the dialog knows where to return. */ @@ -176,86 +180,56 @@ class systems extends plugin /* Find out more about the object type */ $ldap= $this->config->get_ldap_link(); - $ldap->cat($this->dn); + $ldap->cat($this->dn, array('objectClass')); $attrs= $ldap->fetch(); $type= $this->get_system_type($attrs['objectClass']); /* Lock the current entry, so everyone will get the above dialog */ - add_lock ($this->dn, $this->ui->dn); - - switch ($type){ - case "terminal": - /* Register systab to trigger edit dialog */ - $this->systab= new termtabs($this->config, - $this->config->data['TABS']['TERMTABS'], $this->dn); - $this->systab->set_acl($acl); - $_SESSION['objectinfo']= $this->dn; - break; - - case "server": - /* Register systab to trigger edit dialog */ - $this->systab= new servtabs($this->config, - $this->config->data['TABS']['SERVTABS'], $this->dn); - $this->systab->set_acl($acl); - $_SESSION['objectinfo']= $this->dn; - break; - - case "workstation": - /* Register systab to trigger edit dialog */ - $this->systab= new worktabs($this->config, - $this->config->data['TABS']['WORKTABS'], $this->dn); - $this->systab->set_acl($acl); - $_SESSION['objectinfo']= $this->dn; - break; - - case "printer": - /* Register systab to trigger edit dialog */ - $this->systab= new printtabs($this->config, - $this->config->data['TABS']['PRINTTABS'], $this->dn); - $this->systab->set_acl($acl); - $_SESSION['objectinfo']= $this->dn; - break; - - case "phone": - /* Register systab to trigger edit dialog */ - $this->systab= new phonetabs($this->config, - $this->config->data['TABS']['PHONETABS'], $this->dn); - $this->systab->set_acl($acl); - $_SESSION['objectinfo']= $this->dn; - break; - - case "component": - /* Register systab to trigger edit dialog */ - $this->systab= new componenttabs($this->config, - $this->config->data['TABS']['COMPONENTTABS'], $this->dn); - $this->systab->set_acl($acl); - $_SESSION['objectinfo']= $this->dn; - break; - - case "winstation": - /* Register systab to trigger edit dialog */ - $this->systab= new wintabs($this->config, - $this->config->data['TABS']['WINTABS'], $this->dn); - $this->systab->set_acl($acl); - $_SESSION['objectinfo']= $this->dn; - break; - - - default: - print_red (_("You can't edit this object type yet!")); - del_lock($this->dn); - break; + $tabs = array( + "terminal" => array("CLASS"=>"TERMTABS", "TABCLASS" =>"termtabs"), + "workstation" => array("CLASS"=>"WORKTABS", "TABCLASS" =>"worktabs"), + "server" => array("CLASS"=>"SERVTABS", "TABCLASS" =>"servtabs"), + "printer" => array("CLASS"=>"PRINTTABS", "TABCLASS" =>"printtabs"), + "phone" => array("CLASS"=>"PHONETABS", "TABCLASS" =>"phonetabs"), + "winstation" => array("CLASS"=>"WINTABS", "TABCLASS" =>"wintabs"), + "component" => array("CLASS"=>"COMPONENTTABS","TABCLASS" =>"componenttabs")); + + + if($type == "NewDevice"){ + $this->systab = new SelectDeviceType($this->config,$this->dn) ; + }elseif(isset($tabs[$type])){ + + $class = $tabs[$type]["CLASS"]; + $tabclass = $tabs[$type]["TABCLASS"]; + + $this->systab= new $tabclass($this->config, $this->config->data['TABS'][$class], $this->dn); + $this->systab->set_acl($acl); + $_SESSION['objectinfo']= $this->dn; + add_lock ($this->dn, $this->ui->dn); + }else{ + print_red (_("You can't edit this object type yet!")); + del_lock($this->dn); } } + + /******************** + Change password ... + ********************/ + /* Set terminals root password */ - if (isset($_POST['set_password']) && isset($_POST['termlist'])){ - $this->dn= trim($_POST['termlist']); + if ($s_action=="change_pw"){ + $this->dn= $this->terminals[$s_entry]['dn']; $_SESSION['objectinfo']= $this->dn; return ($smarty->fetch(get_template_path('password.tpl', TRUE))); } + + /******************** + Password cahnge finish, but check if entered data is ok + ********************/ + /* Correctly specified? */ if (isset($_POST['password_finish'])){ if ($_POST['new_password'] != $_POST['repeated_password']){ @@ -264,6 +238,10 @@ class systems extends plugin } } + /******************** + Password change finish + ********************/ + /* Change terminal password */ if (isset($_POST['password_finish']) && $_POST['new_password'] == $_POST['repeated_password']){ @@ -290,17 +268,27 @@ class systems extends plugin unset($_SESSION['objectinfo']); } + + /******************** + Delete system cancel + ********************/ + /* Delete terminal canceled? */ if (isset($_POST['delete_cancel']) || isset($_POST['password_cancel'])){ del_lock ($this->dn); unset($_SESSION['objectinfo']); } + + /******************** + Delete system, confirm dialog + ********************/ + /* Remove terminal was requested */ - if (isset($_POST['delete_terminal']) && isset($_POST['termlist'])){ + if ($s_action=="del"){ /* Get 'dn' from posted termlinst */ - $this->dn= $_POST['termlist']; + $this->dn= $this->terminals[$s_entry]['dn']; /* Load permissions for selected 'dn' and check if we're allowed to remove this 'dn' */ @@ -316,7 +304,7 @@ class systems extends plugin /* Lock the current entry, so nobody will edit it during deletion */ add_lock ($this->dn, $this->ui->dn); - $smarty->assign("warning", sprintf(_("You're about to delete all information about the component at '%s'."), $this->dn)); + $smarty->assign("warning", sprintf(_("You're about to delete all information about the component at '%s'."), LDAP::fix($this->dn))); return($smarty->fetch(get_template_path('remove.tpl', TRUE))); } else { @@ -326,6 +314,10 @@ class systems extends plugin } } + + /******************** + Delete system, confirmed + ********************/ /* Confirmation for deletion has been passed. Terminal should be deleted. */ if (isset($_POST['delete_terminal_confirm'])){ @@ -335,42 +327,45 @@ class systems extends plugin /* Find out more about the object type */ $ldap= $this->config->get_ldap_link(); - $ldap->cat($this->dn); + $ldap->cat($this->dn, array('objectClass')); $attrs= $ldap->fetch(); $type= $this->get_system_type($attrs['objectClass']); - switch ($type){ - case "terminal": - $tabtype= "termtabs"; - break; - - case "workstation": - $tabtype= "worktabs"; - break; - - case "server": - $tabtype= "servtabs"; - break; - - default: -#print_red (_("You can't remove this object type yet!")); -#del_lock($this->dn); -#return; - $tabtype= "termtabs"; - break; + $tabs = array( + "terminal" => array("CLASS"=>"TERMTABS", "TABCLASS" =>"termtabs"), + "workstation" => array("CLASS"=>"WORKTABS", "TABCLASS" =>"worktabs"), + "server" => array("CLASS"=>"SERVTABS", "TABCLASS" =>"servtabs"), + "printer" => array("CLASS"=>"PRINTTABS", "TABCLASS" =>"printtabs"), + "phone" => array("CLASS"=>"PHONETABS", "TABCLASS" =>"phonetabs"), + "winstation" => array("CLASS"=>"WINTABS", "TABCLASS" =>"wintabs"), + "component" => array("CLASS"=>"COMPONENTTABS","TABCLASS" =>"componenttabs")); + + /* get object type */ + $tabtype = "termtabs"; + $tabobj = "TERMTABS"; + if(isset($tabs[$type])){ + $tabtype = $tabs[$type]['TABCLASS']; + $tabobj = $tabs[$type]['CLASS']; } /* Delete request is permitted, perform LDAP action */ - $this->systab= new $tabtype($this->config, - $this->config->data['TABS']['TERMTABS'], $this->dn); - $this->systab->set_acl(array($this->acl)); - $this->systab->by_object['termgeneric']->remove_from_parent (); + if($tabtype=="phonetabs"){ + $this->systab= new $tabtype($this->config, + $this->config->data['TABS'][$tabobj], $this->dn); + $this->systab->set_acl(array($this->acl)); + $this->systab->by_object['phonegeneric']->remove_from_parent (); + }else{ + $this->systab= new $tabtype($this->config, + $this->config->data['TABS'][$tabobj], $this->dn); + $this->systab->set_acl(array($this->acl)); + $this->systab->delete(); +#$this->systab->by_object['termgeneric']->remove_from_parent (); + } unset ($this->systab); gosa_log ("System object'".$this->dn."' has been removed"); $this->systab= NULL; /* Terminal list has changed, reload it. */ - $this->reload (); } else { /* Normally this shouldn't be reached, send some extra @@ -384,10 +379,14 @@ class systems extends plugin del_lock ($this->dn); } + + /******************** + Edit system type finished, check if everything went ok + ********************/ /* Finish user edit is triggered by the tabulator dialog, so the user wants to save edited data. Check and save at this point. */ - if (isset($_POST['edit_finish'])){ + if ((isset($_POST['edit_finish'])) && (isset($this->systab->config))){ /* Check tabs, will feed message array */ $message= $this->systab->check(); @@ -399,105 +398,102 @@ class systems extends plugin gosa_log ("System object'".$this->dn."' has been saved"); $this->systab->save(); + /* Incoming behavior; you can select a system type and an ogroup membership. + * If this object is an Incoming object, $_SESSION['SelectedSystemType'] isset. + * Check if we must add the new object to an object group. + * + * If this is done, delete the old incoming entry... it is still there, because this is a new + * entry and not an edited one, so we will delete it. + */ + + if(isset($_SESSION['SelectedSystemType'])){ + $SelectedSystemType= $_SESSION['SelectedSystemType']; + unset($_SESSION['SelectedSystemType']); + if($SelectedSystemType['ogroup'] != "none"){ + $og = new ogroup($this->config,$SelectedSystemType['ogroup']); + if($og){ + $og->AddDelMembership($this->systab->dn); + $og->save(); + } + } + if(!isset($ldap)){ + $ldap = $this->config->get_ldap_link(); + } + $ldap->cd ($this->dn); + $ldap->cat($this->dn, array('dn')); + if(count($ldap->fetch())){ + $ldap->cd($this->dn); + $ldap->rmDir($this->dn); + } + $ldap->cd($this->config->current['BASE']); + } + /* Terminal has been saved successfully, remove lock from LDAP. */ if ($this->dn != "new"){ del_lock ($this->dn); } - /* There's no page reload so we have to read new terminals at - this point. */ - $this->reload (); unset ($this->systab); $this->systab= NULL; unset($_SESSION['objectinfo']); - } else { /* Ok. There seem to be errors regarding to the tab data, show message and continue as usual. */ show_errors($message); } - } + /******************** + Edit system was canceled + ********************/ /* Cancel dialogs */ - if (isset($_POST['edit_cancel']) || isset($_POST['password_cancel'])){ + if (isset($_POST['edit_cancel']) || isset($_POST['password_cancel']) || isset($_POST['SystemTypeAborted'])){ if (isset($this->systab)){ del_lock ($this->systab->dn); unset ($this->systab); } $this->systab= NULL; unset($_SESSION['objectinfo']); + + /* Remove ogroup selection, which was set while editing a new incoming entry */ + if(isset($_SESSION['SelectedSystemType'])){ + unset($_SESSION['SelectedSystemType']); + } } + /******************** + Display edit dialog, or some other + ********************/ + /* Show tab dialog if object is present */ - if ($this->systab){ + if (isset($this->systab->config)){ $display= $this->systab->execute(); /* Don't show buttons if tab dialog requests this */ - if (!$this->systab->by_object[$this->systab->current]->dialog){ + if ((isset($this->systab->by_object))&&(!$this->systab->by_object[$this->systab->current]->dialog)){ $display.= "

\n"; - $display.= "\n"; + $display.= "\n"; $display.= " \n"; - $display.= "\n"; + $display.= "\n"; $display.= "

"; } return ($display); } - /* Show main page */ - $smarty->assign("terminals", $this->convert_list($this->terminals)); - $smarty->assign("search_image", get_template_path('images/search.png')); - $smarty->assign("tree_image", get_template_path('images/tree.png')); - $smarty->assign("infoimage", get_template_path('images/info.png')); - $smarty->assign("launchimage", get_template_path('images/launch.png')); - foreach( array("depselect", "user", "regex", "workstations", "thins", "servers", - "winstations", "printers", "phones", "netdev") as $type){ + /* Display dialog with system list */ + $this->DivListSystem->execute(); - $smarty->assign("$type", $terminalfilter[$type]); + /* Add departments if subsearch is disabled */ + if(!$this->DivListSystem->SubSearch){ + $this->DivListSystem->AddDepartments($this->DivListSystem->selectedBase); } - $smarty->assign("deplist", $this->config->idepartments); - - /* Extend if we are not using javascript */ - $smarty->assign("apply", apply_filter()); - $smarty->assign("alphabet", generate_alphabet()); - $smarty->assign("hint", print_sizelimit_warning()); - - return($smarty->fetch(get_template_path('headpage.tpl', TRUE))); + $this->reload(); + $this->DivListSystem->setEntries($this->terminals); + return($this->DivListSystem->Draw()); } - function convert_list($input) - { - $temp= ""; - $conv= array( "D" => "select_default.png", - "T" => "select_terminal.png", - "L" => "select_workstation.png", - "F" => "select_phone.png", - "S" => "select_server.png", - "NT" => "select_new_terminal.png", - "NL" => "select_new_workstation.png", - "W" => "select_winstation.png", - "C" => "select_component.png", - "P" => "select_printer.png"); - - foreach ($input as $key => $value){ - $mode= preg_replace('/^.*(.)$/', '\\1', $value); - if ($mode == "D"){ - $temp= "\n".$temp; - } else { - if (preg_match('/^\+/', $value)){ - $value= preg_replace('/^\+ /', '', $value); - $new= "N"; - } else { - $new= ""; - } - $temp.= "\n"; - } - } - - return ($temp); - } function remove_from_parent() { @@ -509,6 +505,7 @@ class systems extends plugin /* Save data to object */ function save_object() { + $this->DivListSystem->save_object(); } @@ -531,10 +528,6 @@ class systems extends plugin { } - function show_header($button_text, $text, $disabled= FALSE) - { - } - function reload() { /* Load terminal shortcuts */ @@ -546,161 +539,134 @@ class systems extends plugin } } - /* Get config */ - $terminalfilter= get_global('terminalfilter'); - $filter= ""; + /* some var init */ + $res = array(); + $this->terminals = array(); + $userregex = ""; /* Set base for all searches */ - $base= $terminalfilter['depselect']; - - /* Regex filter? */ - if ($terminalfilter['regex'] != ""){ - $regex= $terminalfilter['regex']; - } else { - $regex= "*"; - } + $base= $this->DivListSystem->selectedBase; - /* Get list of terminals to be shown */ - if ($terminalfilter['thins'] == "checked"){ - $termfilter= "(&(objectClass=gotoTerminal)(cn=$regex))"; - } else { - $termfilter= ""; - } - if ($terminalfilter['workstations'] == "checked"){ - $workfilter= "(&(objectClass=gotoWorkstation)(cn=$regex))"; - } else { - $workfilter= ""; - } - if ($terminalfilter['winstations'] == "checked"){ + /* Prepare samba class name */ + $samba =""; + if ($this->DivListSystem->ShowWinWorkstations){ if ($this->config->current['SAMBAVERSION'] == "3"){ $samba= "sambaSamAccount"; } else { $samba= "sambaAccount"; } - $winfilter= "(&(objectClass=$samba)(cn=$regex\$))"; - } else { - $winfilter= ""; - } - if ($terminalfilter['printers'] == "checked"){ - $printfilter= "(&(objectClass=gotoPrinter)(cn=$regex))"; - } else { - $printfilter= ""; - } - if ($terminalfilter['phones'] == "checked"){ - $phonefilter= "(&(objectClass=goFonHardware)(cn=$regex))"; - } else { - $phonefilter= ""; - } - if ($terminalfilter['netdev'] == "checked"){ - $netfilter= "(&(objectClass=ieee802Device)(cn=$regex))"; - } else { - $netfilter= ""; - } - if ($terminalfilter['servers'] == "checked"){ - $serverfilter= "(&(objectClass=goServer)(cn=$regex))"; - } else { - $serverfilter= ""; } - /* User filter? */ - if ($terminalfilter['user'] != "" && $terminalfilter['user'] != "*"){ - $filter.= "(gotoLastUser=".$terminalfilter['user'].")"; + /* This array represents the combination between checkboxes and search filters */ + $objs = array( "ShowServers" => array("CLASS" => "goServer" ,"TREE" => "ou=servers,ou=systems," ), + "ShowTerminals" => array("CLASS" => "goHard" ,"TREE" => "ou=terminals,ou=systems,"), + "ShowPrinters" => array("CLASS" => "gotoPrinter" ,"TREE" => "ou=printers,ou=systems," ), + "ShowDevices" => array("CLASS" => "ieee802Device" ,"TREE" => "ou=netdevices,ou=systems," ), + "ShowPhones" => array("CLASS" => "goFonHardware" ,"TREE" => "ou=phones,ou=systems," ), + "ShowWorkstations" => array("CLASS" => "gotoWorkstation" ,"TREE" => "ou=workstations,ou=systems," ), + "ShowWinWorkstations"=> array("CLASS" => $samba ,"TREE" => get_winstations_ou() )); + + /* Include the 'Display Systems of user' attribute */ + if ((!empty($this->DivListSystem->UserRegex)) && ($this->DivListSystem->UserRegex!= "*")){ + $userregex = "(gotoLastUser=".$this->DivListSystem->UserRegex.")"; + } + + /* Walk through all possible search combinations, and search for some objects if the checkbox is enabled */ + foreach($objs as $checkBox => $oc){ + if($this->DivListSystem->$checkBox){ + if($this->DivListSystem->SubSearch){ + if($oc['CLASS'] != ""){ + $filter = "(|(&".$userregex."(objectClass=".$oc['CLASS'].")(cn=".$this->DivListSystem->Regex.")))"; + $res = array_merge($res,get_list($filter,$this->ui->subtreeACL, $base, + array("cn", "description", "macAddress", "objectClass", "sambaDomainName", "FAIstate"), GL_NONE | GL_SUBSEARCH | GL_SIZELIMIT)); + } + }else{ + /* User filter? */ + if($oc['CLASS'] != ""){ + $filter = "(|(&".$userregex."(objectClass=".$oc['CLASS'].")(cn=".$this->DivListSystem->Regex.")))"; + $res = array_merge($res,get_list($filter,$this->ui->subtreeACL, $oc['TREE'].$base, + array("cn", "description", "macAddress", "objectClass", "sambaDomainName", "FAIstate"), GL_NONE | GL_SIZELIMIT)); + } + } + } } - /* Get all gotoTerminal's */ - $this->terminals= array(); + /* Search for incoming objects */ + $filter = "(|(&".$userregex."(objectClass=goHard)(cn=".$this->DivListSystem->Regex.")))"; + $res = array_merge($res,get_list($filter,$this->ui->subtreeACL, "ou=incoming,".$base, + array("cn", "description", "macAddress", "objectClass", "sambaDomainName"), GL_NONE | GL_SIZELIMIT)); - $res= get_list($this->ui->subtreeACL, "(|$termfilter$workfilter$winfilter$printfilter$phonefilter$serverfilter$netfilter)", TRUE, $base, array("cn", "description", "macAddress", "objectClass", "sambaDomainName"), TRUE); + /* Get all gotoTerminal's */ foreach ($res as $value){ - /* Look for new terminals and mark them with '+' */ - $tmp= ""; - if (preg_match('/,ou=terminals,ou=systems,/i', $value["dn"])){ - $tmp= preg_replace("/^[^,]+,[^o]*ou=terminals,ou=systems,/i", "", $value["dn"]); - } - if (preg_match('/,ou=workstations,ou=systems,/i', $value["dn"])){ - $tmp= preg_replace("/^[^,]+,[^o]*ou=workstations,ou=systems,/i", "", $value["dn"]); - } - if (preg_match('/,ou=servers,ou=systems,/i', $value["dn"])){ - $tmp= preg_replace("/^[^,]+,[^o]*ou=servers,ou=systems,/i", "", $value["dn"]); - } - if (preg_match('/,'.get_winstations_ou().'/i', $value["dn"])){ - $tmp= preg_replace("/^[^,]+,[^o]*".get_winstations_ou()."/i", "", $value["dn"]); - } - if (preg_match('/,ou=printers,ou=systems,/i', $value["dn"])){ - $tmp= preg_replace("/^[^,]+,[^o]*ou=printers,ou=systems,/i", "", $value["dn"]); - } - if (preg_match('/,ou=phones,ou=systems,/i', $value["dn"])){ - $tmp= preg_replace("/^[^,]+,[^o]*ou=phones,ou=systems,/i", "", $value["dn"]); - } - if (preg_match('/,ou=netdevices,ou=systems,/i', $value["dn"])){ - $tmp= preg_replace("/^[^,]+,[^o]*ou=netdevices,ou=systems,/i", "", $value["dn"]); - } - if ($tmp == ""){ - $tmp= $value["dn"]; - } - if (preg_match ("/,ou=incoming,/i", $tmp)){ - if (in_array('gotoTerminal', $value['objectClass'])){ - $add= "+ "._("New terminal"); - } - if (in_array('gotoWorkstation', $value['objectClass'])){ - $add= "+ "._("New workstation"); + $tmp= $value['dn']; + $add= ""; + + /* Extract base */ + foreach($objs as $obj){ + if(preg_match("/,".$obj['TREE']."/i",$value['dn'])){ + $tmp = trim( preg_replace("/^[^,]+,[^o]*".$obj['TREE']."/i","",$value['dn'])); } - } else { - $add= ""; } - if (in_array ($tmp, $responsible) || $add != ""){ - if (in_array('gotoTerminal', $value["objectClass"])){ - if (isset($value["macAddress"][0]) && - $value["macAddress"][0] != "-"){ - - $this->terminals[$value["dn"]]= $add." ". - $value["cn"][0]. - " [".$value["macAddress"][0]."]T"; - } else { - $location= array_search($tmp, $this->config->departments); - $this->terminals[$value["dn"]]= _("Thin client template for"). - " $location"."D"; - } - } elseif (in_array('gotoWorkstation', $value["objectClass"])){ - if (isset($value["macAddress"][0]) && - $value["macAddress"][0] != "-"){ - - $this->terminals[$value["dn"]]= $add." ". - $value["cn"][0]. - " [".$value["macAddress"][0]."]L"; + /* check if current object is a new one */ + if (preg_match ("/,ou=incoming,/i", $tmp)){ + if (in_array_ics('gotoTerminal', $value['objectClass'])){ + $add= "- "._("New terminal"); + }elseif (in_array_ics('gotoWorkstation', $value['objectClass'])){ + $add= "- "._("New workstation"); + }elseif (in_array_ics('GOhard', $value['objectClass'])){ + $add= "- "._("New Device"); + } + } + + /* Detect type of object and create an entry for $this->terminals */ + $terminal = array(); + if ((in_array ($tmp, $responsible)) || ($add != "")){ + if (in_array_ics('gotoTerminal', $value["objectClass"])){ + if (isset($value["macAddress"][0]) && $value["macAddress"][0] != "-"){ + $terminal = $value; + $terminal['type'] = "T"; + $terminal['is_new'] = $add; } else { - $location= array_search($tmp, $this->config->departments); - $this->terminals[$value["dn"]]= _("Workstation template for"). - " $location"."D"; + $terminal = $value; + $terminal['type'] = "D"; + $terminal['message'] = _("Terminal template for"); + $terminal['location'] = array_search($tmp, $this->config->departments); } - } elseif (in_array('gotoPrinter', $value["objectClass"])){ - if (isset($value['description'][0])){ - $this->terminals[$value['dn']]= $value['cn'][0]." [".$value['description'][0]."]P"; + } elseif (in_array_ics('gotoWorkstation', $value["objectClass"])){ + if (isset($value["macAddress"][0]) && $value["macAddress"][0] != "-"){ + $terminal = $value; + $terminal['type'] = "L"; + $terminal['is_new'] = $add; } else { - $this->terminals[$value['dn']]= $value['cn'][0]."P"; + $terminal = $value; + $terminal['type'] = "D"; + $terminal['location'] = array_search($tmp, $this->config->departments); + $terminal['message'] = _("Workstation template for"); } - } elseif (in_array('goServer', $value["objectClass"])){ - if (isset($value['description'][0])){ - $this->terminals[$value['dn']]= $value['cn'][0]." [".$value['description'][0]."]S"; - } else { - $this->terminals[$value['dn']]= $value['cn'][0]."S"; + if (isset($value["FAIstate"][0])){ + $terminal['type']= $this->getState($terminal['type'], $value["FAIstate"][0]); } - } elseif (in_array('goFonHardware', $value["objectClass"])){ - - if (isset($value['description'][0])){ - $this->terminals[$value['dn']]= $value['cn'][0]." [".$value['description'][0]."]F"; - } else { - $this->terminals[$value['dn']]= $value['cn'][0]."F"; - } - } elseif (in_array('ieee802Device', $value["objectClass"])){ - - if (isset($value['description'][0])){ - $this->terminals[$value['dn']]= $value['cn'][0]." [".$value['description'][0]."]C"; - } else { - $this->terminals[$value['dn']]= $value['cn'][0]."C"; + } elseif (in_array_ics('gotoPrinter', $value["objectClass"])){ + $terminal = $value; + $terminal['type'] = "P"; + } elseif (in_array_ics('goServer', $value["objectClass"])){ + $terminal = $value; + $terminal['type'] = "S"; + if (isset($value["FAIstate"][0])){ + $terminal['type']= $this->getState($terminal['type'], $value["FAIstate"][0]); } + } elseif (in_array_ics('goFonHardware', $value["objectClass"])){ + $terminal = $value; + $terminal['type'] = "F"; + }elseif (in_array_ics("GOhard",$value['objectClass'])){ + $terminal = $value; + $terminal['type'] = "Q"; + $terminal['is_new'] = $add; + } elseif (in_array_ics('ieee802Device', $value["objectClass"])){ + $terminal = $value; + $terminal['type'] = "C"; } else{ $name= preg_replace('/\$$/', '', $value['cn'][0]); if (isset($value['sambaDomainName'])){ @@ -708,11 +674,23 @@ class systems extends plugin } else { $domain= ""; } - $this->terminals[$value['dn']]= $name.$domain."W"; + $terminal=$value; + $terminal['type'] ="W"; + $terminal['domain'] = $name.$domain; } + $this->terminals[]=$terminal; } } - natcasesort ($this->terminals); + + $tmp=array(); + foreach($this->terminals as $tkey => $val ){ + $tmp[strtolower($val['cn'][0]).$val['dn']]=$val; + } + ksort($tmp); + $this->terminals=array(); + foreach($tmp as $val){ + $this->terminals[]=$val; + } reset ($this->terminals); } @@ -727,29 +705,83 @@ class systems extends plugin function get_system_type($classes) { $type= ""; - - if (in_array('ieee802Device', $classes)){ + if (in_array_ics('ieee802Device', $classes)){ $type= "component"; - } - if (in_array('gotoTerminal', $classes)){ + }elseif (in_array_ics('gotoTerminal', $classes)){ $type= "terminal"; - } - if (in_array('gotoWorkstation', $classes)){ + }elseif (in_array_ics('gotoWorkstation', $classes)){ $type= "workstation"; - } - if (in_array('gotoPrinter', $classes)){ + }elseif (in_array_ics('gotoPrinter', $classes)){ $type= "printer"; - } - if (in_array('goFonHardware', $classes)){ + }elseif (in_array_ics('goFonHardware', $classes)){ $type= "phone"; - } - if (in_array('goServer', $classes)){ + }elseif (in_array_ics('goServer', $classes)){ $type= "server"; - } - if (in_array('sambaAccount', $classes) || - in_array('sambaSamAccount', $classes)){ + }elseif (in_array_ics('GOhard', $classes)){ + $type= "NewDevice"; + }elseif (in_array_ics('sambaAccount', $classes) || + in_array_ics('sambaSamAccount', $classes)){ $type= "winstation"; } + return ($type); + } + + + function convert_list($input) + { + $temp= ""; + $conv= array( + "NQ" => array("select_newsystem.png",_("New System from incoming")), + "D" => array("select_default.png",_("Template")), + "T" => array("select_terminal.png",_("Terminal")), + "L" => array("select_workstation.png",_("Workstation")), + "GL" => array("select_workstation_green.png",_("Workstation is installing")), + "YL" => array("select_workstation_yellow.png",_("Workstation is waiting for action")), + "RL" => array("select_workstation_red.png",_("Workstation installation failed")), + "F" => array("select_phone.png",_("Phone")), + "S" => array("select_server.png",_("Server")), + "GS" => array("select_server_green.png",_("Server is installing")), + "YS" => array("select_server_yellow.png",_("Server is waiting for action")), + "RS" => array("select_server_red.png",_("Server installation failed")), + "W" => array("select_winstation.png",_("Winstation")), + "C" => array("select_component.png",_("Network Device")), + "NT"=> array("select_new_terminal.png",_("New Terminal")), + "NL"=> array("select_new_workstation.png",_("New Workstation")), + "P" => array("select_printer.png",_("Printer"))); + + if((isset($input['is_new']))&&(!empty($input['is_new']))){ + $input['type']="N".$input['type']; + } + foreach ($conv as $key => $value){ + if($input['type']==$key){ + $tmp['img'] ="".$key.""; + $tmp['class']=$key; + return $tmp; + } + } + } + + + function getState($type, $state) + { + switch (preg_replace('/:.*$/', '', $state)) { + case 'installing': + $type= 'G'.$type; + break; + case 'error': + $type= 'R'.$type; + break; + case 'install': + $type= 'Y'.$type; + break; + case 'sysinfo': + $type= 'Y'.$type; + break; + case 'softupdate': + $type= 'Y'.$type; + break; + } + return ($type); }