tothic

package
v1.5.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 8, 2024 License: MPL-2.0 Imports: 9 Imported by: 2

Documentation

Overview

Package Tothic wraps Gothic behaviour for multi-tenant usage. Package gothic wraps common behaviour when using Goth. This makes it quick, and easy, to get up and running with Goth. Of course, if you want complete control over how things flow, in regards to the authentication process, feel free and use Goth directly.

See https://github.com/markbates/goth/examples/main.go to see this in action.

Index

Constants

View Source
const EnvPrefix = "TYK_IB"
View Source
const SessionName = "_gothic_session"

SessionName is the key used to access the session store.

Variables

View Source
var CompleteUserAuth = func(res http.ResponseWriter, req *http.Request, toth *toth.TothInstance, profile tap.Profile) (goth.User, error) {

	providerName, err := GetProviderName(profile)
	if err != nil {
		return goth.User{}, err
	}

	provider, err := toth.GetProvider(providerName)
	if err != nil {
		return goth.User{}, err
	}

	session, err := Store.Get(req, SessionName)
	if err != nil {
		return goth.User{}, errors.New("cannot get session store")
	}

	if session.Values[SessionName] == nil {
		return goth.User{}, errors.New("could not find a matching session for this request")
	}

	sess, err := provider.UnmarshalSession(session.Values[SessionName].(string))
	if err != nil {
		return goth.User{}, err
	}

	_, err = sess.Authorize(provider, req.URL.Query())

	if err != nil {
		return goth.User{}, err
	}

	return provider.FetchUser(sess)
}

CompleteUserAuth does what it says on the tin. It completes the authentication process and fetches all of the basic information about the user from the provider.

It expects to be able to get the name of the provider from the query parameters as either "provider" or ":provider".

See https://github.com/markbates/goth/examples/main.go to see this in action.

View Source
var GetProviderName = getProviderName

GetProviderName is a function used to get the name of a provider for a given request. By default, this provider is fetched from the URL query string. If you provide it in a different way, assign your own function to this variable that returns the provider name for your request.

View Source
var GetState = func(req *http.Request) string {
	return "state"
}

GetState gets the state string associated with the given request This state is sent to the provider and can be retrieved during the callback.

Store can/should be set by applications using gothic. The default is a cookie store.

View Source
var TothErrorHandler func(string, string, error, int, http.ResponseWriter, *http.Request)

Functions

func BeginAuthHandler

func BeginAuthHandler(res http.ResponseWriter, req *http.Request, toth *toth.TothInstance, pathParams map[string]string, profile tap.Profile)

BeginAuthHandler is a convienence handler for starting the authentication process. It expects to be able to get the name of the provider from the query parameters as either "provider" or ":provider".

BeginAuthHandler will redirect the user to the appropriate authentication end-point for the requested provider.

See https://github.com/markbates/goth/examples/main.go to see this in action.

func GetAuthURL

func GetAuthURL(res http.ResponseWriter, req *http.Request, toth *toth.TothInstance, profile tap.Profile) (string, error)

GetAuthURL starts the authentication process with the requested provided. It will return a URL that should be used to send users to.

It expects to be able to get the name of the provider from the query parameters as either "provider" or ":provider".

I would recommend using the BeginAuthHandler instead of doing all of these steps yourself, but that's entirely up to you.

func KeyFromEnv

func KeyFromEnv() (key string)

func SetParamsStoreHandler added in v1.1.0

func SetParamsStoreHandler(newParamsStore tap.AuthRegisterBackend)

func SetPathParams added in v1.1.0

func SetPathParams(newPathParams map[string]string, profile tap.Profile)

func SetupSessionStore added in v1.5.0

func SetupSessionStore()

Types

type PathParam added in v1.1.0

type PathParam struct {
	Id       string `json:"id"`
	Provider string `json:"provider"`
}

func GetParams added in v1.1.0

func GetParams(profile tap.Profile) PathParam

func (PathParam) MarshalBinary added in v1.1.0

func (p PathParam) MarshalBinary() ([]byte, error)

func (PathParam) UnmarshalBinary added in v1.1.0

func (p PathParam) UnmarshalBinary(data []byte) error

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL