You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
742 B
37 lines
742 B
3 years ago
|
package common
|
||
|
|
||
|
import (
|
||
|
"time"
|
||
|
|
||
|
"github.com/dgrijalva/jwt-go"
|
||
|
"github.com/zggsong/gin-vue-demo/model"
|
||
|
)
|
||
|
|
||
|
var jwtKey = []byte("a_secret_key")
|
||
|
|
||
|
type Claims struct {
|
||
|
UserId uint
|
||
|
jwt.StandardClaims
|
||
|
}
|
||
|
|
||
|
func ReleaseToken(user model.User) (string, error) {
|
||
|
// 设置Token过期时间
|
||
|
expirationTime := time.Now().Add(7 * 24 * time.Hour)
|
||
|
claims := Claims{
|
||
|
UserId: user.ID,
|
||
|
StandardClaims: jwt.StandardClaims{
|
||
|
ExpiresAt: expirationTime.Unix(),
|
||
|
IssuedAt: time.Now().Unix(),
|
||
|
Issuer: "github.com/zggsong/gin-vue-demo",
|
||
|
Subject: "user token",
|
||
|
},
|
||
|
}
|
||
|
token := jwt.NewWithClaims(jwt.SigningMethodHS256, claims)
|
||
|
tokenString, err := token.SignedString(jwtKey)
|
||
|
if err != nil {
|
||
|
return "", err
|
||
|
}
|
||
|
|
||
|
return tokenString, nil
|
||
|
}
|