base_common.go 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. package controllers
  2. import (
  3. "encoding/json"
  4. "fmt"
  5. "github.com/beego/beego/v2/server/web"
  6. "hongze/hongze_open_api/utils"
  7. "net/url"
  8. )
  9. //不需要授权的基类
  10. type BaseCommon struct {
  11. web.Controller
  12. Response
  13. }
  14. type Response struct {
  15. Code int `json:"code"`
  16. Data interface{} `json:"data"`
  17. Msg string `json:"msg"`
  18. }
  19. const (
  20. SUCCESS = 200 //成功
  21. ERROR = 400 //代表业务处理失败,前端同学需要做额外逻辑处理
  22. SIGN_ERROR = 401 //签名异常
  23. )
  24. //返回数据
  25. func (c BaseCommon) Result() {
  26. var content []byte
  27. var err error
  28. content, err = json.Marshal(c.Response)
  29. ip := c.Ctx.Input.IP()
  30. requestBody, err := url.QueryUnescape(string(c.Ctx.Input.RequestBody))
  31. if err != nil {
  32. fmt.Println("base auth url.QueryUnescape Err:", err.Error())
  33. requestBody = string(c.Ctx.Input.RequestBody)
  34. }
  35. utils.ApiLog.Println("请求地址:", c.Ctx.Input.URI(), "RequestBody:", requestBody, "ResponseBody", string(content), "IP:", ip)
  36. c.Controller.Data["json"] = c.Response
  37. c.Controller.ServeJSON()
  38. c.StopRun()
  39. }
  40. //没有任何信息的返回
  41. func (c BaseCommon) Ok() {
  42. c.Response.Code = SUCCESS
  43. c.Response.Msg = "操作成功"
  44. c.Response.Data = map[string]interface{}{}
  45. c.Result()
  46. }
  47. func (c BaseCommon) OkWithMessage(message string) {
  48. c.Response.Code = SUCCESS
  49. c.Response.Msg = message
  50. c.Response.Data = map[string]interface{}{}
  51. c.Result()
  52. }
  53. func (c BaseCommon) OkWithData(data interface{}) {
  54. c.Response.Code = SUCCESS
  55. c.Response.Msg = "操作成功"
  56. c.Response.Data = data
  57. c.Result()
  58. }
  59. func (c BaseCommon) OkDetailed(data interface{}, message string) {
  60. c.Response.Code = SUCCESS
  61. c.Response.Msg = message
  62. c.Response.Data = data
  63. c.Result()
  64. }
  65. func (c BaseCommon) Fail() {
  66. c.Response.Code = ERROR
  67. c.Response.Msg = "操作失败"
  68. c.Response.Data = map[string]interface{}{}
  69. c.Result()
  70. }
  71. func (c BaseCommon) FailWithMessage(message string) {
  72. c.Response.Code = ERROR
  73. c.Response.Msg = message
  74. c.Response.Data = map[string]interface{}{}
  75. c.Result()
  76. }
  77. func (c BaseCommon) FailWithDetailed(code int, data interface{}, message string) {
  78. c.Response.Code = code
  79. c.Response.Msg = message
  80. c.Response.Data = data
  81. c.Result()
  82. }
  83. // SignError 签名异常
  84. func (c BaseCommon) SignError(message string) {
  85. c.Response.Code = SIGN_ERROR
  86. c.Response.Msg = message
  87. c.Response.Data = map[string]interface{}{}
  88. c.Result()
  89. }