login.go 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. package Services
  2. import (
  3. "github.com/gin-gonic/gin"
  4. "github.com/golang-jwt/jwt/v5"
  5. "net/http"
  6. "time"
  7. )
  8. func LoginCheck(name string, password string, c *gin.Context) map[string]bool {
  9. status := map[string]bool{
  10. "nameStatus": true,
  11. "passwordStatus": true,
  12. }
  13. if len(name) == 0 {
  14. c.JSON(http.StatusUnprocessableEntity, gin.H{
  15. "code": 422,
  16. "message": "用户名不能为空",
  17. })
  18. status["nameStatus"] = false
  19. }
  20. if len(password) == 0 {
  21. c.JSON(http.StatusUnprocessableEntity, gin.H{
  22. "code": 422,
  23. "message": "密码不能为空",
  24. })
  25. status["passwordStatus"] = false
  26. }
  27. return status
  28. }
  29. // ...................................................
  30. // MyCustomClaims 1.自定义声明类型
  31. type MyCustomClaims struct {
  32. Username string `json:"username"`
  33. jwt.RegisteredClaims
  34. }
  35. var (
  36. // SecretKey 假设这是你的签名密钥
  37. SecretKey = []byte("your-secret-key")
  38. )
  39. // CreateToken 创建Token
  40. func CreateToken(userID int) (string, error) {
  41. token := jwt.New(jwt.SigningMethodHS256)
  42. claims := token.Claims.(jwt.MapClaims)
  43. claims["user_id"] = userID
  44. claims["exp"] = time.Now().Add(time.Hour * 1).Unix() // Token有效期1小时
  45. return token.SignedString(SecretKey)
  46. }
  47. //............................................................