X-Git-Url: https://git.sur5r.net/?p=contagged;a=blobdiff_plain;f=index.php;h=5a9ab819da54fab7dd2615819abf63be3d31c1bf;hp=5bd4fca712ba37020553766e7bde7e8841b1b763;hb=HEAD;hpb=64fca63a29fb2a863d159734627795acfb17c853 diff --git a/index.php b/index.php index 5bd4fca..5a9ab81 100644 --- a/index.php +++ b/index.php @@ -3,35 +3,31 @@ require_once('inc/init.php'); ldap_login(); - //prepare filter - $ldapfilter = _makeldapfilter(); - - //check public addressbook - $sr = ldap_list($LDAP_CON,$conf['publicbook'],$ldapfilter); - $result1 = ldap_get_binentries($LDAP_CON, $sr); - //check users private addressbook - if(!empty($_SESSION['ldapab']['binddn'])){ - $sr = @ldap_list($LDAP_CON, - $conf['privatebook'].','.$_SESSION['ldapab']['binddn'], - $ldapfilter); - $result2 = ldap_get_binentries($LDAP_CON, $sr); - }else{ - $result2 = ''; - } - - $result = array_merge((array)$result1,(array)$result2); - // select entry template if(!empty($_REQUEST['export']) && $_REQUEST['export'] == 'csv'){ - $entrytpl = 'export_list_csv_entry.tpl'; + $entrytpl = 'list_csv_entry.tpl'; + }elseif(!empty($_REQUEST['export']) && $_REQUEST['export'] == 'map'){ + $entrytpl = 'list_map_entry.tpl'; }else{ $entrytpl = 'list_entry.tpl'; } + tpl_std(); + + // check which fields are needed + $fields = get_fields_from_template($entrytpl); + + + //prepare filter + $ldapfilter = _makeldapfilter(); + + // fetch results + $result = ldap_queryabooks($ldapfilter,$fields); + $list = ''; if(count($result)==1 && $_REQUEST['search']){ //only one result on a search -> 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); @@ -43,7 +39,6 @@ } //prepare templates - tpl_std(); if (empty($_REQUEST['filter'])) $_REQUEST['filter']=''; if (empty($_REQUEST['marker'])) $_REQUEST['marker']=''; if (empty($_REQUEST['search'])) $_REQUEST['search']=''; @@ -51,16 +46,24 @@ $smarty->assign('filter',$_REQUEST['filter']); $smarty->assign('marker',$_REQUEST['marker']); $smarty->assign('search',$_REQUEST['search']); + $smarty->assign('org',$_REQUEST['org']); //display templates - if(!empty($_REQUEST['export']) && $_REQUEST['export'] == 'csv'){ - if ($conf['userlogreq'] == 1 && $user == '') - { - header("HTTP/1.1 401 ACCESS DENIED"); + if(!empty($_REQUEST['export'])){ + if ($conf['userlogreq'] && $user == ''){ + header("HTTP/1.1 401 Access Denied"); + echo '

Access Denied

'; exit(); - } else { + } + + if($_REQUEST['export'] == 'csv'){ header("Content-Type: text/csv"); header('Content-Disposition: Attachement; filename="contagged_export.csv"'); - $smarty->display('export_list_csv.tpl'); + $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 @@ -92,6 +95,7 @@ */ function _makeldapfilter(){ global $FIELDS; + global $conf; //handle given filter @@ -99,6 +103,7 @@ 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']); @@ -108,22 +113,46 @@ if(!empty($marker)){ // Search by tag - $ldapfilter = '(&(objectClass=contactPerson)'; + $ldapfilter = '(&( |(objectClass=evolutionPerson)(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 .= '(|(|('.$FIELDS['name'].'=*'.$word.'*)('. - $FIELDS['givenname'].'=*'.$word.'*))('. - $FIELDS['organization'].'=*'.$word.'*))'; + $wordfilter=''; + foreach($conf['searchfields'] as $field) { + $wordfilter .= '('.$field.'=*'.$word.'*)'; + } + for($i=0; $i