token

package
v0.0.1 Latest Latest
Warning

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

Go to latest
Published: May 3, 2023 License: AGPL-3.0 Imports: 6 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	//ErrMissingHeader means the `Authorization`header was empty
	ErrMissingHeader = errors.New("the length of the `Authorization` header is zero.")
)

Functions

func Sign

func Sign(ctx *gin.Context, c Context, secret string) (tokenString string, err error)

sign sings the context with the specified secret

Types

type Context

type Context struct {
	// 用户id
	ID uint64
	// 用户uuid
	UUID string
	// 用户名
	Username string
	// SafeCode string
	// 过期日期时间戳 time unix
	Expiry int64
}

Context is the context of the JSON web token

func Parse

func Parse(tokenString string, secret string) (*Context, error)

parse validates the token with the specified secret, and returns the context if the token was valid

func ParseRequest

func ParseRequest(c *gin.Context) (*Context, error)

parseRequest gets the token from the header and pass it to the parse function to parses the token.

Jump to

Keyboard shortcuts

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