checkAuth.go 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. package middleware
  2. import (
  3. "fmt"
  4. "github.com/gin-gonic/gin"
  5. "iot_manager_service/app/file/dao"
  6. "iot_manager_service/util/cache"
  7. "iot_manager_service/util/common"
  8. "iot_manager_service/util/token"
  9. "net/http"
  10. "strings"
  11. )
  12. // 校验用户对文件的权限
  13. func CheckAuth() gin.HandlerFunc {
  14. return func(c *gin.Context) {
  15. header := c.GetHeader("Authorization")
  16. claims, _ := token.JwtClaims.ParseJwtToken(header)
  17. user, _ := cache.GetNowUser(claims.ID)
  18. fileid := c.Query("fileid")
  19. filedao := &dao.File{}
  20. file, err := filedao.GetFile(fileid)
  21. if err != nil {
  22. c.JSON(http.StatusOK, err)
  23. c.Abort()
  24. return
  25. }
  26. userAuth := user.User.AuthId
  27. fileAuth := file.AuthId
  28. var permissionMap = map[string]struct {
  29. index int
  30. message string
  31. }{
  32. "/viewfile": {0, "查看"},
  33. "/downloadfile": {1, "下载"},
  34. "/forwardingfile": {2, "转发"},
  35. }
  36. for url, obj := range permissionMap {
  37. if strings.Contains(c.Request.RequestURI, url) {
  38. if fileAuth[obj.index] != '1' {
  39. c.JSON(http.StatusForbidden, common.StatusForbidden(fmt.Sprintf("抱歉,该文件不支持【%s】操作,请联系管理员。", obj.message), nil))
  40. c.Abort()
  41. return
  42. }
  43. if userAuth[obj.index] != fileAuth[obj.index] || userAuth[obj.index] != '1' {
  44. c.JSON(http.StatusForbidden, common.StatusForbidden(fmt.Sprintf("抱歉,您没有【%s】该文件权限,请联系管理员。", obj.message), nil))
  45. c.Abort()
  46. return
  47. }
  48. }
  49. }
  50. c.Next()
  51. }
  52. }