mirror of
https://gitlab.crans.org/nounous/ghostream.git
synced 2024-12-22 10:22:19 +00:00
Match aliases as groups
This commit is contained in:
parent
8d2adad509
commit
7e0ee7aba5
@ -4,11 +4,12 @@ package ldap
|
|||||||
import (
|
import (
|
||||||
"github.com/go-ldap/ldap/v3"
|
"github.com/go-ldap/ldap/v3"
|
||||||
"log"
|
"log"
|
||||||
|
"strings"
|
||||||
)
|
)
|
||||||
|
|
||||||
// Options holds package configuration
|
// Options holds package configuration
|
||||||
type Options struct {
|
type Options struct {
|
||||||
Aliases map[string]string
|
Aliases map[string]map[string]string
|
||||||
URI string
|
URI string
|
||||||
UserDn string
|
UserDn string
|
||||||
}
|
}
|
||||||
@ -22,17 +23,33 @@ type LDAP struct {
|
|||||||
// Login tries to bind to LDAP
|
// Login tries to bind to LDAP
|
||||||
// Returns (true, nil) if success
|
// Returns (true, nil) if success
|
||||||
func (a LDAP) Login(username string, password string) (bool, error) {
|
func (a LDAP) Login(username string, password string) (bool, error) {
|
||||||
|
aliasSplit := strings.SplitN(username, "__", 2)
|
||||||
|
potentialUsernames := []string{username}
|
||||||
|
|
||||||
|
for len(aliasSplit) == 2 {
|
||||||
|
alias := aliasSplit[0]
|
||||||
|
trueUsername := aliasSplit[1]
|
||||||
// Resolve stream alias if necessary
|
// Resolve stream alias if necessary
|
||||||
for aliasFor, ok := a.Cfg.Aliases[username]; ok; aliasFor, ok = a.Cfg.Aliases[username] {
|
if aliases, ok := a.Cfg.Aliases[alias]; ok {
|
||||||
log.Printf("[LDAP] Use stream alias %s for username %s", username, aliasFor)
|
if _, ok := aliases[trueUsername]; ok {
|
||||||
username = aliasFor
|
log.Printf("[LDAP] Use stream alias %s for username %s", alias, trueUsername)
|
||||||
|
potentialUsernames = append(potentialUsernames, trueUsername)
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var err error = nil
|
||||||
|
for _, username := range potentialUsernames {
|
||||||
// Try to bind as user
|
// Try to bind as user
|
||||||
bindDn := "cn=" + username + "," + a.Cfg.UserDn
|
bindDn := "cn=" + username + "," + a.Cfg.UserDn
|
||||||
err := a.Conn.Bind(bindDn, password)
|
err = a.Conn.Bind(bindDn, password)
|
||||||
|
if err == nil {
|
||||||
// Login succeeded if no error
|
// Login succeeded if no error
|
||||||
|
return true, nil
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Unable to log in
|
||||||
return err == nil, err
|
return err == nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -36,8 +36,10 @@ auth:
|
|||||||
# userdn: cn=users,dc=example,dc=com
|
# userdn: cn=users,dc=example,dc=com
|
||||||
#
|
#
|
||||||
# # You can define aliases, to stream on stream.example.com/example with the credentials of the demo account.
|
# # You can define aliases, to stream on stream.example.com/example with the credentials of the demo account.
|
||||||
|
# # You will have to use the streamid example__demo:password
|
||||||
# aliases:
|
# aliases:
|
||||||
# example: demo
|
# example:
|
||||||
|
# demo: ignored
|
||||||
#
|
#
|
||||||
|
|
||||||
## Stream forwarding ##
|
## Stream forwarding ##
|
||||||
|
@ -42,7 +42,7 @@ func New() *Config {
|
|||||||
Credentials: make(map[string]string),
|
Credentials: make(map[string]string),
|
||||||
},
|
},
|
||||||
LDAP: ldap.Options{
|
LDAP: ldap.Options{
|
||||||
Aliases: make(map[string]string),
|
Aliases: make(map[string]map[string]string),
|
||||||
URI: "ldap://127.0.0.1:389",
|
URI: "ldap://127.0.0.1:389",
|
||||||
UserDn: "cn=users,dc=example,dc=com",
|
UserDn: "cn=users,dc=example,dc=com",
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user