24 lines
652 B
Go
24 lines
652 B
Go
|
package ldap
|
||
|
|
||
|
import (
|
||
|
"net"
|
||
|
"strings"
|
||
|
|
||
|
"github.com/nmcclain/ldap"
|
||
|
)
|
||
|
|
||
|
func (ls *LDAPServer) Bind(bindDN string, bindPW string, conn net.Conn) (ldap.LDAPResultCode, error) {
|
||
|
ls.log.WithField("bindDN", bindDN).Info("bind")
|
||
|
bindDN = strings.ToLower(bindDN)
|
||
|
for _, instance := range ls.providers {
|
||
|
username, err := instance.getUsername(bindDN)
|
||
|
if err == nil {
|
||
|
return instance.Bind(username, bindDN, bindPW, conn)
|
||
|
} else {
|
||
|
ls.log.WithError(err).Debug("Username not for instance")
|
||
|
}
|
||
|
}
|
||
|
ls.log.WithField("bindDN", bindDN).WithField("request", "bind").Warning("No provider found for request")
|
||
|
return ldap.LDAPResultOperationsError, nil
|
||
|
}
|