sso.go 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. package middleware
  2. import (
  3. "kpt-pasture/config"
  4. "strconv"
  5. commonPb "gitee.com/xuyiping_admin/go_proto/proto/go/backend/common"
  6. "gitee.com/xuyiping_admin/pkg/apierr"
  7. "gitee.com/xuyiping_admin/pkg/jwt"
  8. "net/http"
  9. "strings"
  10. "github.com/gin-gonic/gin"
  11. )
  12. const (
  13. Authorization = "Authorization"
  14. ToKenPrefix = "Bearer "
  15. UserName = "userName"
  16. PastureId = "PastureId"
  17. XRequestId = "X-Request-Id"
  18. )
  19. func GetToken(c *gin.Context) string {
  20. value := c.Request.Header.Get(Authorization)
  21. if value != "" && strings.HasPrefix(value, ToKenPrefix) {
  22. return strings.TrimPrefix(value, ToKenPrefix)
  23. }
  24. return ""
  25. }
  26. func GetXRequestId(c *gin.Context) string {
  27. item := c.Request.Header.Get(XRequestId)
  28. return item
  29. }
  30. func GetPastureId(c *gin.Context) (int64, error) {
  31. item := c.Request.Header.Get(PastureId)
  32. return strconv.ParseInt(item, 10, 64)
  33. }
  34. func unauthorized(c *gin.Context) {
  35. c.AbortWithStatusJSON(http.StatusUnauthorized, apierr.WithContext(c, commonPb.Error_UNAUTHORIZED))
  36. }
  37. func authorization(c *gin.Context) string {
  38. if v := c.GetHeader("Authorization"); v != "" {
  39. return v
  40. }
  41. if v := c.GetHeader("authorization"); v != "" {
  42. return v
  43. }
  44. return ""
  45. }
  46. // RequireAdmin ...
  47. func RequireAdmin() gin.HandlerFunc {
  48. return func(c *gin.Context) {
  49. token := GetToken(c)
  50. if token == "" {
  51. unauthorized(c)
  52. return
  53. }
  54. tokenVerifier := jwt.JWTTokenVerifier{PublicKey: config.Options().JwtTokenKeyConfig.PublicKey}
  55. userName, err := tokenVerifier.ParseToken(token)
  56. if err != nil {
  57. unauthorized(c)
  58. return
  59. }
  60. /*pastureId, err := GetPastureId(c)
  61. if err != nil {
  62. unauthorized(c)
  63. return
  64. }*/
  65. c.Set(UserName, userName)
  66. //c.Set(PastureId, pastureId)
  67. c.Set(XRequestId, GetXRequestId(c))
  68. c.Next()
  69. }
  70. }