"Eins ist toll", "zwei" => "Zwei ist noch besser");
/* Generic terminal attributes */
var $interfaces= array();
/* Needed values and lists */
var $base= "";
var $cn= "";
var $description= "";
var $orig_dn= "";
var $shadowLastChange="";
var $uidNumber="";
var $gidNumber="";
var $loginShell="";
var $gecos="";
var $shadowMin="";
var $shadowWarning="";
var $shadowInactive="";
var $uid="";
var $sn="";
var $givenName="";
var $homeDirectory="";
var $sambaSID="";
var $sambaPrimaryGroupSID="";
var $displayName="";
var $sambaPwdMustChange="";
var $sambaNTPassword="";
var $sambaPwdLastSet="";
var $sambaAcctFlags="";
var $netConfigDNS;
/* attribute list for save action */
var $ignore_account= TRUE;
var $attributes = array("cn", "description","shadowLastChange",
"uidNumber","gidNumber","loginShell","gecos","shadowMin","shadowWarning",
"shadowInactive","uid","cn","sn","givenName","homeDirectory","sambaSID",
"sambaPrimaryGroupSID","displayName", "sambaPwdMustChange",
"sambaNTPassword","sambaPwdLastSet","sambaAcctFlags");
var $objectclasses= array("posixAccount","person","organizationalPerson","inetOrgPerson","gosaAccount","shadowAccount","sambaSamAccount","top");
function wingeneric ($config, $dn= NULL)
{
plugin::plugin ($config, $dn);
$this->netConfigDNS = new termDNS($this->config,$this->dn,$this->objectclasses);
/* 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()
{
/* Call parent execute */
plugin::execute();
/* Do we represent a valid phone? */
if (!$this->is_account && $this->parent == NULL){
$display= " ".
_("This 'dn' has no network features.")."";
return($display);
}
/* 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->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());
}
}
/* Fill templating stuff */
$smarty= get_smarty();
// Undefined index in wingeneric.tpl ...
$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("base_select", $this->base);
/* Show main page */
$smarty->assign("netconfig", $this->netConfigDNS->execute());
return($smarty->fetch (get_template_path('wingeneric.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());
$this->handle_post_events("remove");
/* 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 ();
}
}
/* Save data to object */
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'];
}
}
/* Check supplied data */
function check()
{
/* Call common method to give check the hook */
$message= plugin::check();
$message= array_merge($message, $this->netConfigDNS->check());
$this->dn= "cn=".$this->cn.",ou=netdevices,ou=systems,".$this->base;
$ui= get_userinfo();
$acl= get_permissions ($this->dn, $ui->subtreeACL);
$acl= get_module_permission($acl, "component", $this->dn);
if (chkacl($acl, "create") != ""){
$message[]= _("You have no permissions to create a component 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);
$this->handle_post_events("add");
} else {
if ($this->orig_dn != $this->dn){
$this->move($this->orig_dn, $this->dn);
}
$ldap->cd($this->dn);
$this->cleanup();
$ldap->modify ($this->attrs);
$this->handle_post_events("modify");
}
$this->netConfigDNS->cn = $this->cn;
$this->netConfigDNS->save($this->dn);
show_ldap_error($ldap->get_error());
/* Optionally execute a command after we're done */
$this->postcreate();
}
}
// vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
?>