Case insensitive match on attribute names

This commit is contained in:
Alex 2020-01-19 18:04:42 +01:00
parent 4c5b3d929d
commit 131297a33f
1 changed files with 23 additions and 19 deletions

42
main.go
View File

@ -329,8 +329,8 @@ func (server *Server) handleSearchInternal(state *State, w ldap.ResponseWriter,
// If attribute is not in request, exclude it from returned entry
if len(r.Attributes()) > 0 {
found := false
for _, need := range r.Attributes() {
if string(need) == attr {
for _, requested := range r.Attributes() {
if strings.EqualFold(string(requested), attr) {
found = true
break
}
@ -389,32 +389,36 @@ func applyFilter(entry Entry, filter message.Filter) (bool, error) {
return !res, nil
} else if fPresent, ok := filter.(message.FilterPresent); ok {
what := string(fPresent)
log.Printf("Present filter: %s", what)
if _, ok := entry[what]; ok {
return true, nil
// Case insensitive search
for desc := range entry {
if strings.EqualFold(what, desc) {
return true, nil
}
}
return false, nil
} else if fEquality, ok := filter.(message.FilterEqualityMatch); ok {
desc := string(fEquality.AttributeDesc())
target := string(fEquality.AssertionValue())
if value, ok := entry[desc]; ok {
if vstr, ok := value.(string); ok {
// If we have one value for the key, match exactly
return vstr == target, nil
} else if vlist, ok := value.([]string); ok {
// If we have several values for the key, one must match
for _, val := range vlist {
if val == target {
return true, nil
// Case insensitive attribute search
for entry_desc, value := range entry {
if strings.EqualFold(entry_desc, desc) {
if vstr, ok := value.(string); ok {
// If we have one value for the key, match exactly
return vstr == target, nil
} else if vlist, ok := value.([]string); ok {
// If we have several values for the key, one must match
for _, val := range vlist {
if val == target {
return true, nil
}
}
return false, nil
} else {
panic(fmt.Sprintf("Invalid value: %#v", value))
}
return false, nil
} else {
panic(fmt.Sprintf("Invalid value: %#v", value))
}
} else {
return false, nil
}
return false, nil
} else {
return false, fmt.Errorf("Unsupported filter: %#v %T", filter, filter)
}