token

package
v1.20.65 Latest Latest
Warning

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

Go to latest
Published: May 6, 2024 License: Zlib Imports: 1 Imported by: 0

Documentation

Index

Constants

View Source
const (
	CSource    = "source"
	CSession   = "session"
	CExtend    = "extend"
	CUid       = "uid"
	CBase64    = "base64"
	CCustom    = "custom"
	CIssuedAt  = "issue_at"
	CExpiresAt = "expire_at"
)

Variables

This section is empty.

Functions

func IsBase64Enabled added in v1.3.18

func IsBase64Enabled(opts ...Option) bool

Types

type Authenticate added in v0.5.9

type Authenticate interface {
	Type() string
	// Create secretKey不是那个密钥,而是 Secret interface 的key,通过这个key值,获取到真实的密钥
	Create(secretKey string, expireSeconds int64, opts ...Option) (Token, error)
	// Check secretKey不是那个密钥,而是 Secret interface 的key,通过这个key值,获取到真实的密钥
	Check(secretKey string, tk string, opts ...Option) (Token, error)
	// Decode not need sign, only parse
	Decode(tk string, opts ...Option) (Token, error)
	// EnableFlag return 0= disable, 1=enable, 2=not exist
	// secretKey不是那个密钥,而是 Secret interface 的key, 通过这个key值,获取到真实的密钥
	EnableFlag(secretKey string) int
	// SetEnabled secretKey不是那个密钥,而是 Secret interface 的key, 通过这个key值,获取到真实的密钥
	SetEnabled(secretKey string, enable bool)
}

type Engine added in v0.5.11

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

type Factory added in v1.3.18

type Factory interface {
	Create(key Key, opts ...Option) (Token, error)
	Decode(tk string, opts ...Option) (Token, error)
	Check(tk string, key Key, opts ...Option) (Token, error)
}

type Key

type Key secret.Key

type Option added in v1.2.20

type Option struct {
	Base64 bool //是否使用base64编码
}

type Route added in v0.5.11

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

type Secret added in v0.5.11

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

type Source added in v0.5.9

type Source struct {
	AppId  string `json:"appid"`
	Source string `json:"source"`
}

type Token

type Token interface {
	// WithVar key= CSource value= token.Source
	//         key= CSession value= string
	//         key= CExtend value= string
	//         key= CUid value= string
	//         key= CCustom value = interface 自定义数据
	//         key= CIssuedAt value= int64 秒
	//         key= CExpiresAt value= int64 秒
	WithVar(key string, value interface{}) Token
	GetVar(key string) interface{}
	GetToken() string
	Update() (string, error)
	// ExpireIn 根据配置,产生一个过期时间
	ExpireIn() int64
}

Jump to

Keyboard shortcuts

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