mirror of https://github.com/gofiber/fiber.git
52 lines
1.1 KiB
Go
52 lines
1.1 KiB
Go
package requestid
|
|
|
|
import (
|
|
"github.com/gofiber/fiber/v3"
|
|
)
|
|
|
|
// The contextKey type is unexported to prevent collisions with context keys defined in
|
|
// other packages.
|
|
type contextKey int
|
|
|
|
// The keys for the values in context
|
|
const (
|
|
requestIDKey contextKey = iota
|
|
)
|
|
|
|
// New creates a new middleware handler
|
|
func New(config ...Config) fiber.Handler {
|
|
// Set default config
|
|
cfg := configDefault(config...)
|
|
|
|
// Return new handler
|
|
return func(c fiber.Ctx) error {
|
|
// Don't execute middleware if Next returns true
|
|
if cfg.Next != nil && cfg.Next(c) {
|
|
return c.Next()
|
|
}
|
|
// Get id from request, else we generate one
|
|
rid := c.Get(cfg.Header)
|
|
if rid == "" {
|
|
rid = cfg.Generator()
|
|
}
|
|
|
|
// Set new id to response header
|
|
c.Set(cfg.Header, rid)
|
|
|
|
// Add the request ID to locals
|
|
c.Locals(requestIDKey, rid)
|
|
|
|
// Continue stack
|
|
return c.Next()
|
|
}
|
|
}
|
|
|
|
// FromContext returns the request ID from context.
|
|
// If there is no request ID, an empty string is returned.
|
|
func FromContext(c fiber.Ctx) string {
|
|
if rid, ok := c.Locals(requestIDKey).(string); ok {
|
|
return rid
|
|
}
|
|
return ""
|
|
}
|