2545307760@qq.com 4 months ago
parent
commit
3346c138bc
6 changed files with 43 additions and 20 deletions
  1. 10 11
      Controllers/login.go
  2. 12 0
      Middlewares/accountCheck.go
  3. 1 1
      Models/loginMondel/login.go
  4. 1 1
      Router/login.go
  5. 19 7
      Services/login.go
  6. BIN
      tmp/runner-build.exe

+ 10 - 11
Controllers/login.go

@@ -2,19 +2,18 @@ package Controllers
 
 import (
 	"github.com/gin-gonic/gin"
-	"goLoad1/Config"
-	"net/http"
+	"goLoad1/Services"
 )
 
-type loginInfo struct {
+type LoginInfo struct {
 }
 
-func (con loginInfo) loginController(c *gin.Context) {
-	userID := 1
-	token, err := Config.CreateToken(userID)
-	if err != nil {
-		c.JSON(http.StatusInternalServerError, gin.H{"error": err.Error()})
-		return
-	}
-	c.JSON(http.StatusOK, gin.H{"token": token})
+func (con LoginInfo) LoginController(c *gin.Context) {
+	Services.QueryUser(c)
+	//token, err := Services.GenerateToken("", "")
+	//if err != nil {
+	//	c.JSON(http.StatusInternalServerError, gin.H{"error": err.Error()})
+	//	return
+	//}
+	//c.JSON(http.StatusOK, gin.H{"token": token})
 }

+ 12 - 0
Middlewares/accountCheck.go

@@ -0,0 +1,12 @@
+package Middlewares
+
+import (
+	"github.com/gin-gonic/gin"
+	"goLoad1/Databases"
+	"goLoad1/Models/loginMondel"
+)
+
+func account(c *gin.Context) {
+	var data []loginMondel.Login
+	Mysql.DB.Find(&data)
+}

+ 1 - 1
Models/loginMondel/login.go

@@ -7,5 +7,5 @@ type Login struct {
 }
 
 func (Login) TableName() string {
-	return "login"
+	return "loginInfo"
 }

+ 1 - 1
Router/login.go

@@ -9,6 +9,6 @@ func Login(r *gin.Engine) {
 	user := r.Group("/user")
 	{
 		user.POST("/register", Controllers.RegisterInfo{}.RegisterController)
-		user.POST("/login")
+		user.POST("/login", Controllers.LoginInfo{}.LoginController)
 	}
 }

+ 19 - 7
Services/login.go

@@ -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)
 }
-
-//............................................................

BIN
tmp/runner-build.exe