123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 |
- package middleware
- import (
- "Medical_OAuth/common"
- "Medical_OAuth/common/global"
- "bufio"
- "bytes"
- "encoding/json"
- "io"
- "io/ioutil"
- "net/http"
- "strings"
- "time"
- "github.com/casbin/casbin/v2/util"
- "github.com/gin-gonic/gin"
- "Medical_OAuth/app/admin/service/dto"
- "gogs.baozhida.cn/zoie/OAuth-core/api"
- "gogs.baozhida.cn/zoie/OAuth-core/pkg/jwtauth/user"
- "gogs.baozhida.cn/zoie/OAuth-core/sdk"
- "gogs.baozhida.cn/zoie/OAuth-core/sdk/config"
- )
- // LoggerToFile 日志记录到文件
- func LoggerToFile() gin.HandlerFunc {
- return func(c *gin.Context) {
- for _, i := range LogExclude {
- if util.KeyMatch2(c.Request.URL.Path, i.Url) && c.Request.Method == i.Method {
- return
- }
- }
- log := api.GetRequestLogger(c)
- // 开始时间
- startTime := time.Now()
- // 处理请求
- var body string
- switch c.Request.Method {
- case http.MethodPost, http.MethodPut, 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)
- case http.MethodGet:
- body = c.Request.URL.RawQuery
- }
- 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 {
- SetDBOperaLog(c, clientIP, statusCode, reqUri, reqMethod, latencyTime, body, result, statusBus)
- }
- }
- }
- // SetDBOperaLog 写入操作日志表 fixme 该方法后续即将弃用
- func SetDBOperaLog(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["operaUrl"] = reqUri
- l["operaIp"] = clientIP
- l["operaName"] = user.GetUserName(c)
- l["requestMethod"] = reqMethod
- l["operaParam"] = body
- l["operaTime"] = time.Now()
- l["jsonResult"] = result
- l["latencyTime"] = latencyTime.String()
- l["statusCode"] = statusCode
- l["userAgent"] = c.Request.UserAgent()
- l["createBy"] = user.GetUserId(c)
- l["updateBy"] = user.GetUserId(c)
- if status == http.StatusOK {
- l["status"] = dto.OperaStatusEnabel
- } else {
- l["status"] = dto.OperaStatusDisable
- }
- 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())
- }
- }
- }
|