base_common.go 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. package controllers
  2. import (
  3. "encoding/json"
  4. "eta/eta_mini_crm/models"
  5. "eta/eta_mini_crm/utils"
  6. "fmt"
  7. "net/http"
  8. "net/url"
  9. "github.com/beego/beego/v2/server/web"
  10. )
  11. type BaseCommonController struct {
  12. web.Controller
  13. }
  14. func (c *BaseCommonController) Prepare() {
  15. var requestBody string
  16. method := c.Ctx.Input.Method()
  17. if method == "GET" {
  18. requestBody = c.Ctx.Request.RequestURI
  19. } else {
  20. requestBody, _ = url.QueryUnescape(string(c.Ctx.Input.RequestBody))
  21. }
  22. ip := c.Ctx.Input.IP()
  23. utils.ApiLog.Info("uri:%s, requestBody:%s, ip:%s", c.Ctx.Input.URI(), requestBody, ip)
  24. }
  25. func (c *BaseCommonController) ServeJSON(encoding ...bool) {
  26. var (
  27. hasIndent = false
  28. hasEncoding = false
  29. )
  30. if web.BConfig.RunMode == web.PROD {
  31. hasIndent = false
  32. }
  33. if len(encoding) > 0 && encoding[0] == true {
  34. hasEncoding = true
  35. }
  36. if c.Data["json"] == nil {
  37. utils.ApiLog.Notice("异常提醒:"+utils.RunMode, "接口:"+"URI:"+c.Ctx.Input.URI()+";无返回值")
  38. return
  39. }
  40. baseRes := c.Data["json"].(*models.BaseResponse)
  41. if baseRes != nil && !baseRes.Success {
  42. utils.ApiLog.Notice("异常提醒:"+utils.RunMode, "接口:"+"URI:"+c.Ctx.Input.URI()+";ErrMsg:"+baseRes.ErrMsg+";Msg"+baseRes.Msg)
  43. return
  44. }
  45. c.JSON(c.Data["json"], hasIndent, hasEncoding)
  46. }
  47. func (c *BaseCommonController) JSON(data interface{}, hasIndent bool, coding bool) error {
  48. c.Ctx.Output.Header("Content-Type", "application/json; charset=utf-8")
  49. desEncrypt := utils.DesBase64Encrypt([]byte(utils.DesKey), utils.DesKeySalt)
  50. c.Ctx.Output.Header("Dk", string(desEncrypt)) // des3加解密key
  51. // 设置Cookie为HTTPOnly
  52. c.Ctx.SetCookie("", "", -1, "/", "", false, true, "")
  53. var content []byte
  54. var err error
  55. if hasIndent {
  56. content, err = json.MarshalIndent(data, "", " ")
  57. } else {
  58. content, err = json.Marshal(data)
  59. }
  60. if err != nil {
  61. http.Error(c.Ctx.Output.Context.ResponseWriter, err.Error(), http.StatusInternalServerError)
  62. return err
  63. }
  64. params := c.Ctx.Input.Params()
  65. fmt.Println("params")
  66. fmt.Println(params)
  67. // 如果不是debug分支的话,那么需要加密返回
  68. if utils.RunMode != "debug" {
  69. content = utils.DesBase64Encrypt(content, utils.DesKey)
  70. // get请求时,不加双引号就获取不到数据,不知道什么原因,所以还是在前后加上双引号吧
  71. content = []byte(`"` + string(content) + `"`)
  72. }
  73. if coding {
  74. content = []byte(utils.StringsToJSON(string(content)))
  75. }
  76. return c.Ctx.Output.Body(content)
  77. }