2017-08-16 21:37:37 +00:00
|
|
|
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
2016-04-16 18:39:43 +00:00
|
|
|
// See License.txt for license information.
|
|
|
|
|
|
|
|
package einterfaces
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/mattermost/platform/model"
|
|
|
|
)
|
|
|
|
|
|
|
|
type LdapInterface interface {
|
2016-05-15 21:02:30 +00:00
|
|
|
DoLogin(id string, password string) (*model.User, *model.AppError)
|
2016-04-16 18:39:43 +00:00
|
|
|
GetUser(id string) (*model.User, *model.AppError)
|
|
|
|
CheckPassword(id string, password string) *model.AppError
|
2016-05-15 21:02:30 +00:00
|
|
|
SwitchToLdap(userId, ldapId, ldapPassword string) *model.AppError
|
|
|
|
ValidateFilter(filter string) *model.AppError
|
2016-06-23 18:28:05 +00:00
|
|
|
Syncronize() *model.AppError
|
|
|
|
StartLdapSyncJob()
|
2016-08-15 16:47:31 +00:00
|
|
|
SyncNow()
|
2016-09-17 13:19:18 +00:00
|
|
|
RunTest() *model.AppError
|
2016-08-15 16:47:31 +00:00
|
|
|
GetAllLdapUsers() ([]*model.User, *model.AppError)
|
2016-04-16 18:39:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var theLdapInterface LdapInterface
|
|
|
|
|
|
|
|
func RegisterLdapInterface(newInterface LdapInterface) {
|
|
|
|
theLdapInterface = newInterface
|
|
|
|
}
|
|
|
|
|
|
|
|
func GetLdapInterface() LdapInterface {
|
|
|
|
return theLdapInterface
|
|
|
|
}
|