Documentation ¶
Index ¶
- type Callback
- type Config
- type OAuth2AuthCodeURLOptionsProvider
- type OAuth2ConfigProvider
- type OAuthClient
- func (oc *OAuthClient) AuthCookie() *cookie.Cookie
- func (oc *OAuthClient) HandleCallback(c echo.Context) error
- func (oc *OAuthClient) HandleLogin(c echo.Context) error
- func (oc *OAuthClient) HandleLogout(c echo.Context) error
- func (oc *OAuthClient) HandleToken(c echo.Context) error
- func (oc *OAuthClient) StateCookie() *cookie.Cookie
- type Option
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Callback ¶ added in v3.9.1
Callback occurs after the OAuth2 token exchange has been performed successfully.
type Config ¶
type Config struct { AuthorizeURL string `name:"authorize-url" description:"The OAuth Authorize URL"` LogoutURL string `name:"logout-url" description:"The OAuth Logout URL"` TokenURL string `name:"token-url" description:"The OAuth Token Exchange URL"` RootURL string `name:"-"` ClientID string `name:"client-id" description:"The OAuth client ID"` ClientSecret string `name:"client-secret" description:"The OAuth client secret" json:"-"` CrossSiteCookie bool `name:"cross-site-cookie" description:"Whether to make OAuth cookies accessible cross-site"` StateCookieName string `name:"-"` AuthCookieName string `name:"-"` // contains filtered or unexported fields }
Config is the configuration for the OAuth client.
type OAuth2AuthCodeURLOptionsProvider ¶ added in v3.11.0
type OAuth2AuthCodeURLOptionsProvider func(echo.Context) ([]oauth2.AuthCodeOption, error)
OAuth2AuthCodeURLOptionsProvider provides OAuth2 authorization URL options based on the context.
type OAuth2ConfigProvider ¶ added in v3.9.1
OAuth2ConfigProvider provides an OAuth2 client config based on the context.
type OAuthClient ¶
type OAuthClient struct {
// contains filtered or unexported fields
}
OAuthClient is the OAuth client component.
func (*OAuthClient) AuthCookie ¶
func (oc *OAuthClient) AuthCookie() *cookie.Cookie
AuthCookie returns a new authCookie.
func (*OAuthClient) HandleCallback ¶
func (oc *OAuthClient) HandleCallback(c echo.Context) error
HandleCallback is a handler that takes the auth code and exchanges it for the access token.
func (*OAuthClient) HandleLogin ¶
func (oc *OAuthClient) HandleLogin(c echo.Context) error
HandleLogin is the handler for redirecting the user to the authorization endpoint.
func (*OAuthClient) HandleLogout ¶
func (oc *OAuthClient) HandleLogout(c echo.Context) error
HandleLogout invalidates the user's authorization, removes the auth cookie and provides a URL to logout of the OAuth provider as well.
func (*OAuthClient) HandleToken ¶
func (oc *OAuthClient) HandleToken(c echo.Context) error
HandleToken is a handler that returns a valid OAuth token. It reads the token from the authorization cookie and refreshes it if needed. If the cookie is not there, it returns a 401 Unauthorized error.
func (*OAuthClient) StateCookie ¶
func (oc *OAuthClient) StateCookie() *cookie.Cookie
StateCookie returns the cookie storing the state of the console.
type Option ¶ added in v3.9.1
type Option func(*OAuthClient)
Option is an OAuth2Client configuration option.
func WithAuthCodeURLOptions ¶ added in v3.11.0
func WithAuthCodeURLOptions(provider OAuth2AuthCodeURLOptionsProvider) Option
WithAuthCodeURLOptions changes the OAuth2 authorization URL options provided to the oauth2 package.
func WithCallback ¶ added in v3.9.1
WithCallback adds a callback to be executed at the end of the OAuth2 token exchange.
func WithNextKey ¶ added in v3.9.1
WithNextKey overrides the default query parameter used for callback return.
func WithOAuth2ConfigProvider ¶ added in v3.9.1
func WithOAuth2ConfigProvider(provider OAuth2ConfigProvider) Option
WithOAuth2ConfigProvider overrides the default OAuth2 configuration provider.