"Eins ist toll", "zwei" => "Zwei ist noch besser"); /* Generic terminal attributes */ var $ignore_account= TRUE; var $interfaces= array(); /* Needed values and lists */ var $base= ""; var $cn= ""; var $l= ""; var $macAddress= ""; var $ipHostNumber= ""; var $description= ""; var $orig_dn= ""; /* attribute list for save action */ var $attributes= array("cn", "description", "macAddress", "ipHostNumber"); var $objectclasses= array("top", "goServer"); function servgeneric ($config, $dn= NULL) { plugin::plugin ($config, $dn); /* Set base */ if ($this->dn == "new"){ $ui= get_userinfo(); $this->base= dn2base($ui->dn); $this->cn= ""; } else { $this->base= preg_replace ("/^[^,]+,[^,]+,[^,]+,/", "", $this->dn); } /* Save dn for later references */ $this->orig_dn= $this->dn; } function execute() { /* Do we represent a valid server? */ if (!$this->is_account && $this->parent == NULL){ $display= "\"\" ". _("This 'dn' has no server features.").""; return($display); } /* Check for action */ if (isset($_POST['action'])){ switch($_POST['action']){ case 'wake': $cmd= search_config($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)); } } break; case 'reboot': $cmd= search_config($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)); } } break; case 'halt': $cmd= search_config($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)); } } break; } } /* Fill templating stuff */ $smarty= get_smarty(); $smarty->assign("bases", $this->config->idepartments); /* Assign attributes */ foreach ($this->attributes as $attr){ $smarty->assign($attr."ACL", chkacl($this->acl, $attr)); $smarty->assign("$attr", $this->$attr); } $smarty->assign("staticAddress", ""); $smarty->assign("base_select", $this->base); /* Assign status */ $query= "fping -q -r 1 -t 500 ".$this->cn; exec ($query, $dummy, $retval); /* Offline */ if ($retval == 0){ $smarty->assign("actions", array("halt" => _("Switch off"), "reboot" => _("Reboot"))); } else { $smarty->assign("actions", array("wake" => _("Wake up"))); } /* Show main page */ $smarty->assign("netconfig", dirname(__FILE__)."/network.tpl"); return($smarty->fetch (get_template_path('server.tpl', TRUE))); } function remove_from_parent() { $ldap= $this->config->get_ldap_link(); $ldap->rmdir($this->dn); show_ldap_error($ldap->get_error()); /* Delete references to object groups */ $ldap->cd ($this->config->current['BASE']); $ldap->search ("(&(objectClass=gosaGroupOfNames)(member=".$this->dn."))", array("cn")); while ($ldap->fetch()){ $og= new ogroup($this->config, $ldap->getDN()); unset($og->member[$this->dn]); $og->save (); } $this->handle_post_events("remove"); } /* Save data to object */ function save_object() { plugin::save_object(); /* Save base, since this is no LDAP attribute */ if (isset($_POST['base']) && chkacl($this->acl, "create") == ""){ $this->base= $_POST['base']; } } /* Check supplied data */ function check() { $message= array(); $this->dn= "cn=".$this->cn.",ou=servers,ou=systems,".$this->base; /* must: cn */ if ($this->cn == "" && chkacl ($this->acl, "cn") == ""){ $message[]= _("The required field 'Server name' is not set."); } $ui= get_userinfo(); $acl= get_permissions ($this->dn, $ui->subtreeACL); $acl= get_module_permission($acl, "server", $this->dn); if (chkacl($acl, "create") != ""){ $message[]= _("You have no permissions to create a server on this 'Base'."); } if ($this->orig_dn != $this->dn){ $ldap= $this->config->get_ldap_link(); $ldap->cd ($this->base); $ldap->search ("(cn=".$this->cn.")", array("cn")); if ($ldap->count() != 0){ while ($attrs= $ldap->fetch()){ if ($attrs['dn'] != $this->orig_dn){ $message[]= sprintf (_("There is already an entry '%s' in the base choosen by you"), $this->cn); break; } } } } return ($message); } /* Save to LDAP */ function save() { plugin::save(); /* Remove all empty values */ if ($this->orig_dn == 'new'){ $attrs= array(); foreach ($this->attrs as $key => $val){ if (is_array($val) && count($val) == 0){ continue; } $attrs[$key]= $val; } $this->attrs= $attrs; } /* Write back to ldap */ $ldap= $this->config->get_ldap_link(); if ($this->orig_dn == 'new'){ $ldap->cd($this->config->current['BASE']); $ldap->create_missing_trees(preg_replace('/^[^,]+,/', '', $this->dn)); $ldap->cd($this->dn); $ldap->add($this->attrs); $mode= "add"; } else { if ($this->orig_dn != $this->dn){ $this->move($this->orig_dn, $this->dn); plugin::save(); } $ldap->cd($this->dn); $ldap->modify($this->attrs); $mode= "modify"; } show_ldap_error($ldap->get_error()); /* Optionally execute a command after we're done */ $this->handle_post_events($mode); } } // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler: ?>