cbwebauth

package
v0.2.0 Latest Latest
Warning

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

Go to latest
Published: Feb 17, 2020 License: MIT Imports: 2 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Container

type Container struct {
	// contains filtered or unexported fields
}

func New

func New(providers ...Provider) *Container

func (*Container) AuthMiddleware

func (c *Container) AuthMiddleware(ctx *fasthttp.RequestCtx) (bool, error)

func (*Container) GetUniqueIdentifier

func (c *Container) GetUniqueIdentifier(providerName string, ctx *fasthttp.RequestCtx) (string, error)

func (*Container) IsAuthenticated

func (c *Container) IsAuthenticated(providerName string, ctx *fasthttp.RequestCtx) (bool, error)

func (*Container) Login

func (c *Container) Login(providerName string, ctx *fasthttp.RequestCtx) (bool, error)

func (*Container) Logout

func (c *Container) Logout(providerName string, ctx *fasthttp.RequestCtx) (bool, error)

func (*Container) Register

func (c *Container) Register(providerName string, ctx *fasthttp.RequestCtx) (bool, error)

type Provider

type Provider interface {
	GetProviderName() string
	GetUniqueIdentifier(ctx *fasthttp.RequestCtx) string
	IsAuthenticated(ctx *fasthttp.RequestCtx) bool
	Login(ctx *fasthttp.RequestCtx) bool
	Logout(ctx *fasthttp.RequestCtx) bool
	Register(ctx *fasthttp.RequestCtx) bool
}

Directories

Path Synopsis

Jump to

Keyboard shortcuts

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