config= $config; $this->ui= get_userinfo(); /* Fill translation array */ $this->obtypes= array( "posixAccount" => _("UNIX accounts"), "posixGroup" => _("Groups"), "gosaDepartment" => _("Departments"), "gosaApplication" => _("Applications"), "goServer" => _("Servers"), "gotoTerminal" => _("Thin Clients"), "gotoWorkstation" => _("Workstations"), "goFonHardware" => _("Phone"), "gotoPrinter" => _("Printer")); asort($this->obtypes); /* Get global filter config */ if (!is_global("ogroupfilter")){ $ui= get_userinfo(); $base= get_base_from_people($ui->dn); $ogroupfilter= array( "usergroups" => "checked", "groupgroups" => "checked", "appgroups" => "checked", "depgroups" => "checked", "servergroups" => "checked", "wsgroups" => "checked", "prtgroups" => "checked", "tcgroups" => "checked", "fongroups" => "checked", "depselect" => $base, "regex" => "*"); register_global("ogroupfilter", $ogroupfilter); } } function execute() { /* Call parent execute */ plugin::execute(); /* Prepare template */ $smarty= get_smarty(); $ogroupfilter= get_global("ogroupfilter"); $s_action = ""; $s_entry = ""; foreach( array("depselect", "regex") as $type){ if (isset($_POST[$type])){ $ogroupfilter[$type]= $_POST[$type]; } } if (isset($_POST['Ogroup_dialog_posted'])){ foreach( array("usergroups", "groupgroups", "appgroups", "depgroups", "servergroups", "wsgroups", "prtgroups", "tcgroups", "fongroups") as $type){ if (isset($_POST[$type])) { $ogroupfilter[$type]= "checked"; } else { $ogroupfilter[$type]= ""; } } } if (isset($_GET['search'])){ $s= mb_substr($_GET['search'], 0, 1, "UTF8")."*"; if ($s == "**"){ $s= "*"; } $ogroupfilter['regex']= $s; } /* Test Posts */ foreach($_POST as $key => $val){ // Post for delete if(preg_match("/group_del.*/",$key)){ $s_action = "del"; $s_entry = preg_replace("/group_".$s_action."_/i","",$key); // Post for edit }elseif(preg_match("/group_edit_.*/",$key)){ $s_action="edit"; $s_entry = preg_replace("/group_".$s_action."_/i","",$key); // Post for new }elseif(preg_match("/dep_back.*/i",$key)){ $s_action="back"; }elseif(preg_match("/group_new.*/",$key)){ $s_action="new"; }elseif(preg_match("/dep_home.*/i",$key)){ $s_action="home"; }elseif(preg_match("/group_tplnew.*/i",$key)){ $s_action="new_tpl"; }elseif(preg_match("/group_chgpw.*/i",$key)){ $s_action="change_pw"; $s_entry = preg_replace("/group_chgpw_/i","",$key); }elseif(preg_match("/dep_root.*/i",$key)){ $s_action="root"; } } $s_entry = preg_replace("/_.$/","",$s_entry); /* Department changed? */ if(isset($_POST['depselect']) && $_POST['depselect']){ $ogroupfilter['depselect']= $_POST['depselect']; } /* Start for New List Managment */ if(isset($_GET['act'])&&($_GET['act']=="dep_open")){ $s_action="open"; $s_entry = base64_decode($_GET['dep_id']); $ogroupfilter['depselect']= "".$this->config->departments[trim($s_entry)]; } /* If Backbutton is Posted */ if($s_action=="back"){ $base_back = preg_replace("/^[^,]+,/","",$ogroupfilter['depselect']); $base_back = convert_department_dn($base_back); if(isset($this->config->departments[trim($base_back)])){ $ogroupfilter['depselect']= $this->config->departments[trim($base_back)]; }else{ $ogroupfilter['depselect']= $this->config->departments["/"]; } register_global("ogroupfilter", $ogroupfilter); } /* Homebutton is posted */ if($s_action=="home"){ $ogroupfilter['depselect']=(preg_replace("/^[^,]+,/","",$this->ui->dn)); $ogroupfilter['depselect']=(preg_replace("/^[^,]+,/","",$ogroupfilter['depselect'])); } /* root posted */ if($s_action=="root"){ $ogroupfilter['depselect']=($this->config->current['BASE']); } // Edit if if((isset($_GET['act']))&&($_GET['act']=="edit_entry")){ $s_action ="edit"; $s_entry = $_GET['id']; } register_global("ogroupfilter", $ogroupfilter); $this->reload(); /* Check for exeeded sizelimit */ if (($message= check_sizelimit()) != ""){ return($message); } /* New group? */ if ($s_action=="new"){ /* By default we set 'dn' to 'new', all relevant plugins will react on this. */ $this->dn= "new"; /* Create new usertab object */ $this->ogroup= new ogrouptabs($this->config, $this->config->data['TABS']['OGROUPTABS'], $this->dn); } if ($s_action=="del"){ /* Get 'dn' from posted 'uid' */ $this->dn= $this->ogrouplist[$s_entry]['dn']; /* Load permissions for selected 'dn' and check if we're allowed to remove this 'dn' */ $acl= get_permissions ($this->dn, $this->ui->subtreeACL); $this->acl= get_module_permission($acl, "ogroup", $this->dn); if (chkacl($this->acl, "delete") == ""){ /* Check locking, save current plugin in 'back_plugin', so the dialog knows where to return. */ if (($user= get_lock($this->dn)) != ""){ return(gen_locked_message ($user, $this->dn)); } /* Lock the current entry, so nobody will edit it during deletion */ add_lock ($this->dn, $this->ui->dn); $smarty->assign("info", sprintf(_("You're about to delete the object group '%s'."), $this->dn)); return($smarty->fetch(get_template_path('remove.tpl', TRUE))); } else { /* Obviously the user isn't allowed to delete. Show message and clean session. */ print_red (_("You are not allowed to delete this object group!")); } } /* Confirmation for deletion has been passed. Group should be deleted. */ if (isset($_POST['delete_group_confirm'])){ /* Some nice guy may send this as POST, so we've to check for the permissions again. */ if (chkacl($this->acl, "delete") == ""){ /* Delete request is permitted, perform LDAP action */ $this->ogroup= new ogrouptabs($this->config, $this->config->data['TABS']['OGROUPTABS'], $this->dn); $this->ogroup->set_acl(array($this->acl)); $this->ogroup->delete (); gosa_log ("Object group'".$this->dn."' has been removed"); unset ($this->ogroup); $this->ogroup= NULL; /* Group list has changed, reload it. */ $this->reload (); } else { /* Normally this shouldn't be reached, send some extra logs to notify the administrator */ print_red (_("You are not allowed to delete this object group!")); gosa_log ("Warning: '".$this->ui->uid."' tried to trick group deletion."); } /* Remove lock file after successfull deletion */ del_lock ($this->dn); unset($_SESSION['objectinfo']); } /* Delete group canceled? */ if (isset($_POST['delete_cancel'])){ del_lock ($this->dn); unset($_SESSION['objectinfo']); } if ($s_action=="edit"){ /* Get 'dn' from posted 'uid', must be unique */ $this->dn= $this->ogrouplist[$s_entry]['dn']; /* Check locking, save current plugin in 'back_plugin', so the dialog knows where to return. */ if (($user= get_lock($this->dn)) != ""){ return(gen_locked_message ($user, $this->dn)); } /* Lock the current entry, so everyone will get the above dialog */ add_lock ($this->dn, $this->ui->dn); /* Set up the users ACL's for this 'dn' */ $acl= get_permissions ($this->dn, $this->ui->subtreeACL); /* Register grouptab to trigger edit dialog */ $this->ogroup= new ogrouptabs($this->config, $this->config->data['TABS']['OGROUPTABS'], $this->dn); $this->ogroup->set_acl($acl); $_SESSION['objectinfo']= $this->dn; } /* Finish button has been pressed */ if (isset($_POST['edit_finish'])){ /* Check tabs, will feed message array */ $message= $this->ogroup->check(); /* Save, or display error message? */ if (count($message) == 0){ /* Save user data to ldap */ $this->ogroup->save(); gosa_log ("Object group'".$this->dn."' has been saved"); /* Group 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 users at this point. */ $this->reload (); unset ($this->ogroup); $this->ogroup= 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); } } /* Cancel dialogs */ if (isset($_POST['edit_cancel'])){ del_lock ($this->ogroup->dn); unset ($this->ogroup); $this->ogroup= NULL; unset($_SESSION['objectinfo']); } /* Show dialog if object is present */ if ($this->ogroup){ $display= $this->ogroup->execute(); /* Don't show buttons if tab dialog requests this */ if (!$this->ogroup->by_object[$this->ogroup->current]->dialog){ $display.= "
\n"; $display.= "\n"; $display.= " \n"; $display.= "\n"; $display.= "
"; } return ($display); } /* Prepare departments */ $options= ""; foreach ($this->config->idepartments as $key => $value){ if ($ogroupfilter['depselect'] == $key){ $options.= ""; } else { $options.= ""; } } // Managment $listhead = "