ldap-proxy/internal/ldap/type.go

34 lines
662 B
Go
Raw Normal View History

2020-08-21 02:03:53 -05:00
package ldap
import (
"context"
"github.com/hashicorp/go-hclog"
ldap "github.com/ps78674/ldapserver"
pb "github.com/netauth/protocol"
2020-08-21 02:03:53 -05:00
)
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)
2020-08-21 02:03:53 -05:00
}
type server struct {
*ldap.Server
routes *ldap.RouteMux
2020-08-21 02:03:53 -05:00
c naClient
l hclog.Logger
2020-08-22 22:49:54 -05:00
nc []string
allowAnon bool
2020-08-21 02:03:53 -05:00
}