ldap-proxy/internal/ldap/type.go

34 lines
662 B
Go

package ldap
import (
"context"
"github.com/hashicorp/go-hclog"
ldap "github.com/ps78674/ldapserver"
pb "github.com/netauth/protocol"
)
type naClient interface {
AuthEntity(context.Context, string, string) error
EntitySearch(context.Context, string) ([]*pb.Entity, error)
EntityGroups(context.Context, string) ([]*pb.Group, error)
EntityKVGet(context.Context, string, string) (map[string][]string, error)
GroupSearch(context.Context, string) ([]*pb.Group, error)
GroupMembers(context.Context, string) ([]*pb.Entity, error)
}
type server struct {
*ldap.Server
routes *ldap.RouteMux
c naClient
l hclog.Logger
nc []string
allowAnon bool
}