X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=plugins%2Fadmin%2Fsystems%2Fclass_servGeneric.inc;h=38bcccb65473bf55e68656c26b026aa0bf8edef6;hb=bcd990bd4ee1bbd8abfd2093f0879e8afdd8ca0b;hp=12c1c309dc3be2ddb7b9c2333fd92a30ec828883;hpb=c02a9629a834fa473d9fb709e9ca3d531c936c5e;p=gosa.git diff --git a/plugins/admin/systems/class_servGeneric.inc b/plugins/admin/systems/class_servGeneric.inc index 12c1c309d..38bcccb65 100644 --- a/plugins/admin/systems/class_servGeneric.inc +++ b/plugins/admin/systems/class_servGeneric.inc @@ -15,19 +15,34 @@ class servgeneric extends plugin var $base= ""; var $cn= ""; var $l= ""; - var $macAddress= ""; - var $ipHostNumber= ""; var $description= ""; var $orig_dn= ""; + var $didAction= FALSE; /* attribute list for save action */ - var $attributes= array("cn", "description", "macAddress", "ipHostNumber"); - var $objectclasses= array("top", "goServer"); + var $attributes= array("cn", "description","gotoMode"); + var $objectclasses= array("top", "GOhard", "goServer"); + + var $gotoMode= "locked"; + + var $netConfigDNS; + var $modes = array(); + + var $mapActions = array("reboot" => "", + "instant_update" => "softupdate", + "update" => "sceduledupdate", + "reinstall" => "install", + "rescan" => "", + "memcheck" => "memcheck", + "sysinfo" => "sysinfo"); function servgeneric ($config, $dn= NULL) { plugin::plugin ($config, $dn); + $this->modes["active"]= _("Activated"); + $this->modes["locked"]= _("Locked"); + /* Set base */ if ($this->dn == "new"){ $ui= get_userinfo(); @@ -36,13 +51,16 @@ class servgeneric extends plugin } else { $this->base= preg_replace ("/^[^,]+,[^,]+,[^,]+,/", "", $this->dn); } - + $this->netConfigDNS = new termDNS($this->config,$this->dn,$this->objectclasses); /* Save dn for later references */ $this->orig_dn= $this->dn; } function execute() { + /* Call parent execute */ + plugin::execute(); + /* Do we represent a valid server? */ if (!$this->is_account && $this->parent == NULL){ $display= "\"\" ". @@ -52,42 +70,71 @@ class servgeneric extends plugin /* Check for action */ if (isset($_POST['action'])){ - switch($_POST['action']){ - case 'wake': - $cmd= $this->search($this->config->data['TABS'], "servgeneric", "WAKECMD"); - if ($cmd == ""){ - print_red(_("No WAKECMD definition found in your gosa.conf")); - } else { - exec ($cmd." ".$this->macAddress, $dummy, $retval); - if ($retval != 0){ - print_red(sprintf(_("Execution of '%s' failed!"), $cmd)); - } + $cmd= search_config($this->config->data['TABS'], "workgeneric", "ACTIONCMD"); + if ($cmd == ""){ + print_red(_("No ACTIONCMD definition found in your gosa.conf")); + } else { + + exec ($cmd." ".$this->netConfigDNS->macAddress." ".escapeshellarg($_POST['saction']), $dummy, $retval); + if ($retval != 0){ + print_red(sprintf(_("Execution of '%s' failed!"), $cmd)); + } else { + $this->didAction= TRUE; + + /* Set FAIstate */ + $ldap = $this->config->get_ldap_link(); + $ldap->cd($this->config->current['BASE']); + $ldap->cat($this->dn,array("objectClass")); + $res = $ldap->fetch(); + + $attrs = array(); + $attrs['FAIstate'] = ""; + if(isset($this->mapActions[$_POST['saction']])){ + $attrs['FAIstate'] = $this->mapActions[$_POST ['saction']]; } - break; - - case 'reboot': - $cmd= $this->search($this->config->data['TABS'], "servgeneric", "REBOOTCMD"); - if ($cmd == ""){ - print_red(_("No REBOOTCMD definition found in your gosa.conf")); - } else { - exec ($cmd." ".$this->cn, $dummy, $retval); - if ($retval != 0){ - print_red(sprintf(_("Execution of '%s' failed!"), $cmd)); - } + + for($i = 0; $i < $res['objectClass']['count'] ; $i ++){ + $attrs['objectClass'][] = $res['objectClass'][$i]; } - break; - - case 'halt': - $cmd= $this->search($this->config->data['TABS'], "servgeneric", "HALTCMD"); - if ($cmd == ""){ - print_red(_("No HALTCMD definition found in your gosa.conf")); - } else { - exec ($cmd." ".$this->cn, $dummy, $retval); - if ($retval != 0){ - print_red(sprintf(_("Execution of '%s' failed!"), $cmd)); - } + + if(($attrs['FAIstate'] != "") && (!in_array("FAIobject",$attrs['objectClass']))){ + $attrs['objectClass'][] = "FAIobject"; + } + + if($attrs['FAIstate'] == ""){ + #FIXME we should check if FAIobject is used anymore + $attrs['FAIstate'] = array(); } - break; + + $ldap->cd($this->dn); + $ldap->modify($attrs); + show_ldap_error($ldap->get_error(), sprintf(_("Saving of system server/generic (FAIstate) with dn '%s' failed."),$this->dn)); + } + } + } + + /* Base select dialog */ + $once = true; + foreach($_POST as $name => $value){ + if(preg_match("/^chooseBase/",$name) && $once){ + $once = false; + $this->dialog = new baseSelectDialog($this->config,$this); + $this->dialog->setCurrentBase($this->base); + } + } + + /* Dialog handling */ + if(is_object($this->dialog)){ + /* Must be called before save_object */ + $this->dialog->save_object(); + + if($this->dialog->isClosed()){ + $this->dialog = false; + }elseif($this->dialog->isSelected()){ + $this->base = $this->dialog->isSelected(); + $this->dialog= false; + }else{ + return($this->dialog->execute()); } } @@ -100,6 +147,8 @@ class servgeneric extends plugin $smarty->assign($attr."ACL", chkacl($this->acl, $attr)); $smarty->assign("$attr", $this->$attr); } + $smarty->assign("baseACL", chkacl($this->acl, "base")); + $smarty->assign("staticAddress", ""); $smarty->assign("base_select", $this->base); @@ -109,23 +158,34 @@ class servgeneric extends plugin /* Offline */ if ($retval == 0){ - $smarty->assign("actions", array("halt" => _("Switch off"), "reboot" => _("Reboot"))); + $smarty->assign("actions", array("halt" => _("Switch off"), "reboot" => _("Reboot"), + "instant_update" => _("Instant update"), + "update" => _("Scheduled update"), + "reinstall" => _("Reinstall"), + "rescan" => _("Rescan hardware"), + "memcheck" => _("Memory test"), + "sysinfo" => _("System analysis"))); } else { - $smarty->assign("actions", array("wake" => _("Wake up"))); + $smarty->assign("actions", array("wake" => _("Wake up"), + "reinstall" => _("Reinstall"), + "update" => _("Scheduled update"), + "memcheck" => _("Memory test"), + "sysinfo" => _("System analysis"))); } - /* Show main page */ - $smarty->assign("netconfig", dirname(__FILE__)."/network.tpl"); + $smarty->assign("netconfig", $this->netConfigDNS->execute()); + $smarty->assign("modes", $this->modes); return($smarty->fetch (get_template_path('server.tpl', TRUE))); } function remove_from_parent() { + $this->netConfigDNS->remove_from_parent(); $ldap= $this->config->get_ldap_link(); $ldap->rmdir($this->dn); - show_ldap_error($ldap->get_error()); + show_ldap_error($ldap->get_error(), sprintf(_("Removing of system server/generic with dn '%s' failed."),$this->dn)); /* Delete references to object groups */ $ldap->cd ($this->config->current['BASE']); @@ -135,8 +195,7 @@ class servgeneric extends plugin unset($og->member[$this->dn]); $og->save (); } - - $this->handle_post_events("remove"); + $this->handle_post_events("remove", array("macAddress" => $this->netConfigDNS->macAddress)); } @@ -144,7 +203,7 @@ class servgeneric extends plugin function save_object() { plugin::save_object(); - + $this->netConfigDNS->save_object(); /* Save base, since this is no LDAP attribute */ if (isset($_POST['base']) && chkacl($this->acl, "create") == ""){ $this->base= $_POST['base']; @@ -155,7 +214,9 @@ class servgeneric extends plugin /* Check supplied data */ function check() { - $message= array(); + /* Call common method to give check the hook */ + $message= plugin::check(); + $message= array_merge($message, $this->netConfigDNS->check()); $this->dn= "cn=".$this->cn.",ou=servers,ou=systems,".$this->base; /* must: cn */ @@ -177,8 +238,10 @@ class servgeneric extends plugin if ($ldap->count() != 0){ while ($attrs= $ldap->fetch()){ if ($attrs['dn'] != $this->orig_dn){ + if(!preg_match("/,ou=incoming,/",$attrs['dn'])){ $message[]= sprintf (_("There is already an entry '%s' in the base choosen by you"), $this->cn); break; + } } } } @@ -214,20 +277,57 @@ class servgeneric extends plugin $ldap->add($this->attrs); $mode= "add"; } else { - if ($this->orig_dn != $this->dn){ - $this->move($this->orig_dn, $this->dn); + + /* cn is not case sensitive for ldap, but for php it is!! */ + if($this->config->current['DNMODE'] == "cn"){ + if (strtolower($this->orig_dn) != (strtolower($this->dn))){ + $this->move($this->orig_dn, $this->dn); + plugin::save(); + } + }else{ + if ($this->orig_dn != $this->dn){ + $this->move($this->orig_dn, $this->dn); + plugin::save(); + } } - + $ldap->cd($this->dn); - $ldap->modify($this->attrs); + $this->cleanup(); + $ldap->modify ($this->attrs); + $mode= "modify"; } - show_ldap_error($ldap->get_error()); + show_ldap_error($ldap->get_error(), sprintf(_("Saving of system server/generic with dn '%s' failed."),$this->dn)); + $this->netConfigDNS->cn = $this->cn; + $this->netConfigDNS->save($this->dn); /* Optionally execute a command after we're done */ - $this->handle_post_events($mode); + if(!$this->didAction){ + $this->handle_post_events($mode); + } } + + /* Return plugin informations for acl handling */ + function plInfo() + { + return (array( + "plShortName" => _("Generic"), + "plDescription" => _("Server generic"), + "plSelfModify" => FALSE, + "plDepends" => array(), + "plPriority" => 0, + "plSection" => array("administration"), + "plCategory" => array("server" => array("description" => _("Server"), + "objectClass" => "gotoWorkstation")), + "plProvidedAcls"=> array( + "cn" => _("Name"), + "description" => _("Description"), + "gotoMode" => _("Goto mode"), + "base" => _("Base"), + "FAIstate" => _("Action flag")) + )); + } } // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler: