* providers/ldap: improve password totp detection Signed-off-by: Jens Langhammer <jens@goauthentik.io> * add flag for totp mfa support Signed-off-by: Jens Langhammer <jens@goauthentik.io> * keep support for static tokens Signed-off-by: Jens Langhammer <jens@goauthentik.io> * fix migrations Signed-off-by: Jens Langhammer <jens@goauthentik.io> --------- Signed-off-by: Jens Langhammer <jens@goauthentik.io>
		
			
				
	
	
		
			41 lines
		
	
	
		
			883 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			883 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package server
 | 
						|
 | 
						|
import (
 | 
						|
	"beryju.io/ldap"
 | 
						|
	"github.com/go-openapi/strfmt"
 | 
						|
	"goauthentik.io/api/v3"
 | 
						|
	"goauthentik.io/internal/outpost/ldap/flags"
 | 
						|
)
 | 
						|
 | 
						|
type LDAPServerInstance interface {
 | 
						|
	GetAPIClient() *api.APIClient
 | 
						|
	GetOutpostName() string
 | 
						|
 | 
						|
	GetAuthenticationFlowSlug() string
 | 
						|
	GetInvalidationFlowSlug() string
 | 
						|
	GetAppSlug() string
 | 
						|
	GetSearchAllowedGroups() []*strfmt.UUID
 | 
						|
 | 
						|
	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
 | 
						|
 | 
						|
	GetUidNumber(api.User) string
 | 
						|
	GetGidNumber(api.Group) string
 | 
						|
 | 
						|
	UsersForGroup(api.Group) []string
 | 
						|
 | 
						|
	GetFlags(dn string) *flags.UserFlags
 | 
						|
	SetFlags(dn string, flags *flags.UserFlags)
 | 
						|
 | 
						|
	GetNeededObjects(scope int, baseDN string, filterOC string) (bool, bool)
 | 
						|
}
 |