token

package
v1.1.14 Latest Latest
Warning

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

Go to latest
Published: Oct 25, 2022 License: Zlib Imports: 1 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Authenticate added in v0.5.9

type Authenticate interface {
	Type() string
	Create(source Source, expireSeconds int64) (Token, error)
	Decode(source Source, token string) (Token, error)
	Check(source Source, token string) (Token, error)
	// EnableFlag return 0= disable, 1=enable, 2=not exist
	EnableFlag(source Source) int
	SetEnabled(source Source, enable bool)
}

type Engine added in v0.5.11

type Engine interface {
	Client() Route
	Server() Route
}

type Key

type Key secret.Key

type Route added in v0.5.11

type Route interface {
	HasAuth(method string) bool
	Auth() Authenticate
	Use(a Authenticate) Route
}

type Secret added in v0.5.11

type Secret interface {
	GetSecret(source Source) secret.Secret
	SetEnabled(source Source, enable bool)
	// EnableFlag return 0= disable, 1=enable, 2=not exist
	EnableFlag(source Source) int
}

type Session

type Session struct {
	Uid       string `json:"uid"`
	UserToken string `json:"-"`
}

type Source added in v0.5.9

type Source struct {
	AppId     string      `json:"appid"`
	Source    string      `json:"source"`
	SecretKey string      `json:"-"`
	Method    string      `json:"-"` //认证方式 "jwt
	Custom    interface{} `json:"-"` //自定义数据
}

type Token

type Token interface {
	WithSession(session Session) Token
	WithExtend(extend string) Token
	GetSession() Session
	GetExtend() string
	GetToken() string
	Update() (string, error)
}

Jump to

Keyboard shortcuts

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