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 clientauthorization.Registry) *ClientAuthorizationGrantChecker
func (*ClientAuthorizationGrantChecker) HasAuthorizedClient ¶
func (c *ClientAuthorizationGrantChecker) HasAuthorizedClient(user user.Info, grant *api.Grant) (approved bool, err error)
type TokenAuthenticator ¶
type TokenAuthenticator struct {
// contains filtered or unexported fields
}
func NewTokenAuthenticator ¶
func NewTokenAuthenticator(registry accesstoken.Registry) *TokenAuthenticator
func (*TokenAuthenticator) AuthenticateToken ¶
func (a *TokenAuthenticator) AuthenticateToken(value string) (user.Info, bool, error)
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.