|
@@ -1,8 +1,11 @@
|
|
|
package Services
|
|
|
|
|
|
import (
|
|
|
+ "fmt"
|
|
|
"github.com/gin-gonic/gin"
|
|
|
"github.com/golang-jwt/jwt/v5"
|
|
|
+ Mysql "goLoad1/Databases"
|
|
|
+ "goLoad1/Models/loginMondel"
|
|
|
"net/http"
|
|
|
"time"
|
|
|
)
|
|
@@ -29,11 +32,21 @@ func LoginCheck(name string, password string, c *gin.Context) map[string]bool {
|
|
|
return status
|
|
|
}
|
|
|
|
|
|
-// ...................................................
|
|
|
+func QueryUser(c *gin.Context) {
|
|
|
+ var data []loginMondel.Login
|
|
|
+ Mysql.DB.Find(&data)
|
|
|
+ c.JSON(http.StatusOK, data)
|
|
|
+ for _, val := range data {
|
|
|
+ fmt.Print(val)
|
|
|
+ }
|
|
|
+}
|
|
|
|
|
|
+// MyCustomClaims ...................................................
|
|
|
// MyCustomClaims 1.自定义声明类型
|
|
|
type MyCustomClaims struct {
|
|
|
- Username string `json:"username"`
|
|
|
+ UserName string `json:"username"`
|
|
|
+ Password string `json:"password"`
|
|
|
+ exp string
|
|
|
jwt.RegisteredClaims
|
|
|
}
|
|
|
|
|
@@ -42,13 +55,12 @@ var (
|
|
|
SecretKey = []byte("your-secret-key")
|
|
|
)
|
|
|
|
|
|
-// CreateToken 创建Token
|
|
|
-func CreateToken(userID int) (string, error) {
|
|
|
+// GenerateToken 创建Token
|
|
|
+func GenerateToken(name string, password string) (string, error) {
|
|
|
token := jwt.New(jwt.SigningMethodHS256)
|
|
|
claims := token.Claims.(jwt.MapClaims)
|
|
|
- claims["user_id"] = userID
|
|
|
+ claims["UserName"] = name
|
|
|
+ claims["Password"] = password
|
|
|
claims["exp"] = time.Now().Add(time.Hour * 1).Unix() // Token有效期1小时
|
|
|
return token.SignedString(SecretKey)
|
|
|
}
|
|
|
-
|
|
|
-//............................................................
|