2021-04-19 23:30:27 +01:00
|
|
|
package ldap
|
|
|
|
|
|
|
|
import (
|
2021-05-04 20:49:15 +01:00
|
|
|
"sync"
|
|
|
|
|
2021-05-04 23:03:19 +01:00
|
|
|
"github.com/go-openapi/strfmt"
|
2021-04-19 23:30:27 +01:00
|
|
|
log "github.com/sirupsen/logrus"
|
2021-05-16 20:07:01 +01:00
|
|
|
"goauthentik.io/outpost/api"
|
2021-04-19 23:30:27 +01:00
|
|
|
"goauthentik.io/outpost/pkg/ak"
|
|
|
|
|
2021-05-04 20:49:15 +01:00
|
|
|
"github.com/nmcclain/ldap"
|
2021-04-19 23:30:27 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
const GroupObjectClass = "group"
|
|
|
|
const UserObjectClass = "user"
|
|
|
|
|
2021-04-26 10:53:06 +01:00
|
|
|
type ProviderInstance struct {
|
2021-04-19 23:30:27 +01:00
|
|
|
BaseDN string
|
|
|
|
|
2021-04-26 10:53:06 +01:00
|
|
|
UserDN string
|
|
|
|
GroupDN string
|
|
|
|
|
2021-05-04 23:03:19 +01:00
|
|
|
appSlug string
|
|
|
|
flowSlug string
|
|
|
|
s *LDAPServer
|
|
|
|
log *log.Entry
|
2021-05-04 20:49:15 +01:00
|
|
|
|
2021-05-04 23:03:19 +01:00
|
|
|
searchAllowedGroups []*strfmt.UUID
|
|
|
|
boundUsersMutex sync.RWMutex
|
|
|
|
boundUsers map[string]UserFlags
|
2021-05-04 20:49:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
type UserFlags struct {
|
2021-05-16 20:07:01 +01:00
|
|
|
UserInfo api.User
|
2021-05-04 20:49:15 +01:00
|
|
|
CanSearch bool
|
2021-04-26 10:53:06 +01:00
|
|
|
}
|
2021-04-19 23:30:27 +01:00
|
|
|
|
2021-04-26 10:53:06 +01:00
|
|
|
type LDAPServer struct {
|
2021-04-19 23:30:27 +01:00
|
|
|
s *ldap.Server
|
|
|
|
log *log.Entry
|
|
|
|
ac *ak.APIController
|
2021-04-25 21:07:12 +01:00
|
|
|
|
2021-04-26 10:53:06 +01:00
|
|
|
providers []*ProviderInstance
|
2021-04-19 23:30:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func NewServer(ac *ak.APIController) *LDAPServer {
|
|
|
|
s := ldap.NewServer()
|
|
|
|
s.EnforceLDAP = true
|
|
|
|
ls := &LDAPServer{
|
2021-04-26 10:53:06 +01:00
|
|
|
s: s,
|
2021-04-26 14:35:56 +01:00
|
|
|
log: log.WithField("logger", "authentik.outpost.ldap"),
|
2021-04-26 10:53:06 +01:00
|
|
|
ac: ac,
|
|
|
|
providers: []*ProviderInstance{},
|
2021-04-19 23:30:27 +01:00
|
|
|
}
|
|
|
|
s.BindFunc("", ls)
|
|
|
|
s.SearchFunc("", ls)
|
|
|
|
return ls
|
|
|
|
}
|