checkAuth.go 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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. userAuth := nowSysUser.AuthId
  26. var permissionMap = map[string]struct {
  27. index string
  28. message string
  29. }{
  30. "/viewFile": {"1", "查看"},
  31. "/downloadFile": {"2", "下载"},
  32. "/forwardingFile": {"3", "转发"},
  33. }
  34. for url, obj := range permissionMap {
  35. if strings.Contains(c.Request.RequestURI, url) {
  36. fileid := c.Query("fileId")
  37. filedao := &dao.File{}
  38. fileInfo, err := filedao.GetFileInfo(fileid, claims.ID)
  39. if err != nil {
  40. c.JSON(http.StatusOK, err)
  41. c.Abort()
  42. return
  43. }
  44. fileAuth := fileInfo.AuthId
  45. // 将时间字符串解析为时间对象
  46. targetTime, _ := time.Parse("2006-01-02 15:04:05 -0700 MST", fileInfo.EffectiveDate.String())
  47. now := time.Now()
  48. // 比较两个时间
  49. if !now.Before(targetTime) {
  50. c.JSON(http.StatusForbidden, common.StatusForbidden("访问时间已过,无权访问", nil))
  51. c.Abort()
  52. return
  53. }
  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. if strings.Contains(c.Request.RequestURI, "/upload") && !strings.Contains(userAuth, "4") {
  67. c.JSON(http.StatusForbidden, common.StatusForbidden("您没有上传权限,请联系管理员。", nil))
  68. c.Abort()
  69. return
  70. }
  71. c.Next()
  72. }
  73. }