diff options
author | Alexander <a.kiryukhin@vk.team> | 2024-06-11 14:12:30 +0300 |
---|---|---|
committer | Alexander <a.kiryukhin@vk.team> | 2024-06-11 14:12:30 +0300 |
commit | 88a6b1cb628e4e334068e861ac5fb56274d88845 (patch) | |
tree | 312f2a3a7182b6e2fc45e87ec71ddde9861c77f8 /middleware/request_id.go |
Diffstat (limited to 'middleware/request_id.go')
-rw-r--r-- | middleware/request_id.go | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/middleware/request_id.go b/middleware/request_id.go new file mode 100644 index 0000000..0e9a521 --- /dev/null +++ b/middleware/request_id.go @@ -0,0 +1,40 @@ +package middleware + +import ( + "context" + "net/http" + + "go.neonxp.ru/objectid" +) + +type ctxKeyRequestID int + +const ( + RequestIDKey ctxKeyRequestID = 0 + RequestIDHeader string = "X-Request-ID" +) + +func RequestID(next http.Handler) http.Handler { + objectid.Seed() + return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { + requestID := r.Header.Get(RequestIDHeader) + if requestID == "" { + requestID = objectid.New().String() + } + + next.ServeHTTP(w, r.WithContext(context.WithValue(r.Context(), RequestIDKey, requestID))) + }) +} + +func GetRequestID(r *http.Request) string { + rid := r.Context().Value(RequestIDKey) + if rid == nil { + return "" + } + srid, ok := rid.(string) + if !ok { + return "" + } + + return srid +} |