checkAuth.go 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. package middleware
  2. import (
  3. "fmt"
  4. "github.com/gin-gonic/gin"
  5. "iot_manager_service/app/file/dao"
  6. dao2 "iot_manager_service/app/user/dao"
  7. "iot_manager_service/util/common"
  8. "iot_manager_service/util/token"
  9. "net/http"
  10. "strconv"
  11. "strings"
  12. "time"
  13. )
  14. // 校验用户对文件的权限
  15. func CheckAuth() gin.HandlerFunc {
  16. return func(c *gin.Context) {
  17. header := c.GetHeader("Authorization")
  18. claims, _ := token.JwtClaims.ParseJwtToken(header)
  19. userdao := dao2.SysUser{}
  20. id, _ := strconv.Atoi(claims.ID)
  21. nowSysUser, err2 := userdao.GetNowSysUser(id)
  22. if err2 != nil {
  23. panic(err2)
  24. }
  25. fileid := c.Query("fileId")
  26. filedao := &dao.File{}
  27. fileInfo, err := filedao.GetFileInfo(fileid, claims.ID)
  28. if err != nil {
  29. c.JSON(http.StatusOK, err)
  30. c.Abort()
  31. return
  32. }
  33. // 将时间字符串解析为时间对象
  34. targetTime, _ := time.Parse("2006-01-02 15:04:05 -0700 MST", fileInfo.EffectiveDate.String())
  35. now := time.Now()
  36. // 比较两个时间
  37. if !now.Before(targetTime) {
  38. c.JSON(http.StatusForbidden, common.StatusForbidden("访问时间已过,无权访问", nil))
  39. c.Abort()
  40. return
  41. }
  42. userAuth := nowSysUser.AuthId
  43. fileAuth := fileInfo.AuthId
  44. var permissionMap = map[string]struct {
  45. index string
  46. message string
  47. }{
  48. "/viewFile": {"1", "查看"},
  49. "/downloadFile": {"2", "下载"},
  50. "/forwardingFile": {"3", "转发"},
  51. }
  52. for url, obj := range permissionMap {
  53. if strings.Contains(c.Request.RequestURI, url) {
  54. if !strings.Contains(fileAuth, obj.index) {
  55. c.JSON(http.StatusForbidden, common.StatusForbidden(fmt.Sprintf("抱歉,该文件不支持【%s】操作,请联系管理员。", obj.message), nil))
  56. c.Abort()
  57. return
  58. }
  59. if !strings.Contains(userAuth, obj.index) {
  60. c.JSON(http.StatusForbidden, common.StatusForbidden(fmt.Sprintf("抱歉,您没有对文件的【%s】权限,请联系管理员。", obj.message), nil))
  61. c.Abort()
  62. return
  63. }
  64. }
  65. }
  66. c.Next()
  67. }
  68. }