123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136 |
- package middleware
- import (
- "bufio"
- "bytes"
- "encoding/json"
- "fmt"
- "io"
- "io/ioutil"
- "net/http"
- "strings"
- "time"
- "git.cestong.com.cn/cecf/config-center-server/common"
- gaConfig "git.cestong.com.cn/cecf/config-center-server/config"
- "github.com/gin-gonic/gin"
- "github.com/go-admin-team/go-admin-core/sdk"
- "github.com/go-admin-team/go-admin-core/sdk/api"
- "github.com/go-admin-team/go-admin-core/sdk/config"
- "github.com/go-admin-team/go-admin-core/sdk/pkg"
- "github.com/go-admin-team/go-admin-core/sdk/pkg/jwtauth/user"
- "git.cestong.com.cn/cecf/config-center-server/common/global"
- )
- // LoggerToFile 日志记录到文件
- func LoggerToFile() gin.HandlerFunc {
- return func(c *gin.Context) {
- log := api.GetRequestLogger(c)
- // 开始时间
- startTime := time.Now()
- // 处理请求
- var body string
- switch c.Request.Method {
- case http.MethodPost, http.MethodPut, http.MethodGet, http.MethodDelete:
- bf := bytes.NewBuffer(nil)
- wt := bufio.NewWriter(bf)
- _, err := io.Copy(wt, c.Request.Body)
- if err != nil {
- log.Warnf("copy body error, %s", err.Error())
- err = nil
- }
- rb, _ := ioutil.ReadAll(bf)
- c.Request.Body = ioutil.NopCloser(bytes.NewBuffer(rb))
- body = string(rb)
- }
- c.Next()
- url := c.Request.RequestURI
- if strings.Index(url, "logout") > -1 ||
- strings.Index(url, "login") > -1 {
- return
- }
- // 结束时间
- endTime := time.Now()
- if c.Request.Method == http.MethodOptions {
- return
- }
- rt, bl := c.Get("result")
- var result = ""
- if bl {
- rb, err := json.Marshal(rt)
- if err != nil {
- log.Warnf("json Marshal result error, %s", err.Error())
- } else {
- result = string(rb)
- }
- }
- st, bl := c.Get("status")
- var statusBus = 0
- if bl {
- statusBus = st.(int)
- }
- // 请求方式
- reqMethod := c.Request.Method
- // 请求路由
- reqUri := c.Request.RequestURI
- // 状态码
- statusCode := c.Writer.Status()
- // 请求IP
- clientIP := common.GetClientIP(c)
- // 执行时间
- latencyTime := endTime.Sub(startTime)
- // 日志格式
- logData := map[string]interface{}{
- "statusCode": statusCode,
- "latencyTime": latencyTime,
- "clientIP": clientIP,
- "method": reqMethod,
- "uri": reqUri,
- }
- log.WithFields(logData).Info()
- if c.Request.Method != "OPTIONS" && config.LoggerConfig.EnabledDB && statusCode != 404 {
- SetDBOperLog(c, clientIP, statusCode, reqUri, reqMethod, latencyTime, body, result, statusBus)
- }
- }
- }
- // SetDBOperLog 写入操作日志表 fixme 该方法后续即将弃用
- func SetDBOperLog(c *gin.Context, clientIP string, statusCode int, reqUri string, reqMethod string, latencyTime time.Duration, body string, result string, status int) {
- log := api.GetRequestLogger(c)
- l := make(map[string]interface{})
- l["_fullPath"] = c.FullPath()
- l["operUrl"] = reqUri
- l["operIp"] = clientIP
- fmt.Println("gaConfig.ExtConfig.AMap.Key", gaConfig.ExtConfig.AMap.Key)
- l["operLocation"] = pkg.GetLocation(clientIP, gaConfig.ExtConfig.AMap.Key)
- l["operName"] = user.GetUserName(c)
- l["requestMethod"] = c.Request.Method
- l["operParam"] = body
- l["operTime"] = time.Now()
- l["jsonResult"] = result
- l["latencyTime"] = latencyTime.String()
- l["statusCode"] = statusCode
- if status == http.StatusOK {
- l["status"] = "2"
- } else {
- l["status"] = "1"
- }
- q := sdk.Runtime.GetMemoryQueue(c.Request.Host)
- message, err := sdk.Runtime.GetStreamMessage("", global.OperateLog, l)
- if err != nil {
- log.Errorf("GetStreamMessage error, %s", err.Error())
- //日志报错错误,不中断请求
- } else {
- err = q.Append(message)
- if err != nil {
- log.Errorf("Append message error, %s", err.Error())
- }
- }
- }
|