X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=gosa-core%2Fplugins%2Fadmin%2Fdepartments%2Fclass_departmentManagement.inc;h=781744d20e6f32ec2410c47b7207baf7646a317d;hb=10100c5c8d92e45a0719bc321a3767f65966d9d7;hp=e2db188d1d4ad28d260a66edc56c446634a3340e;hpb=7f7f21906eb6121c29823abbf96461733d642509;p=gosa.git diff --git a/gosa-core/plugins/admin/departments/class_departmentManagement.inc b/gosa-core/plugins/admin/departments/class_departmentManagement.inc index e2db188d1..781744d20 100644 --- a/gosa-core/plugins/admin/departments/class_departmentManagement.inc +++ b/gosa-core/plugins/admin/departments/class_departmentManagement.inc @@ -1,535 +1,237 @@ "Eins ist toll", "zwei" => "Zwei ist noch besser"); - - /* Headpage attributes */ - var $last_dep_sorting= "invalid"; - var $departments= array(); - var $deptabs= NULL; - - /* attribute list for save action */ - var $attributes= array(); - var $objectclasses= array(); - - /* Vars to handle operations after saving the department - Recursive move && tagging */ - var $ObjectInSaveMode = false; // Is true, if current object wasn't saved right now - var $ObjectTaggingRequested = false; // Object must be tagged, an iframe will be shown. - var $RecursiveRemoveRequested = false; // Is true, if this object must be moved, an iframe will be displayed in this case - - function departmentManagement (&$config, &$ui) + var $plHeadline = "Departments"; + var $plDescription = "Manage Departments"; + var $plIcon = "plugins/departments/images/plugin.png"; + + // Tab definition + protected $tabClass = "deptabs"; + protected $tabType = "DEPTABS"; + protected $aclCategory = "departement"; + protected $aclPlugin = "generic"; + protected $objectName = "department"; + + function __construct($config,$ui) { - $this->ui= &$ui; - $this->dn= ""; - $this->config= &$config; - $this->DivListDepartment = new divListDepartment($this->config,$this); + $this->config = $config; + $this->ui = $ui; + + // Build filter + if (session::global_is_set(get_class($this)."_filter")){ + $filter= session::global_get(get_class($this)."_filter"); + } else { + $filter = new filter(get_template_path("dep-filter.xml", true)); + } + + // Build headpage + $headpage = new listing(get_template_path("dep-list.xml", true)); + $headpage->registerElementFilter("depLabel", "departmentManagement::filterDepLabel"); + $headpage->setFilter($filter); + $this->setFilter($filter); + + // Add copy&paste and snapshot handler. + if ($this->config->boolValueIsTrue("main", "copyPaste")){ + $this->cpHandler = new CopyPasteHandler($this->config); + } + if($this->config->get_cfg_value("enableSnapshots") == "true"){ + $this->snapHandler = new SnapshotHandler($this->config); + } + + parent::__construct($config, $ui, "departments", $headpage); + + $this->registerAction("open","openEntry"); + $this->registerAction("new_domain","newEntry"); + $this->registerAction("new_country","newEntry"); + $this->registerAction("new_locality","newEntry"); + $this->registerAction("new_dcObject","newEntry"); + $this->registerAction("new_organization","newEntry"); + $this->registerAction("new_organizationalUnit","newEntry"); + $this->registerAction("performRecMove","performRecMove"); + $this->registerAction("tagDepartment","tagDepartment"); } - function execute() + // Inject additional actions here. + function detectPostActions() { - global $config; - - /* Call parent execute */ - plugin::execute(); - - /*************** - Var init - ***************/ - - $_SESSION['LOCK_VARS_TO_USE'] = array("/^act$/","/^id$/","/^dep_edit_.*/","/^dep_del_.*/","/^item_selected/","/^remove_multiple_departments/"); - - /* Reload departments */ - $smarty = get_smarty(); - $display = ""; - $s_action = ""; // Will contain an action, like del or edit - $s_entry = ""; // The entry name for edit delete -... - - - /*************** - Check posts - ***************/ - - // Check Post action - foreach($_POST as $key => $val){ - // Post for delete - if(preg_match("/dep_del.*/",$key)){ - $s_action = "del"; - $s_entry = preg_replace("/dep_".$s_action."_/i","",$key); - $s_entry = preg_replace("/_.*$/","",$s_entry); - $s_entry = base64_decode($s_entry); - // Post for edit - }elseif(preg_match("/dep_edit_.*/",$key)){ - $s_action="edit"; - $s_entry = preg_replace("/dep_".$s_action."_/i","",$key); - $s_entry = preg_replace("/_.*$/","",$s_entry); - $s_entry = base64_decode($s_entry); - // Post for new - }elseif(preg_match("/^remove_multiple_departments/",$key)){ - $s_action="del_multiple"; - }elseif(preg_match("/dep_new.*/",$key)){ - $s_action="new"; - } - } - - /* Create options */ - if(isset($_POST['menu_action']) && $_POST['menu_action'] == "dep_new"){ - $s_action = "new"; - } - - /* handle remove from layers menu */ - if(isset($_POST['menu_action']) && preg_match("/^remove_multiple/",$_POST['menu_action'])){ - $s_action = "del_multiple"; - } - - - /*************** - Create a new department - ***************/ - - /* New Entry if Posted action (s_action) == new - */ - if ($s_action=="new"){ - $this->dn= "new"; - $this->deptabs= new deptabs($this->config,$this->config->data['TABS']['DEPTABS'], $this->dn,"department"); - $this->deptabs->set_acl_base($this->DivListDepartment->selectedBase); - } - - - /*************** - Edit entry - ***************/ - - /* Edit Entry if Posted action (s_action) == edit - * The entry which will be edited is defined in $s_entry - */ - if (( $s_action=="edit") && (!isset($this->deptabs->config))){ - $this->dn= $this->config->departments[trim($s_entry)]; - - 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); - - /* Register deptabs to trigger edit dialog */ - $this->deptabs= new deptabs($this->config,$this->config->data['TABS']['DEPTABS'], $this->dn,"department"); - $this->deptabs->set_acl_base($this->dn); - - $_SESSION['objectinfo']= $this->dn; - } - - - /******************** - Delete MULTIPLE entries requested, display confirm dialog - ********************/ - - if ($s_action=="del_multiple"){ - $ids = $this->list_get_selected_items(); - - - if(count($ids)){ - foreach($ids as $id){ - $id = base64_decode($id); - $dn = $this->config->departments[$id]; - - if (($user= get_lock($dn)) != ""){ - return(gen_locked_message ($user, $dn)); - } - $this->dns[$id] = $dn; - } - - $dns_names = "
";
-        foreach($this->dns as $dn){
-          add_lock ($dn, $this->ui->dn);
-          $dns_names .= $dn."\n";
-        }
-        $dns_names .="
"; - - /* Lock the current entry, so nobody will edit it during deletion */ - if (count($this->dns) == 1){ - $smarty->assign("info", sprintf(_("You're about to delete the following entry %s"), @LDAP::fix($dns_names))); - } else { - $smarty->assign("info", sprintf(_("You're about to delete the following entries %s"), @LDAP::fix($dns_names))); - } - $smarty->assign("multiple", true); - return($smarty->fetch(get_template_path('remove.tpl', TRUE))); - } - } - - - /******************** - Delete MULTIPLE entries confirmed - ********************/ - - /* Confirmation for deletion has been passed. Users should be deleted. */ - if (isset($_POST['delete_multiple_department_confirm'])){ - - /* Remove user by user and check acls before removeing them */ - foreach($this->dns as $key => $dn){ - $acl = $this->ui->get_permissions($dn,"department/department"); - if (preg_match('/d/', $acl)){ - - /* Delete request is permitted, perform LDAP action */ - $this->deptabs= new deptabs($this->config,$this->config->data['TABS']['DEPTABS'], $dn,"department"); - $this->deptabs->set_acl_base(); - $this->deptabs->delete (); - $this->deptabs = NULL; - } else { - print_red (_("You have no permission to remove this department.")); - } - /* Remove lock file after successfull deletion */ - del_lock ($dn); - unset($this->dns[$key]); - } - } - - - /******************** - Delete MULTIPLE entries Canceled - ********************/ - - /* Remove lock */ - if(isset($_POST['delete_multiple_department_cancel'])){ - foreach($this->dns as $key => $dn){ - del_lock ($dn); - unset($this->dns[$key]); - } - } - - - /*************** - Delete entry - ***************/ - - /* Delete Entry if Posted action (s_action) == del - * The entry which will be deleted is defined in $s_entry - */ - if ($s_action =="del"){ - $this->dn= $this->config->departments[trim($s_entry)]; - - /* check acls */ - $acl = $this->ui->get_permissions($this->dn,"department/department"); - if(preg_match("/d/",$acl)){ - - /* Check locking */ - if (($user= get_lock($this->dn)) != ""){ - $_SESSION['dn']= $this->dn; - return(gen_locked_message($user, $this->dn)); - } else { - add_lock ($this->dn, $this->ui->dn); - $smarty->assign("info", sprintf(_("You're about to delete the whole LDAP subtree placed under '%s'."), @LDAP::fix($this->dn))); - $smarty->assign("multiple", false); - $display.= $smarty->fetch (get_template_path('remove.tpl', TRUE)); - return ($display); - } - }else{ - print_red (_("You have no permission to remove this department.")); - } - } - - - /*************** - Delete department confirmed - ***************/ - - /* If department deletion is accepted ... - * Finally delete department - */ - if (isset($_POST['delete_department_confirm'])){ - - /* check acls */ - $acl = $this->ui->get_permissions($this->dn,"department/department"); - if(preg_match("/d/",$acl)){ - $this->remove_from_parent(); - } else { - print_red (_("You have no permission to remove this department.")); - } - } - - - /*************** - Edit department finished - ***************/ - - if ((isset($_POST['edit_finish'])) && (isset($this->deptabs->config)) && !isset($_POST['dep_move_confirm'])){ - $this->deptabs->save_object(); - $obj = $this->deptabs->by_object['department']; - if($obj->orig_dn != "new"){ - if($obj->orig_ou != $obj->ou || $obj->base != $obj->orig_base){ - return($smarty->fetch(get_template_path("dep_move_confirm.tpl",TRUE))); - } - } - } - - /* Save changes */ - if ((isset($_POST['edit_finish'])|| isset($_POST['dep_move_confirm'])) && (isset($this->deptabs->config))){ - - /* Check tabs, will feed message array */ - $message= $this->deptabs->check(); - - /* Save, or display error message? */ - if (count($message) == 0){ - - $this->deptabs->save(true); - global $config; - $config->get_departments(); - $config->make_idepartments(); - $this->config = $config; - - /* This object must be tagged, so set ObjectTaggingRequested to true */ - if($this->deptabs->by_object['department']->must_be_tagged()){ - $this->ObjectTaggingRequested = true; - } - - /* Get recursive move is required, set RecursiveRemoveRequested to true */ - if($this->deptabs->by_object['department']->am_i_moved()){ - $this->RecursiveRemoveRequested = true; - } - - /* This var indicated that there is an object which isn't saved right now. */ - $this->ObjectInSaveMode = true; - - } else { - /* Ok. There seem to be errors regarding to the tab data, - show message and continue as usual. */ - show_errors($message); - } - } - - - /*************** - Handle Tagging (Return output for an iframe) - ***************/ - - /* This department must be tagged (Is called from iframe, generates output)*/ - if(isset($_GET['TagDepartment'])){ - $this->deptabs->by_object['department']->tag_objects(); - exit(); - } - - - /*************** - Handle recursive move (Return output for an iframe) - ***************/ - - /* initiate recursive remove (Is called from iframe, generates output)*/ - if(isset($_GET['PerformRecMove'])){ - $this->deptabs->by_object['department']->recursive_move("","",true); - $this->DivListDepartment->selectedBase = $this->deptabs->by_object['department']->dn; - exit(); - } - - - /*************** - Return iframes, which call tagging / recusrsive move - ***************/ - - /* While one of these vars below isset, we must return an iframe, - to perform requested operation */ - if($this->ObjectTaggingRequested){ - $this->ObjectTaggingRequested = false; - return($this->deptabs->by_object['department']->ShowTagFrame()); - } - if($this->RecursiveRemoveRequested){ - $this->RecursiveRemoveRequested = false; - return($this->deptabs->by_object['department']->ShowMoveFrame()); - } - - - /*************** - In case of tagging/moving the object wasn't deleted, do it know - ***************/ - - /* If there is an unsaved object and all operations are done - remove locks & save object tab & unset current object */ - if($this->ObjectInSaveMode && (!$this->RecursiveRemoveRequested) && (!$this->ObjectTaggingRequested)){ - $this->deptabs->save(); - $this->config->get_departments(); - $this->ObjectInSaveMode = false; - if ($this->dn != "new"){ - del_lock ($this->dn); - } - unset ($this->deptabs); - $this->deptabs= NULL; - unset ($_SESSION['objectinfo']); - } - - - /*************** - Dialog canceled - ***************/ + $actions = management::detectPostActions(); + if(isset($_GET['PerformRecMove'])) $actions['action'] = "performRecMove"; + if(isset($_GET['TagDepartment'])) $actions['action'] = "tagDepartment"; + return($actions); + } - /* User canceled edit oder delete - * Cancel dialog - */ - if (isset($_POST['edit_cancel']) || isset($_POST['delete_cancel']) || isset($_POST['delete_department_confirm'])){ - del_lock ($this->dn); - unset($this->depdabs); - $this->deptabs= NULL; - unset ($_SESSION['objectinfo']); - } + // Action handler which allows department tagging - Creates the iframe contents. + function tagDepartment() + { + $plugname = $this->last_tabObject->base_name; + $this->last_tabObject->by_object[$plugname]->tag_objects(); + exit(); + } - /* Headpage or normal plugin screen? */ - if ($this->deptabs !== NULL){ + // Overridden new handler - We've different types of departments to create! + function newEntry($action="",$target=array(),$all=array(), $altTabClass ="", $altTabType = "", $altAclCategory="") + { + $types= $this->get_support_departments(); + $type = preg_replace("/^new_/","",$action); + return(management::newEntry($action,$target,$all,$this->tabClass,$types[$type]['TAB'],$this->aclCategory)); + } - /* Show main page (tabs) */ - $display= $this->deptabs->execute(); - if (!$this->deptabs->by_object[$this->deptabs->current]->dialog){ - $display.= "

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

"; - } - return ($display); - }else{ - /* Display dialog with group list */ - $this->DivListDepartment->parent = $this; - $this->DivListDepartment->execute(); - $this->reload(); - $this->DivListDepartment->DepartmentsAdded = true; - $this->DivListDepartment->setEntries($this->departments); - return($this->DivListDepartment->Draw()); - } + // Overridden edit handler - We've different types of departments to edit! + function editEntry($action="",$target=array(),$all=array(), $altTabClass ="", $altTabType = "", $altAclCategory="") + { + $types= $this->get_support_departments(); + $type = $this->headpage->getType($target[0]); + return(management::editEntry($action,$target,$all,$this->tabClass,$types[$type]['TAB'],$this->aclCategory)); } - function reload() + // Overriden save handler - We've to take care about the department tagging here. + protected function saveChanges() { - /* Vairaible init */ - $base = $this->DivListDepartment->selectedBase; - $base_back = preg_replace("/^[^,]+,/","",$base); - $Regex = $this->DivListDepartment->Regex; + management::saveChanges(); - // Create Array to Test if we have a valid back button - $tmp = $_SESSION['config']->idepartments; - - // In case of a valid back button create entry - if(isset($tmp[$base_back])){ - $tmp2 ['dn'] = convert_department_dn($base_back); - - // If empty always go to top - if(empty($tmp2['dn'])){ - $tmp2['dn']="/"; - } - $tmp2 ['description'][0] = ".. "._("Back"); - $result[$tmp[$base_back]]=$tmp2; + global $config; + $config->get_departments(); + $config->make_idepartments(); + $this->config = $config; + + $plugname = $this->last_tabObject->base_name; + if($this->last_tabObject->by_object[$plugname]->must_be_tagged()){ + $smarty = get_smarty(); + $smarty->assign("src","?plug=".$_GET['plug']."&TagDepartment&no_output_compression"); + $smarty->assign("message",_("As soon as the tag operation has finished, you can scroll down to end of the page and press the 'Continue' button to continue with the department management dialog.")); + return($smarty->fetch(get_template_path("dep_iframe.tpl",TRUE))); } - - if($this->DivListDepartment->SubSearch){ - $res= get_list("(&(|(ou=$Regex)(description=$Regex))(objectClass=gosaDepartment))", - "department", $base, array("ou", "description"), GL_SIZELIMIT | GL_SUBSEARCH); - }else{ - $res= get_list("(&(|(ou=$Regex)(description=$Regex))(objectClass=gosaDepartment))", - "department", $base, array("ou", "description"), GL_SIZELIMIT ); - } - - $this->departments= array(); - - /* Add current base to the list of available departments, but only if its naming attribute is 'ou' */ - if(preg_match("/^ou=/",$base)){ - $this->departments [ convert_department_dn($base) ] = "."; - } - - foreach ($res as $key => $value){ - - /* Don't display base as entry on subsearch */ - if(($value['dn'] == $base) && ($this->DivListDepartment->SubSearch)){ - continue; - } - - $cdn= convert_department_dn($value['dn']); - - /* Append to dep list */ - if(isset($value["description"][0])){ - $this->departments[$cdn]= get_sub_department($cdn)." - [".$value["description"][0]."]"; - }else{ - $this->departments[$cdn]= get_sub_department($cdn);//$value["description"][0]; - } - } - natcasesort ($this->departments); - reset ($this->departments); } + - function remove_from_parent() + // An action handler which enables to switch into deparmtment by clicking the names. + function openEntry($action,$entry) { - $ldap= $this->config->get_ldap_link(); - $ldap->cd ($this->dn); - $ldap->recursive_remove(); - - /* Optionally execute a command after we're done */ - $this->postremove(); - - /* 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->headpage->setBase(array_pop($entry)); } - function list_get_selected_items() + // Overridden remove request method - Avoid removal of the ldap base. + protected function removeEntryRequested($action="",$target=array(),$all=array()) { - $ids = array(); - foreach($_POST as $name => $value){ - if(preg_match("/^item_selected_[a-z0-9\\/\=]*$/i",$name)){ - $id = preg_replace("/^item_selected_/","",$name); - $ids[$id] = $id; - } - } - return($ids); + $target = array_remove_entries(array($this->config->current['BASE']),$target); + return(management::removeEntryRequested($action,$target,$all)); } - function remove_lock() + // A filter which allows to open a department by clicking on the departments name. + static function filterDepLabel($row,$dn,$params,$ou,$pid,$base) { - if (isset($this->dn)){ - del_lock ($this->dn); + $ou = $ou[0]; + if($dn == $base){ + $ou ="."; } + $dn= LDAP::fix(func_get_arg(1)); + return("$ou"); } - function save_object() - { - /* reload department */ - $this->config->get_departments(); - $this->config->make_idepartments(); - $this->DivListDepartment->config= $this->config; - $this->DivListDepartment->save_object(); + /*! \brief Returns information about all container types that GOsa con handle. + @return Array Informations about departments supported by GOsa. + */ + public static function get_support_departments() + { + /* Domain + */ + $types = array(); + $types['domain']['ACL'] = "domain"; + $types['domain']['CLASS'] = "domain"; + $types['domain']['ATTR'] = "dc"; + $types['domain']['TAB'] = "DOMAIN_TABS"; + $types['domain']['OC'] = "domain"; + $types['domain']['IMG'] = "plugins/departments/images/domain.png"; + $types['domain']['IMG_FULL']= "plugins/departments/images/domain.png"; + $types['domain']['TITLE'] = _("Domain"); + $types['domain']['TPL'] = "domain.tpl"; + + /* Domain component + */ + $types['dcObject']['ACL'] = "dcObject"; + $types['dcObject']['CLASS'] = "dcObject"; + $types['dcObject']['ATTR'] = "dc"; + $types['dcObject']['TAB'] = "DCOBJECT_TABS"; + $types['dcObject']['OC'] = "dcObject"; + $types['dcObject']['IMG'] = "plugins/departments/images/dc.png"; + $types['dcObject']['IMG_FULL']= "plugins/departments/images/dc.png"; + $types['dcObject']['TITLE'] = _("Domain Component"); + $types['dcObject']['TPL'] = "dcObject.tpl"; + + /* Country object + */ + $types['country']['ACL'] = "country"; + $types['country']['CLASS'] = "country"; + $types['country']['TAB'] = "COUNTRY_TABS"; + $types['country']['ATTR'] = "c"; + $types['country']['OC'] = "country"; + $types['country']['IMG'] = "plugins/departments/images/country.png"; + $types['country']['IMG_FULL']= "plugins/departments/images/country.png"; + $types['country']['TITLE'] = _("Country"); + $types['country']['TPL'] = "country.tpl"; + + /* Locality object + */ + $types['locality']['ACL'] = "locality"; + $types['locality']['CLASS'] = "locality"; + $types['locality']['TAB'] = "LOCALITY_TABS"; + $types['locality']['ATTR'] = "l"; + $types['locality']['OC'] = "locality"; + $types['locality']['IMG'] = "plugins/departments/images/locality.png"; + $types['locality']['IMG_FULL']= "plugins/departments/images/locality.png"; + $types['locality']['TITLE'] = _("Locality"); + $types['locality']['TPL'] = "locality.tpl"; + + /* Organization + */ + $types['organization']['ACL'] = "organization"; + $types['organization']['CLASS'] = "organization"; + $types['organization']['TAB'] = "ORGANIZATION_TABS"; + $types['organization']['ATTR'] = "o"; + $types['organization']['OC'] = "organization"; + $types['organization']['IMG'] = "plugins/departments/images/organization.png"; + $types['organization']['IMG_FULL']= "plugins/departments/images/organization.png"; + $types['organization']['TITLE'] = _("Organization"); + $types['organization']['TPL'] = "organization.tpl"; + + /* Department + */ + $types['organizationalUnit']['ACL'] = "department"; + $types['organizationalUnit']['CLASS'] = "department"; + $types['organizationalUnit']['TAB'] = "DEPTABS"; + $types['organizationalUnit']['ATTR'] = "ou"; + $types['organizationalUnit']['OC'] = "organizationalUnit"; + $types['organizationalUnit']['IMG'] = "images/lists/folder.png";//plugins/departments/images/department.png"; + $types['organizationalUnit']['IMG_FULL']= "images/lists/folder-full.png";//:wplugins/departments/images/department.png"; + $types['organizationalUnit']['TITLE'] = _("Department"); + $types['organizationalUnit']['TPL'] = "generic.tpl"; + return($types); } - -} +} // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler: ?>