session

package
v0.0.1 Latest Latest
Warning

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

Go to latest
Published: Nov 5, 2014 License: Apache-2.0 Imports: 5 Imported by: 0

Documentation

Index

Constants

View Source
const UserNameKey = "user.name"

Variables

This section is empty.

Functions

This section is empty.

Types

type Session

type Session interface {
	Values() map[interface{}]interface{}
}

type SessionAuthenticator

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

func NewSessionAuthenticator

func NewSessionAuthenticator(store Store, name string) *SessionAuthenticator

func (*SessionAuthenticator) AuthenticateRequest

func (a *SessionAuthenticator) AuthenticateRequest(req *http.Request) (api.UserInfo, bool, error)

func (*SessionAuthenticator) AuthenticationSucceeded

func (a *SessionAuthenticator) AuthenticationSucceeded(user api.UserInfo, state string, w http.ResponseWriter, req *http.Request) error

func (*SessionAuthenticator) InvalidateAuthentication

func (a *SessionAuthenticator) InvalidateAuthentication(context api.UserInfo, w http.ResponseWriter, req *http.Request) error

type Store

type Store interface {
	Get(r *http.Request, name string) (Session, error)
	Save(http.ResponseWriter, *http.Request) error
	Wrap(http.Handler) http.Handler
}

func NewStore

func NewStore(secrets ...string) Store

Jump to

Keyboard shortcuts

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