base_auth.go 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. package controllers
  2. import (
  3. "encoding/json"
  4. "eta/eta_hub/models"
  5. "eta/eta_hub/utils"
  6. "fmt"
  7. "github.com/beego/beego/v2/server/web"
  8. "github.com/sirupsen/logrus"
  9. "net/http"
  10. "net/url"
  11. )
  12. type BaseAuthController struct {
  13. web.Controller
  14. }
  15. func (this *BaseAuthController) Prepare() {
  16. fmt.Println("enter prepare")
  17. method := this.Ctx.Input.Method()
  18. uri := this.Ctx.Input.URI()
  19. fmt.Println("Url:", uri)
  20. if method != "HEAD" {
  21. //校验签名
  22. nonce := this.Ctx.Input.Header("nonce")
  23. timestamp := this.Ctx.Input.Header("timestamp")
  24. appid := this.Ctx.Input.Header("appid")
  25. signature := this.Ctx.Input.Header("signature")
  26. if nonce == "" {
  27. errMsg := "随机字符串不能为空"
  28. this.JSON(models.BaseResponse{Ret: 400, Msg: "", ErrMsg: errMsg}, false, false)
  29. this.StopRun()
  30. return
  31. }
  32. if timestamp == "" {
  33. errMsg := "时间戳不能为空"
  34. this.JSON(models.BaseResponse{Ret: 400, Msg: "", ErrMsg: errMsg}, false, false)
  35. this.StopRun()
  36. return
  37. }
  38. if appid != utils.AppId {
  39. errMsg := "商家AppId错误,请核查"
  40. this.JSON(models.BaseResponse{Ret: 400, Msg: "", ErrMsg: errMsg}, false, false)
  41. this.StopRun()
  42. return
  43. }
  44. checkSign := utils.GetSign(nonce, timestamp)
  45. if signature != checkSign {
  46. errMsg := "签名错误"
  47. this.JSON(models.BaseResponse{Ret: 401, Msg: "", ErrMsg: errMsg}, false, false)
  48. this.StopRun()
  49. return
  50. }
  51. if method != "GET" && method != "POST" {
  52. errMsg := "无效的请求方式"
  53. this.JSON(models.BaseResponse{Ret: 501, Msg: "", ErrMsg: errMsg}, false, false)
  54. this.StopRun()
  55. return
  56. }
  57. } else {
  58. this.JSON(models.BaseResponse{Ret: 500, Msg: "系统异常,请联系客服!", ErrMsg: "method:" + method}, false, false)
  59. this.StopRun()
  60. return
  61. }
  62. }
  63. func (c *BaseAuthController) ServeJSON(encoding ...bool) {
  64. //所有请求都做这么个处理吧,目前这边都是做编辑、刷新逻辑处理(新增的话,并没有指标id,不会有影响)
  65. var (
  66. hasIndent = false
  67. hasEncoding = false
  68. )
  69. if web.BConfig.RunMode == web.PROD {
  70. hasIndent = false
  71. }
  72. if len(encoding) > 0 && encoding[0] == true {
  73. hasEncoding = true
  74. }
  75. if c.Data["json"] == nil {
  76. //go utils.SendEmail("异常提醒:", "接口:"+"URI:"+c.Ctx.Input.URI()+";无返回值", utils.EmailSendToUsers)
  77. //body := "接口:" + "URI:" + c.Ctx.Input.URI() + ";无返回值"
  78. //go alarm_msg.SendAlarmMsg(body, 1)
  79. return
  80. }
  81. baseRes := c.Data["json"].(*models.BaseResponse)
  82. if baseRes != nil && baseRes.Ret != 408 {
  83. //body, _ := json.Marshal(baseRes)
  84. //var requestBody string
  85. //method := c.Ctx.Input.Method()
  86. //if method == "GET" {
  87. // requestBody = c.Ctx.Request.RequestURI
  88. //} else {
  89. // requestBody, _ = url.QueryUnescape(string(c.Ctx.Input.RequestBody))
  90. //}
  91. //if baseRes.Ret != 200 && baseRes.IsSendEmail {
  92. // go utils.SendEmail(utils.APP_NAME_CN+"【"+utils.RunMode+"】"+"失败提醒", "URI:"+c.Ctx.Input.URI()+"<br/> "+"Params"+requestBody+" <br/>"+"ErrMsg:"+baseRes.ErrMsg+";<br/>Msg:"+baseRes.Msg+";<br/> Body:"+string(body)+"<br/>", utils.EmailSendToUsers)
  93. //}
  94. // 记录错误日志, 并清掉错误信息避免暴露给外部
  95. if baseRes.ErrMsg != "" {
  96. utils.FileLog.Info(baseRes.ErrMsg)
  97. baseRes.ErrMsg = ""
  98. }
  99. }
  100. c.JSON(c.Data["json"], hasIndent, hasEncoding)
  101. }
  102. func (c *BaseAuthController) JSON(data interface{}, hasIndent bool, coding bool) error {
  103. c.Ctx.Output.Header("Content-Type", "application/json; charset=utf-8")
  104. var content []byte
  105. var err error
  106. if hasIndent {
  107. content, err = json.MarshalIndent(data, "", " ")
  108. } else {
  109. content, err = json.Marshal(data)
  110. }
  111. if err != nil {
  112. http.Error(c.Ctx.Output.Context.ResponseWriter, err.Error(), http.StatusInternalServerError)
  113. return err
  114. }
  115. ip := c.Ctx.Input.IP()
  116. requestBody, err := url.QueryUnescape(string(c.Ctx.Input.RequestBody))
  117. if err != nil {
  118. requestBody = string(c.Ctx.Input.RequestBody)
  119. }
  120. if requestBody == "" {
  121. requestBody = c.Ctx.Input.URI()
  122. }
  123. c.logUri(data, requestBody, ip)
  124. if coding {
  125. content = []byte(utils.StringsToJSON(string(content)))
  126. }
  127. return c.Ctx.Output.Body(content)
  128. }
  129. func (c *BaseAuthController) logUri(data interface{}, requestBody, ip string) {
  130. var reqData interface{}
  131. err := json.Unmarshal([]byte(requestBody), &reqData)
  132. if err != nil {
  133. utils.ApiLog.WithFields(logrus.Fields{
  134. "uri": c.Ctx.Input.URI(),
  135. "requestBody": requestBody,
  136. "responseBody": data,
  137. "ip": ip,
  138. }).Info("请求详情")
  139. } else {
  140. utils.ApiLog.WithFields(logrus.Fields{
  141. "uri": c.Ctx.Input.URI(),
  142. "requestBody": reqData,
  143. "responseBody": data,
  144. "ip": ip,
  145. }).Info("请求详情")
  146. }
  147. return
  148. }