35 Star 389 Fork 70

GVPrancher / rancher

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
filter.go 2.15 KB
一键复制 编辑 原始数据 按行查看 历史
package audit
import (
"bufio"
"bytes"
"context"
"fmt"
"net"
"net/http"
"reflect"
"github.com/rancher/rancher/pkg/auth/util"
"github.com/sirupsen/logrus"
)
func NewAuditLogFilter(ctx context.Context, auditWriter *LogWriter, next http.Handler) http.Handler {
return &auditHandler{
next: next,
auditWriter: auditWriter,
}
}
type auditHandler struct {
next http.Handler
auditWriter *LogWriter
}
func (h auditHandler) ServeHTTP(rw http.ResponseWriter, req *http.Request) {
if h.auditWriter == nil {
h.next.ServeHTTP(rw, req)
return
}
user := GetUserInfo(req)
context := context.WithValue(req.Context(), userKey, user)
req = req.WithContext(context)
auditLog, err := new(h.auditWriter, req)
if err != nil {
util.ReturnHTTPError(rw, req, 500, err.Error())
return
}
wr := &wrapWriter{ResponseWriter: rw, auditWriter: h.auditWriter, statusCode: http.StatusOK}
h.next.ServeHTTP(wr, req)
auditLog.write(user, req.Header, wr.Header(), wr.statusCode, wr.buf.Bytes())
}
type wrapWriter struct {
http.ResponseWriter
auditWriter *LogWriter
statusCode int
buf bytes.Buffer
}
func (aw *wrapWriter) WriteHeader(statusCode int) {
aw.ResponseWriter.WriteHeader(statusCode)
aw.statusCode = statusCode
}
func (aw *wrapWriter) Write(body []byte) (int, error) {
aw.buf.Write(body)
return aw.ResponseWriter.Write(body)
}
func (aw *wrapWriter) Hijack() (net.Conn, *bufio.ReadWriter, error) {
if hijacker, ok := aw.ResponseWriter.(http.Hijacker); ok {
return hijacker.Hijack()
}
return nil, nil, fmt.Errorf("Upstream ResponseWriter of type %v does not implement http.Hijacker", reflect.TypeOf(aw.ResponseWriter))
}
func (aw *wrapWriter) CloseNotify() <-chan bool {
if cn, ok := aw.ResponseWriter.(http.CloseNotifier); ok {
return cn.CloseNotify()
}
logrus.Errorf("Upstream ResponseWriter of type %v does not implement http.CloseNotifier", reflect.TypeOf(aw.ResponseWriter))
return make(<-chan bool)
}
func (aw *wrapWriter) Flush() {
if f, ok := aw.ResponseWriter.(http.Flusher); ok {
f.Flush()
return
}
logrus.Errorf("Upstream ResponseWriter of type %v does not implement http.Flusher", reflect.TypeOf(aw.ResponseWriter))
}
Go
1
https://gitee.com/rancher/rancher.git
git@gitee.com:rancher/rancher.git
rancher
rancher
rancher
v2.2.13

搜索帮助