login.go 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. package Services
  2. import (
  3. "fmt"
  4. "github.com/gin-gonic/gin"
  5. "github.com/golang-jwt/jwt/v5"
  6. Mysql "goLoad1/Databases"
  7. "goLoad1/Models/loginMondel"
  8. "net/http"
  9. "time"
  10. )
  11. func LoginCheck(name string, password string, c *gin.Context) map[string]bool {
  12. status := map[string]bool{
  13. "nameStatus": true,
  14. "passwordStatus": true,
  15. }
  16. if len(name) == 0 {
  17. c.JSON(http.StatusUnprocessableEntity, gin.H{
  18. "code": 422,
  19. "message": "用户名不能为空",
  20. })
  21. status["nameStatus"] = false
  22. }
  23. if len(password) == 0 {
  24. c.JSON(http.StatusUnprocessableEntity, gin.H{
  25. "code": 422,
  26. "message": "密码不能为空",
  27. })
  28. status["passwordStatus"] = false
  29. }
  30. return status
  31. }
  32. func QueryUser(c *gin.Context) {
  33. var data []loginMondel.Login
  34. Mysql.DB.Find(&data)
  35. c.JSON(http.StatusOK, data)
  36. for _, val := range data {
  37. fmt.Print(val)
  38. }
  39. }
  40. // MyCustomClaims ...................................................
  41. // MyCustomClaims 1.自定义声明类型
  42. type MyCustomClaims struct {
  43. UserName string `json:"username"`
  44. Password string `json:"password"`
  45. exp string
  46. jwt.RegisteredClaims
  47. }
  48. var (
  49. // SecretKey 假设这是你的签名密钥
  50. SecretKey = []byte("your-secret-key")
  51. )
  52. // GenerateToken 创建Token
  53. func GenerateToken(name string, password string) (string, error) {
  54. token := jwt.New(jwt.SigningMethodHS256)
  55. claims := token.Claims.(jwt.MapClaims)
  56. claims["UserName"] = name
  57. claims["Password"] = password
  58. claims["exp"] = time.Now().Add(time.Hour * 1).Unix() // Token有效期1小时
  59. return token.SignedString(SecretKey)
  60. }