X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=plugins%2Fadmin%2Fusers%2Fclass_userManagement.inc;h=88936bd503a44fca137274790f3a877074bdd5c7;hb=c3a786a7af7dcec35d946e2e7f551ab29f05ad1c;hp=ea7cbd243bf518f051c71ec96bd0e3cfde8f9f47;hpb=4d8111c572ba4b29a6afa0e36df28ee0b02f6998;p=gosa.git diff --git a/plugins/admin/users/class_userManagement.inc b/plugins/admin/users/class_userManagement.inc index ea7cbd243..88936bd50 100644 --- a/plugins/admin/users/class_userManagement.inc +++ b/plugins/admin/users/class_userManagement.inc @@ -59,6 +59,9 @@ class userManagement extends plugin function execute() { + /* Call parent execute */ + plugin::execute(); + $smarty = get_smarty(); // Smarty instance $userfilter = get_global("userfilter"); // contains Filter Settings $s_action = ""; // Contains the action to proceed @@ -67,9 +70,9 @@ class userManagement extends plugin /* Start for New List Managment */ if(isset($_GET['act'])&&($_GET['act']=="dep_open")){ - $s_action="open"; - $s_entry = base64_decode($_GET['dep_id']); - $userfilter['depselect']= "".$this->config->departments[trim($s_entry)]; + $s_action="open"; + $s_entry = base64_decode($_GET['dep_id']); + $userfilter['depselect']= "".$this->config->departments[trim($s_entry)]; } /* Test Posts */ @@ -96,15 +99,19 @@ class userManagement extends plugin $s_entry = preg_replace("/user_chgpw_/i","",$key); }elseif(preg_match("/dep_root.*/i",$key)){ $s_action="root"; + }elseif(preg_match("/userfrom_tpl.*/i",$key)){ + $s_action="create_user_from_tpl"; + $s_entry = preg_replace("/userfrom_tpl_/i","",$key); } } - + if((isset($_GET['act']))&&($_GET['act']=="edit_entry")){ - $s_action ="edit"; + $s_action = "edit"; $s_entry = $_GET['id']; } $s_entry = preg_replace("/_.$/","",$s_entry); + if(preg_match("/.*-.*/",$s_entry)){ $s_tab = preg_replace("/^.*-/i","",$s_entry); $s_entry = preg_replace("/-.*$/i","",$s_entry); @@ -139,6 +146,7 @@ class userManagement extends plugin $userfilter['depselect']= $this->config->departments["/"]; } } + /* End for new List Managment */ /* Save filter data if we are in the headpage */ @@ -164,7 +172,7 @@ class userManagement extends plugin $userfilter['regex']= $s; } register_global("userfilter", $userfilter); - + /* React on user interaction here */ if (($_SERVER["REQUEST_METHOD"] == "POST")||($_SERVER["REQUEST_METHOD"]== "GET")){ @@ -173,7 +181,7 @@ class userManagement extends plugin if ($s_action=="edit"){ /* Get 'dn' from posted 'uid', must be unique */ - + $this->dn= $this->list[trim($s_entry)]['dn']; /* Check locking, save current plugin in 'back_plugin', so @@ -192,9 +200,9 @@ class userManagement extends plugin /* Register usertab to trigger edit dialog */ $this->usertab= new usertabs($this->config, $this->config->data['TABS']['USERTABS'], $this->dn); -// $_POST[$s_tab]=$s_tab; + // $_POST[$s_tab]=$s_tab; -// This would be better + // This would be better $this->usertab->current = $s_tab; $this->usertab->set_acl($acl); @@ -270,18 +278,37 @@ class userManagement extends plugin return($smarty->fetch(get_template_path('password.tpl', TRUE))); } + $config= $this->config; + $ldap_ui= $this->config->get_ldap_link(); + if(isset($this->usertab->dn)){ + $user = ($ldap_ui->fetch($ldap_ui->cat($this->usertab->dn))); + }else{ + $user = ($ldap_ui->fetch($ldap_ui->cat($this->dn))); + } + if((is_array($user))&&(isset($user['uid']))){ + $username= $user['uid'][0]; + } + /* Set password, perform required steps */ if ($this->usertab){ if ($this->usertab->password_change_needed()){ $obj= $this->usertab->by_object['user']; change_password ($this->usertab->dn, $_POST['new_password'], 0, $obj->pw_storage); + if (isset($config->data['MAIN']['EXTERNALPWDHOOK'])){ + exec($config->data['MAIN']['EXTERNALPWDHOOK']." ".$username." ".$_POST['new_password'], $resarr); + } + gosa_log ("Password for '".$this->usertab->dn."' has been changed"); unset($this->usertab); $this->usertab= NULL; } } else { change_password ($this->dn, $_POST['new_password']); + if (isset($config->data['MAIN']['EXTERNALPWDHOOK'])){ + exec($config->data['MAIN']['EXTERNALPWDHOOK']." ".$username." ".$_POST['new_password'], $resarr); + } + gosa_log ("Password for '".$this->dn."' has been changed"); } } else { @@ -323,7 +350,7 @@ class userManagement extends plugin /* 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 user %s."), $this->dn)); + $smarty->assign("info", sprintf(_("You're about to delete the user %s."), LDAP::fix($this->dn))); return($smarty->fetch(get_template_path('remove.tpl', TRUE))); } else { @@ -432,16 +459,27 @@ class userManagement extends plugin } /* Generate template list */ - if ($s_action=="new"){ + if (($s_action=="new")||($s_action=="create_user_from_tpl")){ + $this->templates= array(); + $ldap= $this->config->get_ldap_link(); + + /* Create list of tempaltes */ foreach ($this->config->departments as $key => $value){ + + /* Get acls from different ou's */ $acl= get_permissions (get_people_ou().$value, $this->ui->subtreeACL); $acl= get_module_permission($acl, "user", get_people_ou().$value); + + /* If creation of a new user is allowed, append this template */ if (chkacl($acl, "create") == ""){ + + /* Search all templates from the current dn */ $ldap->cd (get_people_ou().$value); $ldap->search ("(objectClass=gosaUserTemplate)", array("uid")); + /* Append */ if ($ldap->count() != 0){ while ($attrs= $ldap->fetch()){ $this->templates[$ldap->getDN()]= @@ -451,12 +489,14 @@ class userManagement extends plugin } } } + + /* Sort templates */ natcasesort ($this->templates); reset ($this->templates); } /* New user/template request */ - if (($s_action=="new") || ($s_action=="new_tpl")){ + if (($s_action=="create_user_from_tpl")||($s_action=="new") || ($s_action=="new_tpl")){ /* By default we set 'dn' to 'new', all relevant plugins will react on this. */ $this->dn= "new"; @@ -468,8 +508,9 @@ class userManagement extends plugin /* Create new usertab object */ $this->usertab= new usertabs($this->config, - $this->config->data['TABS']['USERTABS'], $this->dn); + $this->config->data['TABS']['USERTABS'], $this->dn); $this->usertab->set_acl(array(':all')); + $this->usertab->by_object['user']->base= $userfilter['depselect']; /* Take care about templates */ if ($s_action=="new_tpl"){ @@ -478,16 +519,17 @@ class userManagement extends plugin } else { $this->is_template= FALSE; } - + /* Use template if there are any of them */ - if (count($this->templates) && !isset($_POST['new_template'])){ + + if ((count($this->templates) && ($s_action!='new_tpl'))||($s_action=="create_user_from_tpl")){ foreach(array("sn", "givenName", "uid", "got_uid", "templates") as $attr){ $smarty->assign("$attr", $this->$attr); } - if (isset($_POST['template'])){ - $smarty->assign("template", $_POST['template']); + if ($s_action=="create_user_from_tpl"){ + $smarty->assign("template", $this->dn= $this->list[trim($s_entry)]['dn']); } else { - $smarty->assign("template", ""); + $smarty->assign("template", "none"); } $smarty->assign("edit_uid", ""); return($smarty->fetch(get_template_path('template.tpl', TRUE))); @@ -495,7 +537,7 @@ class userManagement extends plugin } /* Continue template editing */ - if (isset($_POST['template_continue']) && $_POST['template'] != 'none' && !isset($_POST['uid'])){ + if ((isset($_POST['template_continue']) && $_POST['template'] != 'none' && !isset($_POST['uid']))){ $this->sn= $_POST['sn']; $this->givenName= $_POST['givenName']; @@ -531,7 +573,7 @@ class userManagement extends plugin $this->uid= current($uids); } } else { - $smarty->assign("edit_uid", ""); + $smarty->assign("edit_uid", ""); $this->uid= ""; } $this->got_uid= true; @@ -559,23 +601,27 @@ class userManagement extends plugin if (isset($_POST['template_continue']) && $_POST['template'] != 'none' && (isset($_POST['uid']))){ /* Might not be filled if IDGEN is unset */ - $this->sn= $_POST['sn']; - $this->givenName= $_POST['givenName']; + $this->sn = $_POST['sn']; + $this->givenName = $_POST['givenName']; /* Move user supplied data to sub plugins */ - $this->uid= $_POST['uid']; - $this->usertab->uid= $this->uid; - $this->usertab->sn= $this->sn; - $this->usertab->givenName= $this->givenName; - $template_dn= $_POST['template']; + $this->uid = $_POST['uid']; + $this->usertab->uid = $this->uid; + $this->usertab->sn = $this->sn; + $this->usertab->givenName = $this->givenName; + $template_dn = $_POST['template']; $this->usertab->adapt_from_template($template_dn); - $template_base= $userfilter['depselect'];//preg_replace("/^[^,]+,".get_people_ou()."/", '', $template_dn); + $template_base = preg_replace("/^[^,]+,".get_people_ou()."/", '', $template_dn); $this->usertab->by_object['user']->base= $template_base; /* Set up the users ACL's for this 'dn' */ $acl= get_permissions ($template_base, $this->ui->subtreeACL); $this->usertab->set_acl($acl); } + + if (isset($_POST['template_continue']) && ($_POST['template'] == 'none')){ + $this->usertab->by_object['user']->base= $userfilter['depselect']; + } /* Show tab dialog if object is present */ if ($this->usertab){ @@ -612,48 +658,49 @@ class userManagement extends plugin /* Prepare departments */ $options= ""; foreach ($this->config->idepartments as $key => $value){ - if ($userfilter['depselect'] == $key){ - $options.= ""; - } else { - $options.= ""; - } + if ($userfilter['depselect'] == $key){ + $options.= ""; + } else { + $options.= ""; + } } - + /* NEW LIST MANAGMENT */ $listhead = "
". - "  ". - "  ". - "  ". - "  ". - "  ". - "  ". - "  ". - _("Current base")." ". - "  ". - "
"; + "  ". + "  ". + "  ". + "  ". + "  ". + "  ". + "  ". + _("Base")." ". + "  ". + ""; - $action= ""; - $action.= ""; - $action.= ""; + $action= ""; + $action.= ""; + $action.= ""; $divlist = new divlist("userstab"); $divlist->SetHeader(array( - array("string" => " "), - array("string" => _("Username")." / "._("Department")), - array("string" => _("Properties")), - array("string" => _("Actions"), "attach" => "style='border:none'" ))); - + array("string" => " ", "attach" => "style='text-align:center;width:20px;'"), + array("string" => _("Username")." / "._("Department"), "attach" => "style=''"), + array("string" => _("Properties"), "attach" => "style='width:152px;'"), + array("string" => _("Actions"), "attach" => "style='width:60px;border-right:0px;text-align:right;'"))); + $divlist->SetSummary(_("This table displays all users, in the selected tree.")); - $divlist->SetEntriesPerPage(20); + $divlist->SetEntriesPerPage(0); // Defining Links $linkopen = "%s"; + /* Insert departments in divlist*/ foreach($this->departments as $key=> $val){ - + if(!isset($this->config->departments[trim($key)])){ $this->config->departments[trim($key)]=""; } @@ -666,59 +713,86 @@ class userManagement extends plugin } } - - - - $field1 = array("string" => "department"); - $field2 = array("string" => sprintf($linkopen,base64_encode($key),$val)); - $field3 = array("string" => " "); - $field4 = array("string" => " ", "attach" => "style='border:none'"); + $field1 = array("string" => "department", "attach" => "style='text-align:center;width:20px;'"); + $field2 = array("string" => sprintf($linkopen,base64_encode($key),$val), "attach" => "style=''"); + $field3 = array("string" => " ", "attach" => "style='width:152px;'"); + $field4 = array("string" => " ", "attach" => "style='width:60px;border-right:0px;text-align:right;'"); $divlist->AddEntry(array($field1,$field2,$field3,$field4)); } - // Pictures for Extensions - $usrimg =""; - $posiximg = ""; - $mailimg = ""; - $fonimg = ""; - $faximg = ""; - $sambaimg = ""; - $empty = ""; + /* Pictures for Extensions */ + $usrimg =""; + $posiximg = ""; + $eviroimg = ""; + $mailimg = ""; + $fonimg = ""; + $faximg = ""; + $sambaimg = ""; + $tplcreateuserimg = ""; + + $empty = ""; + // User and Template Images - $userimg = "User"; - $tplimg = "Template"; - + $userimg = "User"; + $tplimg = "Template"; $editlink = "%s"; - + // Defines Arrays to save User and Templates $tpls = array(); $users= array(); - - // Get Configuration - $r_db=false; + + /* Get Configuration for goFon DB (if it is set), to connect to the asterisk tables. + * Read Sip Table for specified account (for each user with phoneAccount). + * Check the attributes ip port and regseconds. + * If regseconds is set and >0 , the phone is logged in. + * Else the phone is currently not logged. + * If we can't read any Data from the DB or there is no goFon DB specified + * show old style without status icons. + */ + $r_db =false; + $r_con =false; if (isset($_SESSION['config']->data['SERVERS']['FON'])){ $a_SETUP= $_SESSION['config']->data['SERVERS']['FON']; // Connect to DB server - $r_con= @mysql_connect($a_SETUP['SERVER'],$a_SETUP['LOGIN'],$a_SETUP['PASSWORD']); - // Check if we are connected correctly - if($r_con){ - $r_db = @mysql_select_db($a_SETUP['DB'],$r_con); + + /* + If you want to disable the status pictures, just comment out the next line + */ + $r_con = false; + $r_db = false; + if(is_callable("mysql_pconnect")){ + $r_con= @mysql_pconnect($a_SETUP['SERVER'],$a_SETUP['LOGIN'],$a_SETUP['PASSWORD']); + // Check if we are connected correctly + if($r_con){ + $r_db = @mysql_select_db($a_SETUP['DB'],$r_con); + } } } // Test Every Entry and generate divlist Array foreach($this->list as $key => $val){ - $connected = ""; - $ip_port= ""; + $connected = ""; // This string represents timestamp or offline status + $ip_port = ""; // String that will represent ip : port of the connected phone if((in_array("goFonAccount" ,$val['objectClass']))){ + + /* Set defaults */ $fonac = preg_replace("/%image%/", "select_phone.png", $fonimg); $fonac = preg_replace("/%KEY%/", "$key", $fonac); $fonac = preg_replace("/%title%/", "", $fonac); - if($r_db){ + /* Database connection is ok ?*/ + if(($r_db)&&(is_callable("mysql_query"))){ $res= @mysql_query("SELECT regseconds,name,port,ipaddr FROM ".$a_SETUP['SIP_TABLE']." WHERE (name='".$val['uid'][0]."')"); $mysql_entry = @mysql_fetch_row($res); if(is_array($mysql_entry)){ @@ -731,7 +805,7 @@ class userManagement extends plugin } if((isset($mysql_entry[0]))&&($mysql_entry[0]==0)){ $connected = " | "._("Offline"); - $fonac = preg_replace("/%image%/", "select_phone_notconnected.png", $fonimg); + $fonac = preg_replace("/%image%/", "select_phone.png", $fonimg); $fonac = preg_replace("/%KEY%/", "$key", $fonac); $fonac = preg_replace("/%title%/", $connected, $fonac); } @@ -740,30 +814,65 @@ class userManagement extends plugin }else{ $fonac=$empty; } + + // Specify Pics for Extensions - if(in_array("posixAccount" ,$val['objectClass'])) $posix = preg_replace("/%KEY%/", "$key", $posiximg); else $posix=$empty; - if(in_array("gosaMailAccount" ,$val['objectClass'])) $maila = preg_replace("/%KEY%/", "$key", $mailimg); else $maila=$empty; - if(in_array("goFaxAccount" ,$val['objectClass'])) $faxac = preg_replace("/%KEY%/", "$key", $faximg); else $faxac=$empty; - if(in_array("sambaSamAccount" ,$val['objectClass'])) $samba = preg_replace("/%KEY%/", "$key", $sambaimg); else $samba=$empty; - if(in_array("gosaUserTemplate",$val['objectClass'])) $tpl = preg_replace("/%KEY%/", "$key", $tplimg); else $tpl=$userimg; - - $usrimg = preg_replace("/%KEY%/", "$key", $usrimg); - - // Generate Array to Add + if(in_array("posixAccount" ,$val['objectClass'])){ + $posix = preg_replace("/%KEY%/", "$key", $posiximg); + }else{ + $posix=$empty; + } + + if(in_array("gotoEnvironment" ,$val['objectClass'])){ + $enviro = preg_replace("/%KEY%/", "$key", $eviroimg); + }else{ + $enviro =$empty; + } + + if(in_array("gosaMailAccount" ,$val['objectClass'])){ + $maila = preg_replace("/%KEY%/", "$key", $mailimg); + }else{ + $maila=$empty; + } + + if(in_array("goFaxAccount" ,$val['objectClass'])){ + $faxac = preg_replace("/%KEY%/", "$key", $faximg); + }else{ + $faxac=$empty; + } + + if(in_array("sambaSamAccount" ,$val['objectClass'])){ + $samba = preg_replace("/%KEY%/", "$key", $sambaimg); + }else{ + $samba=$empty; + } + + if(in_array("gosaUserTemplate",$val['objectClass'])){ + $tpl = preg_replace("/%KEY%/", "$key", $tplimg); + $s_img_create_from_template = preg_replace("/%KEY%/", "$key", $tplcreateuserimg); + }else{ + $s_img_create_from_template = ""; + $tpl=$userimg; + } + + $usrimg2 = preg_replace("/%KEY%/", "$key", $usrimg); + + // Generate caption for rows if (isset($val["sn"]) && isset($val["givenName"])){ $display= $val["sn"][0].", ".$val["givenName"][0]." [".$val["uid"][0]."]"; } else { $display= "[".$val["uid"][0]."]"; } - $field1 = array("string" => sprintf($tpl,$val['dn']),"attach"=>"style='width:20px;align:middle;'"); - $field2 = array("string" => sprintf($editlink,$key,$display).$ip_port,"attach"=>"title='".$val['dn']."'"); - $field3 = array("string" => $usrimg." ".$posix." ".$maila." ".$fonac." ".$faxac." ".$samba,"attach" => "style='width:118px;'"); - $field4 = array("string" => preg_replace("/%KEY%/", "$key", $action),"attach" => "style='border:none; text-align:right;width:48px'"); - + /* Create each field */ + $field1 = array("string" => sprintf($tpl,$val['dn']), "attach" => "style='text-align:center;width:20px;'"); + $field2 = array("string" => sprintf($editlink,$key,$display).$ip_port, "attach" => "style='' title='".$val['dn']."'"); + $field3 = array("string" => $usrimg2." ".$posix." ".$enviro." ".$maila." ".$fonac." ".$faxac." ".$samba." ".$s_img_create_from_template, "attach" => "style='width:152px;'"); + $field4 = array("string" => preg_replace("/%KEY%/", "$key", $action),"attach" => "style='width:60px;border-right:0px;text-align:right;'"); + $add = array($field1,$field2,$field3,$field4); - + // Template or User if(in_array("gosaUserTemplate",$val['objectClass'])){ $tpls[strtolower( $val['sn']['0'].$val['uid']['0'])]=$add; @@ -771,7 +880,7 @@ class userManagement extends plugin $users[strtolower( $val['sn']['0'].$val['uid']['0'])]=$add; } } - + // Sort Entries ksort($users); ksort($tpls); @@ -809,6 +918,9 @@ class userManagement extends plugin $smarty->assign("alphabet", generate_alphabet()); $smarty->assign("hint", print_sizelimit_warning()); + if((is_callable("mysql_close"))&&($r_con)){ + @mysql_close($r_con); + } return ($smarty->fetch(get_template_path('headpage.tpl', TRUE))); } @@ -877,29 +989,43 @@ class userManagement extends plugin * We also need to search for the departments * So we are able to navigate like in konquerer */ - $base2 = preg_replace("/ou=people,/i","",$base); + /* Create base to search in */ + + $peopleOU = get_people_ou(); + if(empty($peopleOU)) { + $base2 = $base; + }else{ + $base2 = preg_replace("/".$peopleOU."/i","",$base); + } + + /* Get all departments within this subtree */ $res3 = get_list2($this->ui->subtreeACL, "(&(|(ou=$regex)(description=$regex))(objectClass=gosaDepartment))", - TRUE, $base2, array("ou", "description"), TRUE); + TRUE, $base2, array("ou", "description"), TRUE); $this->departments= array(); + /* Create array with results */ $tmp = array(); foreach ($res3 as $value){ $tmp[strtolower($value['dn']).$value['dn']]=$value; } + + /* Sort array */ ksort($tmp); + + /* Create result array */ foreach($tmp as $value){ - if($value["description"][0]!=".."){ + if(isset($value['description'][0])){ $this->departments[$value['dn']]=convert_department_dn2($value['dn'])." - [".$value["description"][0]."]"; }else{ - $this->departments[$value['dn']]=$value["description"][0]; + $this->departments[$value['dn']]=convert_department_dn2($value['dn']); } } /* END NEW LIST MANAGMENT */ - - + + $this->userlist= array(); foreach ($this->list as $value){