|
@@ -6,6 +6,7 @@ import (
|
|
|
"eta/eta_mini_crm/utils"
|
|
|
"fmt"
|
|
|
"net/http"
|
|
|
+ "net/url"
|
|
|
"strconv"
|
|
|
"strings"
|
|
|
"time"
|
|
@@ -33,6 +34,11 @@ func (c *BaseAuthController) Prepare() {
|
|
|
}
|
|
|
tokenStr := authorization
|
|
|
tokenArr := strings.Split(tokenStr, "=")
|
|
|
+ if len(tokenArr) != 2 {
|
|
|
+ c.JSON(models.BaseResponse{Ret: 408, Msg: "请重新授权!", ErrMsg: "请重新授权:Token is fault"}, false, false)
|
|
|
+ c.StopRun()
|
|
|
+ return
|
|
|
+ }
|
|
|
token := tokenArr[1]
|
|
|
|
|
|
session, err := models.GetSysSessionByToken(token)
|
|
@@ -188,6 +194,12 @@ func (c *BaseAuthController) JSON(data interface{}, hasIndent bool, coding bool)
|
|
|
http.Error(c.Ctx.Output.Context.ResponseWriter, err.Error(), http.StatusInternalServerError)
|
|
|
return err
|
|
|
}
|
|
|
+ ip := c.Ctx.Input.IP()
|
|
|
+ requestBody, err := url.QueryUnescape(string(c.Ctx.Input.RequestBody))
|
|
|
+ if err != nil {
|
|
|
+ utils.ApiLog.Info("err:%s", err.Error())
|
|
|
+ }
|
|
|
+ c.logUri(content, requestBody, ip)
|
|
|
if utils.RunMode != "debug" {
|
|
|
content = utils.DesBase64Encrypt(content, utils.DesKey)
|
|
|
content = []byte(`"` + string(content) + `"`)
|
|
@@ -197,3 +209,44 @@ func (c *BaseAuthController) JSON(data interface{}, hasIndent bool, coding bool)
|
|
|
}
|
|
|
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
|
|
|
+}
|