*: connectors use a different identity object than storage
This commit is contained in:
@@ -1,11 +1,7 @@
|
||||
// Package connector defines interfaces for federated identity strategies.
|
||||
package connector
|
||||
|
||||
import (
|
||||
"net/http"
|
||||
|
||||
"github.com/coreos/poke/storage"
|
||||
)
|
||||
import "net/http"
|
||||
|
||||
// Connector is a mechanism for federating login to a remote identity service.
|
||||
//
|
||||
@@ -15,18 +11,32 @@ type Connector interface {
|
||||
Close() error
|
||||
}
|
||||
|
||||
// Identity represents the ID Token claims supported by the server.
|
||||
type Identity struct {
|
||||
UserID string
|
||||
Username string
|
||||
Email string
|
||||
EmailVerified bool
|
||||
|
||||
// ConnectorData holds data used by the connector for subsequent requests after initial
|
||||
// authentication, such as access tokens for upstream provides.
|
||||
//
|
||||
// This data is never shared with end users, OAuth clients, or through the API.
|
||||
ConnectorData []byte
|
||||
}
|
||||
|
||||
// PasswordConnector is an optional interface for password based connectors.
|
||||
type PasswordConnector interface {
|
||||
Login(username, password string) (identity storage.Identity, validPassword bool, err error)
|
||||
Login(username, password string) (identity Identity, validPassword bool, err error)
|
||||
}
|
||||
|
||||
// CallbackConnector is an optional interface for callback based connectors.
|
||||
type CallbackConnector interface {
|
||||
LoginURL(callbackURL, state string) (string, error)
|
||||
HandleCallback(r *http.Request) (identity storage.Identity, state string, err error)
|
||||
HandleCallback(r *http.Request) (identity Identity, state string, err error)
|
||||
}
|
||||
|
||||
// GroupsConnector is an optional interface for connectors which can map a user to groups.
|
||||
type GroupsConnector interface {
|
||||
Groups(identity storage.Identity) ([]string, error)
|
||||
Groups(identity Identity) ([]string, error)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user