mirror of
https://github.com/goauthentik/authentik
synced 2026-04-28 10:28:22 +02:00
* packages/client-go: init Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space> * format Signed-off-by: Jens Langhammer <jens@goauthentik.io> * remove mod/sum Signed-off-by: Jens Langhammer <jens@goauthentik.io> * fix translate Signed-off-by: Jens Langhammer <jens@goauthentik.io> * no go replace Signed-off-by: Jens Langhammer <jens@goauthentik.io> * update rust makefile with pwd Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space> * fix build Signed-off-by: Jens Langhammer <jens@goauthentik.io> * fix docs Signed-off-by: Jens Langhammer <jens@goauthentik.io> * don't need a version ig? Signed-off-by: Jens Langhammer <jens@goauthentik.io> * exclude go client from cspell Signed-off-by: Jens Langhammer <jens@goauthentik.io> * fix main docker build Signed-off-by: Jens Langhammer <jens@goauthentik.io> --------- Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space> Signed-off-by: Jens Langhammer <jens@goauthentik.io> Co-authored-by: Jens Langhammer <jens@goauthentik.io>
43 lines
935 B
Go
43 lines
935 B
Go
package server
|
|
|
|
import (
|
|
"beryju.io/ldap"
|
|
|
|
"goauthentik.io/internal/outpost/ldap/flags"
|
|
api "goauthentik.io/packages/client-go"
|
|
)
|
|
|
|
type LDAPServerInstance interface {
|
|
GetAPIClient() *api.APIClient
|
|
GetOutpostName() string
|
|
|
|
GetAuthenticationFlowSlug() string
|
|
GetInvalidationFlowSlug() *string
|
|
GetAppSlug() string
|
|
GetProviderID() int32
|
|
|
|
UserEntry(u api.User) *ldap.Entry
|
|
|
|
GetBaseDN() string
|
|
GetBaseGroupDN() string
|
|
GetBaseVirtualGroupDN() string
|
|
GetBaseUserDN() string
|
|
GetMFASupport() bool
|
|
|
|
GetUserDN(string) string
|
|
GetGroupDN(string) string
|
|
GetVirtualGroupDN(string) string
|
|
|
|
GetUserUidNumber(api.User) string
|
|
GetUserGidNumber(api.User) string
|
|
GetGroupGidNumber(api.Group) string
|
|
|
|
MembersForGroup(api.Group) []string
|
|
MemberOfForGroup(api.Group) []string
|
|
|
|
GetFlags(dn string) *flags.UserFlags
|
|
SetFlags(dn string, flags *flags.UserFlags)
|
|
|
|
GetNeededObjects(scope int, baseDN string, filterOC string) (bool, bool)
|
|
}
|