123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- package controllers
- import (
- "encoding/json"
- "fmt"
- "github.com/beego/beego/v2/server/web"
- "hongze/hongze_public_api/services/alarm_msg"
- "hongze/hongze_public_api/utils"
- "net/http"
- "net/url"
- )
- type BaseCommonController struct {
- web.Controller
- }
- func (this *BaseCommonController) Prepare() {
- var requestBody string
- method := this.Ctx.Input.Method()
- if method == "GET" {
- requestBody = this.Ctx.Request.RequestURI
- } else {
- requestBody, _ = url.QueryUnescape(string(this.Ctx.Input.RequestBody))
- }
- ip := this.Ctx.Input.IP()
- apiLog.Println("请求地址:", this.Ctx.Input.URI(), "RequestBody:", requestBody, "IP:", ip)
- }
- func (c *BaseCommonController) ServeJSON(encoding ...bool) {
- var (
- hasIndent = false
- hasEncoding = false
- )
- if web.BConfig.RunMode == web.PROD {
- hasIndent = false
- }
- if len(encoding) > 0 && encoding[0] == true {
- hasEncoding = true
- }
- if c.Data["json"] == nil {
- msg := "接口:"+"URI:"+c.Ctx.Input.URI()+";无返回值"
- go alarm_msg.SendAlarmMsg(msg, 3)
- return
- }
- c.JSON(c.Data["json"], hasIndent, hasEncoding)
- }
- func (c *BaseCommonController) JSON(data interface{}, hasIndent bool, coding bool) error {
- c.Ctx.Output.Header("Content-Type", "application/json; charset=utf-8")
- var content []byte
- var err error
- if hasIndent {
- content, err = json.MarshalIndent(data, "", " ")
- } else {
- content, err = json.Marshal(data)
- }
- if err != nil {
- http.Error(c.Ctx.Output.Context.ResponseWriter, err.Error(), http.StatusInternalServerError)
- return err
- }
- ip := c.Ctx.Input.IP()
- params := c.Ctx.Input.Params()
- fmt.Println("params")
- fmt.Println(params)
- requestBody, _ := url.QueryUnescape(string(c.Ctx.Input.RequestBody))
- apiLog.Println("请求地址:", c.Ctx.Input.URI(), "Authorization:", c.Ctx.Input.Header("Authorization"), "RequestBody:", requestBody, "ResponseBody", string(content), "IP:", ip)
- if coding {
- content = []byte(utils.StringsToJSON(string(content)))
- }
- return c.Ctx.Output.Body(content)
- }
|