base_common.go 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  1. package controllers
  2. import (
  3. "encoding/json"
  4. "eta_gn/eta_api/cache"
  5. "eta_gn/eta_api/models"
  6. "eta_gn/eta_api/services/alarm_msg"
  7. "eta_gn/eta_api/utils"
  8. "fmt"
  9. "github.com/beego/beego/v2/server/web"
  10. "net/http"
  11. "net/url"
  12. "strings"
  13. )
  14. type BaseCommonController struct {
  15. web.Controller
  16. Lang string `description:"当前语言类型,中文:zh;英文:en;默认:zh"`
  17. }
  18. func (c *BaseCommonController) Prepare() {
  19. var requestBody string
  20. method := c.Ctx.Input.Method()
  21. if method == "GET" {
  22. requestBody = c.Ctx.Request.RequestURI
  23. } else {
  24. requestBody, _ = url.QueryUnescape(string(c.Ctx.Input.RequestBody))
  25. }
  26. {
  27. lang := c.Ctx.Input.Header("Lang")
  28. if lang == "" {
  29. lang = utils.ZhLangVersion
  30. }
  31. c.Lang = lang
  32. }
  33. ip := c.Ctx.Input.IP()
  34. utils.ApiLog.Info("uri:%s, requestBody:%s, ip:%s", c.Ctx.Input.URI(), requestBody, ip)
  35. }
  36. func (c *BaseCommonController) ServeJSON(encoding ...bool) {
  37. var (
  38. hasIndent = false
  39. hasEncoding = false
  40. )
  41. if web.BConfig.RunMode == web.PROD {
  42. hasIndent = false
  43. }
  44. if len(encoding) > 0 && encoding[0] == true {
  45. hasEncoding = true
  46. }
  47. if c.Data["json"] == nil {
  48. go alarm_msg.SendAlarmMsg("接口:URI:"+c.Ctx.Input.URI()+";无返回值", 3)
  49. return
  50. }
  51. baseRes := c.Data["json"].(*models.BaseResponse)
  52. if baseRes != nil && !baseRes.Success && baseRes.IsSendEmail {
  53. go alarm_msg.SendAlarmMsg("失败提醒:URI:"+c.Ctx.Input.URI()+" ErrMsg:"+baseRes.ErrMsg+";Msg"+baseRes.Msg, 3)
  54. }
  55. {
  56. urlPath := c.Ctx.Request.URL.Path
  57. if _, ok := AdminOperateRecordMap[urlPath]; !ok {
  58. var adminId int
  59. var realName, params, ip, uriStr string
  60. ip = c.Ctx.Input.IP()
  61. uuid := c.Ctx.Input.Header("Uuid")
  62. uri := c.Ctx.Input.URI()
  63. userAgent := c.Ctx.Input.Header("User-Agent")
  64. uriStr, _ = url.PathUnescape(uri)
  65. if uriStr != "" {
  66. uri = uriStr
  67. }
  68. if c.Ctx.Input.Method() == "GET" {
  69. paramsJson, _ := json.Marshal(c.Ctx.Input.Params())
  70. params = string(paramsJson)
  71. } else {
  72. params = string(c.Ctx.Input.RequestBody)
  73. }
  74. header := c.Ctx.Request.Header
  75. headerJson, _ := json.Marshal(header)
  76. headerStr := string(headerJson)
  77. go cache.AdminOperateRecord(adminId, realName, uuid, uri, params, ip, userAgent, headerStr)
  78. }
  79. }
  80. c.JSON(c.Data["json"], hasIndent, hasEncoding)
  81. }
  82. func (c *BaseCommonController) JSON(data interface{}, hasIndent bool, coding bool) error {
  83. c.Ctx.Output.Header("Content-Type", "application/json; charset=utf-8")
  84. desEncrypt := utils.DesBase64Encrypt([]byte(utils.DesKey), utils.DesKeySalt)
  85. c.Ctx.Output.Header("Dk", string(desEncrypt)) // des3加解密key
  86. c.Ctx.SetCookie("", "", -1, "/", "", false, true, "")
  87. var content []byte
  88. var err error
  89. if hasIndent {
  90. content, err = json.MarshalIndent(data, "", " ")
  91. } else {
  92. content, err = json.Marshal(data)
  93. }
  94. if err != nil {
  95. http.Error(c.Ctx.Output.Context.ResponseWriter, err.Error(), http.StatusInternalServerError)
  96. return err
  97. }
  98. ip := c.Ctx.Input.IP()
  99. params := c.Ctx.Input.Params()
  100. fmt.Println("params")
  101. fmt.Println(params)
  102. requestBody, _ := url.QueryUnescape(string(c.Ctx.Input.RequestBody))
  103. c.logUri(content, requestBody, ip)
  104. if utils.RunMode != "debug" {
  105. content = utils.DesBase64Encrypt(content, utils.DesKey)
  106. content = []byte(`"` + string(content) + `"`)
  107. }
  108. if coding {
  109. content = []byte(utils.StringsToJSON(string(content)))
  110. }
  111. return c.Ctx.Output.Body(content)
  112. }
  113. func (c *BaseCommonController) logUri(respContent []byte, requestBody, ip string) {
  114. authorization := ""
  115. method := c.Ctx.Input.Method()
  116. uri := c.Ctx.Input.URI()
  117. if method != "HEAD" {
  118. if method == "POST" || method == "GET" {
  119. authorization = c.Ctx.Input.Header("authorization")
  120. if authorization == "" {
  121. authorization = c.Ctx.Input.Header("Authorization")
  122. }
  123. if authorization == "" {
  124. newAuthorization := c.GetString("authorization")
  125. if newAuthorization != `` {
  126. authorization = "authorization=" + newAuthorization
  127. } else {
  128. newAuthorization = c.GetString("Authorization")
  129. authorization = "authorization=" + newAuthorization
  130. }
  131. } else {
  132. if strings.Contains(authorization, ";") {
  133. authorization = strings.Replace(authorization, ";", "$", 1)
  134. }
  135. }
  136. if authorization == "" {
  137. strArr := strings.Split(uri, "?")
  138. for k, v := range strArr {
  139. fmt.Println(k, v)
  140. }
  141. if len(strArr) > 1 {
  142. authorization = strArr[1]
  143. authorization = strings.Replace(authorization, "Authorization", "authorization", -1)
  144. fmt.Println(authorization)
  145. }
  146. }
  147. }
  148. }
  149. utils.ApiLog.Info("uri:%s, authorization:%s, requestBody:%s, responseBody:%s, ip:%s", c.Ctx.Input.URI(), authorization, requestBody, respContent, ip)
  150. return
  151. }