Documentation ¶
Index ¶
- Variables
- type ClientAuthorizationGrantChecker
- type TokenAuthenticator
- type UserConversion
- func (s *UserConversion) ConvertFromAccessToken(token *oapi.OAuthAccessToken) (interface{}, error)
- func (s *UserConversion) ConvertFromAuthorizeToken(token *oapi.OAuthAuthorizeToken) (interface{}, error)
- func (s *UserConversion) ConvertToAccessToken(user interface{}, token *oapi.OAuthAccessToken) error
- func (s *UserConversion) ConvertToAuthorizeToken(user interface{}, token *oapi.OAuthAuthorizeToken) error
Constants ¶
This section is empty.
Variables ¶
View Source
var ErrExpired = errors.New("Token is expired")
Functions ¶
This section is empty.
Types ¶
type ClientAuthorizationGrantChecker ¶
type ClientAuthorizationGrantChecker struct {
// contains filtered or unexported fields
}
func NewClientAuthorizationGrantChecker ¶
func NewClientAuthorizationGrantChecker(registry oauthclientauthorization.Registry) *ClientAuthorizationGrantChecker
func (*ClientAuthorizationGrantChecker) HasAuthorizedClient ¶
type TokenAuthenticator ¶
type TokenAuthenticator struct {
// contains filtered or unexported fields
}
func NewTokenAuthenticator ¶
func NewTokenAuthenticator(tokens oauthaccesstoken.Registry, users user.Registry, groupMapper identitymapper.UserToGroupMapper) *TokenAuthenticator
func (*TokenAuthenticator) AuthenticateToken ¶
type UserConversion ¶
type UserConversion struct{}
func NewUserConversion ¶
func NewUserConversion() *UserConversion
NewUserConversion creates an object that can convert the user.Info object to and from an oauth access/authorize token object.
func (*UserConversion) ConvertFromAccessToken ¶
func (s *UserConversion) ConvertFromAccessToken(token *oapi.OAuthAccessToken) (interface{}, error)
func (*UserConversion) ConvertFromAuthorizeToken ¶
func (s *UserConversion) ConvertFromAuthorizeToken(token *oapi.OAuthAuthorizeToken) (interface{}, error)
func (*UserConversion) ConvertToAccessToken ¶
func (s *UserConversion) ConvertToAccessToken(user interface{}, token *oapi.OAuthAccessToken) error
func (*UserConversion) ConvertToAuthorizeToken ¶
func (s *UserConversion) ConvertToAuthorizeToken(user interface{}, token *oapi.OAuthAuthorizeToken) error
Click to show internal directories.
Click to hide internal directories.