base_common.go 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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.Info("异常提醒:"+utils.RunMode, "接口:"+"URI:"+c.Ctx.Input.URI()+";ErrMsg:"+baseRes.ErrMsg+";Msg"+baseRes.Msg)
  43. }
  44. c.JSON(c.Data["json"], hasIndent, hasEncoding)
  45. }
  46. func (c *BaseCommonController) JSON(data interface{}, hasIndent bool, coding bool) error {
  47. c.Ctx.Output.Header("Content-Type", "application/json; charset=utf-8")
  48. desEncrypt := utils.DesBase64Encrypt([]byte(utils.DesKey), utils.DesKeySalt)
  49. c.Ctx.Output.Header("Dk", string(desEncrypt)) // des3加解密key
  50. // 设置Cookie为HTTPOnly
  51. c.Ctx.SetCookie("", "", -1, "/", "", false, true, "")
  52. var content []byte
  53. var err error
  54. if hasIndent {
  55. content, err = json.MarshalIndent(data, "", " ")
  56. } else {
  57. content, err = json.Marshal(data)
  58. }
  59. if err != nil {
  60. http.Error(c.Ctx.Output.Context.ResponseWriter, err.Error(), http.StatusInternalServerError)
  61. return err
  62. }
  63. params := c.Ctx.Input.Params()
  64. fmt.Println("params")
  65. fmt.Println(params)
  66. // 如果不是debug分支的话,那么需要加密返回
  67. if utils.RunMode != "debug" {
  68. content = utils.DesBase64Encrypt(content, utils.DesKey)
  69. // get请求时,不加双引号就获取不到数据,不知道什么原因,所以还是在前后加上双引号吧
  70. content = []byte(`"` + string(content) + `"`)
  71. }
  72. if coding {
  73. content = []byte(utils.StringsToJSON(string(content)))
  74. }
  75. return c.Ctx.Output.Body(content)
  76. }