X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=index.php;h=e41237a56767aaa3517a7df551707844fc55b468;hb=94a175c653bdc28a698830b8c2298a214d79defc;hp=607d41eec15329b6a71373b70c519a0857c7863b;hpb=3dcc26f728beaeee605bad5e641759c74d83732e;p=contagged diff --git a/index.php b/index.php index 607d41e..e41237a 100644 --- a/index.php +++ b/index.php @@ -1,34 +1,31 @@ - display page - header("Location: entry.php?dn=".$result[0][dn]); + header("Location: entry.php?dn=".rawurlencode($result[0]['dn'])); exit; }elseif(count($result)){ $keys = array_keys($result); @@ -41,28 +38,37 @@ //prepare templates tpl_std(); - tpl_markers(); - tpl_categories(); - tpl_timezone(); - tpl_country(); + if (empty($_REQUEST['filter'])) $_REQUEST['filter']=''; + if (empty($_REQUEST['marker'])) $_REQUEST['marker']=''; + if (empty($_REQUEST['search'])) $_REQUEST['search']=''; $smarty->assign('list',$list); $smarty->assign('filter',$_REQUEST['filter']); $smarty->assign('marker',$_REQUEST['marker']); $smarty->assign('search',$_REQUEST['search']); + $smarty->assign('org',$_REQUEST['org']); //display templates - if($_REQUEST['export'] == 'csv'){ - header("Content-Type: text/csv"); - header('Content-Disposition: Attachement; filename="ldapabexport.csv"'); - $smarty->display('export_list_csv.tpl'); + if(!empty($_REQUEST['export'])){ + if ($conf['userlogreq'] == 1 && $user == ''){ + header("HTTP/1.1 401 ACCESS DENIED"); + exit(); + } + + if($_REQUEST['export'] == 'csv'){ + header("Content-Type: text/csv"); + header('Content-Disposition: Attachement; filename="contagged_export.csv"'); + $smarty->display('list_csv.tpl'); + exit; + }elseif($_REQUEST['export'] == 'map'){ + header('Content-Type: text/html; charset=utf-8'); + $smarty->display('list_map.tpl'); + exit; + } }else{ //save location in session - $_SESSION[ldapab][lastlocation]=$_SERVER["REQUEST_URI"]; + $_SESSION['ldapab']['lastlocation']=$_SERVER["REQUEST_URI"]; header('Content-Type: text/html; charset=utf-8'); - $smarty->display('header.tpl'); - $smarty->display('list_filter.tpl'); $smarty->display('list.tpl'); - $smarty->display('footer.tpl'); } //------- functions -----------// @@ -73,8 +79,11 @@ */ function _namesort($a,$b){ global $result; - $x = $result[$a][sn][0].$result[$a][givenName][0]; - $y = $result[$b][sn][0].$result[$b][givenName][0]; + global $FIELDS; + if (empty($result[$a][$FIELDS['givenname']])) { $result[$a][$FIELDS['givenname']]=''; } + if (empty($result[$b][$FIELDS['givenname']])) { $result[$b][$FIELDS['givenname']]=''; } + $x = $result[$a][$FIELDS['name']][0].$result[$a][$FIELDS['givenname']][0]; + $y = $result[$b][$FIELDS['name']][0].$result[$b][$FIELDS['givenname']][0]; return(strcasecmp($x,$y)); } @@ -83,40 +92,77 @@ * Creates an LDAP filter from given request variables search or filter */ function _makeldapfilter(){ + global $FIELDS; + //handle given filter - $filter = $_REQUEST['filter']; - $search = $_REQUEST['search']; - $org = $_REQUEST['org']; - $marker = $_REQUEST['marker']; - $categories = $_REQUEST['categories']; - $_SESSION[ldapab][filter] = $filter; + if (empty($_REQUEST['filter'])) { $_REQUEST['filter']=''; } + if (empty($_REQUEST['search'])) { $_REQUEST['search']=''; } + if (empty($_REQUEST['org'])) { $_REQUEST['org']=''; } + if (empty($_REQUEST['marker'])) { $_REQUEST['marker']=''; } + if(is_numeric($_REQUEST['search'])) $number = $_REQUEST['search']; + $filter = ldap_filterescape($_REQUEST['filter']); + $search = ldap_filterescape($_REQUEST['search']); + $org = ldap_filterescape($_REQUEST['org']); + $marker = ldap_filterescape($_REQUEST['marker']); + $_SESSION['ldapab']['filter'] = $_REQUEST['filter']; if(empty($filter)) $filter='a'; if(!empty($marker)){ - $ldapfilter = "(&(objectClass=contactPerson)(marker=$marker))"; - }elseif(!empty($categories)){ - $ldapfilter = "(&(objectClass=OXUserObject)(OXUserCategories=$categories))"; + // Search by tag + $ldapfilter = '(&(objectClass=contactPerson)'; + $marker = explode(',',$marker); + foreach($marker as $m){ + $m = trim($m); + $ldapfilter .= '('.$FIELDS['_marker'].'='.$m.')'; + } + $ldapfilter .= ')'; + }elseif($number){ + // Search by telephone number + $filter = ''; + // add wildcards between digits to compensate for any formatting + $length = strlen($number); + for($i=0; $i <$length; $i++){ + $filter .= '*'.$number{$i}; + } + $filter .= '*'; + $ldapfilter = '(&'. + '(objectClass=inetOrgPerson)'. + '(|'. + '(|'. + '('.$FIELDS['phone'].'='.$filter.')'. + '('.$FIELDS['homephone'].'='.$filter.')'. + ')'. + '('.$FIELDS['mobile'].'='.$filter.')'. + ')'. + ')'; }elseif(!empty($search)){ + // Search name and organization $search = trim($search); $words=preg_split('/\s+/',$search); $filter=''; foreach($words as $word){ - $filter .= "(|(|(sn=*$word*)(givenName=*$word*))(o=*$word*))"; + $filter .= '(|(|('.$FIELDS['name'].'=*'.$word.'*)('. + $FIELDS['givenname'].'=*'.$word.'*))('. + $FIELDS['organization'].'=*'.$word.'*))'; } $ldapfilter = "(&(objectClass=inetOrgPerson)$filter)"; }elseif(!empty($org)){ - $ldapfilter = "(&(objectClass=inetOrgPerson)(o=$org))"; + // List organization members + $ldapfilter = '(&(objectClass=inetOrgPerson)('.$FIELDS['organization']."=$org))"; }elseif($filter=='other'){ + // Alphabetic listing of last names $other=''; for ($i=ord('a');$i<=ord('z');$i++){ - $other .= '(!(sn='.chr($i).'*))'; + $other .= '(!('.$FIELDS['name'].'='.chr($i).'*))'; } $ldapfilter = "(&(objectClass=inetOrgPerson)$other)"; - }elseif($filter=='*'){ + }elseif($filter=='\2a'){ //escaped asterisk + // List all $ldapfilter = "(objectClass=inetOrgPerson)"; }else{ - $ldapfilter = "(&(objectClass=inetOrgPerson)(sn=$filter*))"; + // Search by last name start + $ldapfilter = '(&(objectClass=inetOrgPerson)('.$FIELDS['name']."=$filter*))"; } return $ldapfilter; }