X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=ajax.php;h=eeacb17243ad5a809a837a48f4d209efcde7ef2f;hb=d381303dd441c710512326ac1d56b5789dbd04ce;hp=32ffcf8e51557f56869cf1319f48543fd7be97ba;hpb=0fd360a9c929704faf2e5cb26bc6948eca606bfc;p=contagged diff --git a/ajax.php b/ajax.php index 32ffcf8..eeacb17 100644 --- a/ajax.php +++ b/ajax.php @@ -1,13 +1,20 @@ '; + print htmlspecialchars($tag); + print ' '; + } +} + +/** + * Load current tags of an entry + */ +function ajax_loadtags($dn,$type='plain'){ + global $conf; + global $LDAP_CON; + global $FIELDS; + if(!$FIELDS['_marker']) return; + + header('Content-Type: text/html; charset=utf-8'); + + $sr = ldap_search($LDAP_CON,$dn,'(objectClass=inetOrgPerson)',array($FIELDS['_marker'])); + if(!ldap_count_entries($LDAP_CON,$sr)) return false; + $result = ldap_get_binentries($LDAP_CON, $sr); + $entry = $result[0]; + + if($type == 'plain'){ + echo join(', ',(array) $entry[$FIELDS['_marker']]); + }else{ + foreach ((array) $entry[$FIELDS['_marker']] as $tag){ + echo ''; + echo htmlspecialchars($tag); + echo ' '; + } + } +} + /** * Find all tags (markers) starting with the given * string */ function ajax_taglookup($tag){ + header('Content-Type: text/xml; charset=utf-8'); global $conf; global $LDAP_CON; - if(!$conf[extended]) return; + global $FIELDS; + if(!$FIELDS['_marker']) return; $search = ldap_filterescape($tag); - $filter = "(&(objectClass=contactPerson)(marker=$search*))"; - $result = ldap_queryabooks($filter,'marker'); + $filter = "(&(objectClass=inetOrgPerson)(".$FIELDS['_marker']."=$search*))"; + $result = ldap_queryabooks($filter,$FIELDS['_marker']); if(!count($result)) return; $tags = array(); foreach ($result as $entry){ - if(count($entry['marker'])){ - foreach($entry['marker'] as $marker){ + if(count($entry[$FIELDS['_marker']])){ + foreach($entry[$FIELDS['_marker']] as $marker){ if(preg_match('/^'.preg_quote($tag,'/').'/i',$marker)){ array_push($tags, strtolower($marker)); } @@ -62,11 +131,53 @@ function ajax_taglookup($tag){ $tags = array_unique($tags); sort($tags,SORT_STRING); - print ''; + echo ''.NL; +} + +/** + * Do a simple lookup in any simple field + */ +function ajax_lookup($field,$search){ + header('Content-Type: text/xml; charset=utf-8'); + global $conf; + global $LDAP_CON; + global $FIELDS; + + if(!$FIELDS[$field]) return; + $field = $FIELDS[$field]; + + $search = ldap_filterescape($search); + $filter = "(&(objectClass=inetOrgPerson)($field=$search*))"; + $result = ldap_queryabooks($filter,$field); + if(!count($result)) return; + + $items = array(); + foreach ($result as $entry){ + if(isset($entry[$field]) && !empty($entry[$field])){ + $items[] = $entry[$field][0]; + } + } + + $items = array_unique($items); + sort($items,SORT_STRING); + + echo ''.NL; + echo ''.NL; + foreach($items as $out){ + echo ''.NL; + echo ''.htmlspecialchars($out).''.NL; + echo ''.htmlspecialchars($out).''.NL; + echo ''.NL; + } + echo ''.NL; } ?>