|
@@ -4,7 +4,10 @@ import (
|
|
"encoding/json"
|
|
"encoding/json"
|
|
"eta/eta_mini_api/models"
|
|
"eta/eta_mini_api/models"
|
|
"eta/eta_mini_api/utils"
|
|
"eta/eta_mini_api/utils"
|
|
|
|
+ "fmt"
|
|
"net/http"
|
|
"net/http"
|
|
|
|
+ "net/url"
|
|
|
|
+ "strings"
|
|
"time"
|
|
"time"
|
|
|
|
|
|
"github.com/beego/beego/v2/server/web"
|
|
"github.com/beego/beego/v2/server/web"
|
|
@@ -123,6 +126,9 @@ func (c *BaseAuthController) JSON(data interface{}, hasIndent bool, coding bool)
|
|
http.Error(c.Ctx.Output.Context.ResponseWriter, err.Error(), http.StatusInternalServerError)
|
|
http.Error(c.Ctx.Output.Context.ResponseWriter, err.Error(), http.StatusInternalServerError)
|
|
return err
|
|
return err
|
|
}
|
|
}
|
|
|
|
+ ip := c.Ctx.Input.IP()
|
|
|
|
+ requestBody, err := url.QueryUnescape(string(c.Ctx.Input.RequestBody))
|
|
|
|
+ c.logUri(content, requestBody, ip)
|
|
if utils.RunMode != "debug" {
|
|
if utils.RunMode != "debug" {
|
|
content = utils.DesBase64Encrypt(content, utils.DesKey)
|
|
content = utils.DesBase64Encrypt(content, utils.DesKey)
|
|
content = []byte(`"` + string(content) + `"`)
|
|
content = []byte(`"` + string(content) + `"`)
|
|
@@ -132,3 +138,44 @@ func (c *BaseAuthController) JSON(data interface{}, hasIndent bool, coding bool)
|
|
}
|
|
}
|
|
return c.Ctx.Output.Body(content)
|
|
return c.Ctx.Output.Body(content)
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+func (c *BaseAuthController) logUri(respContent []byte, requestBody, ip string) {
|
|
|
|
+ authorization := ""
|
|
|
|
+ method := c.Ctx.Input.Method()
|
|
|
|
+ uri := c.Ctx.Input.URI()
|
|
|
|
+ if method != "HEAD" {
|
|
|
|
+ if method == "POST" || method == "GET" {
|
|
|
|
+ authorization = c.Ctx.Input.Header("authorization")
|
|
|
|
+ if authorization == "" {
|
|
|
|
+ authorization = c.Ctx.Input.Header("Authorization")
|
|
|
|
+ }
|
|
|
|
+ if authorization == "" {
|
|
|
|
+ newAuthorization := c.GetString("authorization")
|
|
|
|
+ if newAuthorization != `` {
|
|
|
|
+ authorization = "authorization=" + newAuthorization
|
|
|
|
+ } else {
|
|
|
|
+ newAuthorization = c.GetString("Authorization")
|
|
|
|
+ authorization = "authorization=" + newAuthorization
|
|
|
|
+ }
|
|
|
|
+ } else {
|
|
|
|
+ if strings.Contains(authorization, ";") {
|
|
|
|
+ authorization = strings.Replace(authorization, ";", "$", 1)
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ if authorization == "" {
|
|
|
|
+ strArr := strings.Split(uri, "?")
|
|
|
|
+ for k, v := range strArr {
|
|
|
|
+ fmt.Println(k, v)
|
|
|
|
+ }
|
|
|
|
+ if len(strArr) > 1 {
|
|
|
|
+ authorization = strArr[1]
|
|
|
|
+ authorization = strings.Replace(authorization, "Authorization", "authorization", -1)
|
|
|
|
+ fmt.Println(authorization)
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ utils.ApiLog.Info("uri:%s, authorization:%s, requestBody:%s, responseBody:%s, ip:%s", c.Ctx.Input.URI(), authorization, requestBody, respContent, ip)
|
|
|
|
+ return
|
|
|
|
+}
|