base_common.go 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. package controllers
  2. import (
  3. "encoding/json"
  4. "net/http"
  5. "net/url"
  6. "strconv"
  7. "github.com/astaxie/beego"
  8. "hongze/hongze_api/models"
  9. "hongze/hongze_api/utils"
  10. )
  11. type BaseCommonController struct {
  12. beego.Controller
  13. User *models.WxUserItem
  14. Token string
  15. }
  16. func (this *BaseCommonController) Prepare() {
  17. var requestBody string
  18. method := this.Ctx.Input.Method()
  19. if method == "GET" {
  20. requestBody = this.Ctx.Request.RequestURI
  21. } else {
  22. requestBody, _ = url.QueryUnescape(string(this.Ctx.Input.RequestBody))
  23. }
  24. ip := this.Ctx.Input.IP()
  25. apiLog.Println("请求地址:", this.Ctx.Input.URI(), "RequestBody:", requestBody, "IP:", ip)
  26. authorization := this.Ctx.Input.Header("Authorization")
  27. if authorization == "" {
  28. cookie := this.Ctx.GetCookie("rddp_access_token")
  29. utils.FileLog.Info("authorization:%s,cookie:%s", authorization, cookie)
  30. authorization = cookie
  31. }
  32. if authorization != "" {
  33. session, err := models.GetSessionByToken(authorization)
  34. if err != nil {
  35. if err.Error() == utils.ErrNoRow() {
  36. this.JSON(models.BaseResponse{Ret: 408, Msg: "信息已变更,请重新登陆!", ErrMsg: "Token 信息已变更:Token: " + authorization}, false, false)
  37. this.StopRun()
  38. return
  39. }
  40. this.JSON(models.BaseResponse{Ret: 408, Msg: "网络异常,请稍后重试!", ErrMsg: "获取用户信息异常,Eerr:" + err.Error()}, false, false)
  41. this.StopRun()
  42. return
  43. }
  44. if session == nil {
  45. this.JSON(models.BaseResponse{Ret: 408, Msg: "网络异常,请稍后重试!", ErrMsg: "sesson is empty "}, false, false)
  46. this.StopRun()
  47. return
  48. }
  49. wxUser, err := models.GetWxUserItemByUserId(session.UserId)
  50. if err != nil {
  51. if err.Error() == utils.ErrNoRow() {
  52. this.JSON(models.BaseResponse{Ret: 408, Msg: "信息已变更,请重新登陆!", ErrMsg: "获取admin 信息失败 " + strconv.Itoa(session.UserId)}, false, false)
  53. this.StopRun()
  54. return
  55. }
  56. this.JSON(models.BaseResponse{Ret: 408, Msg: "网络异常,请稍后重试!", ErrMsg: "获取wx_user信息异常,Eerr:" + err.Error()}, false, false)
  57. this.StopRun()
  58. return
  59. }
  60. if wxUser == nil {
  61. this.JSON(models.BaseResponse{Ret: 408, Msg: "网络异常,请稍后重试!", ErrMsg: "admin is empty "}, false, false)
  62. this.StopRun()
  63. return
  64. }
  65. this.User = wxUser
  66. }
  67. this.Token=authorization
  68. }
  69. func (c *BaseCommonController) ServeJSON(encoding ...bool) {
  70. var (
  71. hasIndent = false
  72. hasEncoding = false
  73. )
  74. if beego.BConfig.RunMode == beego.PROD {
  75. hasIndent = false
  76. }
  77. if len(encoding) > 0 && encoding[0] == true {
  78. hasEncoding = true
  79. }
  80. if c.Data["json"] == nil {
  81. go utils.SendEmail(utils.APPNAME+" "+utils.RunMode+"异常提醒", "接口:"+"URI:"+c.Ctx.Input.URI()+";无返回值", utils.EmailSendToUsers)
  82. return
  83. }
  84. baseRes := c.Data["json"].(*models.BaseResponse)
  85. if baseRes != nil && !baseRes.Success && baseRes.IsSendEmail {
  86. go utils.SendEmail(utils.APPNAME+" "+utils.RunMode+" 失败提醒", "URI:"+c.Ctx.Input.URI()+" ErrMsg:"+baseRes.ErrMsg+";Msg"+baseRes.Msg, utils.EmailSendToUsers)
  87. }
  88. c.JSON(c.Data["json"], hasIndent, hasEncoding)
  89. }
  90. func (c *BaseCommonController) JSON(data interface{}, hasIndent bool, coding bool) error {
  91. c.Ctx.Output.Header("Content-Type", "application/json; charset=utf-8")
  92. var content []byte
  93. var err error
  94. if hasIndent {
  95. content, err = json.MarshalIndent(data, "", " ")
  96. } else {
  97. content, err = json.Marshal(data)
  98. }
  99. if err != nil {
  100. http.Error(c.Ctx.Output.Context.ResponseWriter, err.Error(), http.StatusInternalServerError)
  101. return err
  102. }
  103. ip := c.Ctx.Input.IP()
  104. requestBody, _ := url.QueryUnescape(string(c.Ctx.Input.RequestBody))
  105. apiLog.Println("请求地址:", c.Ctx.Input.URI(), "Authorization:", c.Ctx.Input.Header("Authorization"), "RequestBody:", requestBody, "ResponseBody", string(content), "IP:", ip)
  106. if coding {
  107. content = []byte(utils.StringsToJSON(string(content)))
  108. }
  109. return c.Ctx.Output.Body(content)
  110. }