mirror of
https://github.com/Luzifer/mondash.git
synced 2024-11-13 01:42:41 +00:00
Knut Ahlers
f3c31476b4
* Update dependencies * Improve code quality * Apply linter advices * Add gzip compression to all requests * Rework frontend * Apply bootswatch theme * Hide historic details when not requested * Remove debugging header * Apply auto-migration of meta fields * Fix broken "last update" time * Pre-sort metrics for frontend / API * Add tooltip with absolute time * Some design fixes * Add tooltip with absolute date to last ok * Implement filters * Apply eslint --fix * Remove unused var * Remove remains of old template engine * Update baked in assets * Update Dockerfile for new version Signed-off-by: Knut Ahlers <knut@ahlers.me>
57 lines
1.1 KiB
Go
57 lines
1.1 KiB
Go
package http
|
|
|
|
import (
|
|
"log"
|
|
"net/http"
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/Luzifer/go_helpers/accessLogger"
|
|
)
|
|
|
|
type HTTPLogHandler struct {
|
|
Handler http.Handler
|
|
TrustedIPHeaders []string
|
|
}
|
|
|
|
func NewHTTPLogHandler(h http.Handler) http.Handler {
|
|
return HTTPLogHandler{
|
|
Handler: h,
|
|
TrustedIPHeaders: []string{"X-Forwarded-For", "RemoteAddr", "X-Real-IP"},
|
|
}
|
|
}
|
|
|
|
func (l HTTPLogHandler) ServeHTTP(res http.ResponseWriter, r *http.Request) {
|
|
start := time.Now()
|
|
ares := accessLogger.New(res)
|
|
|
|
l.Handler.ServeHTTP(ares, r)
|
|
|
|
path := r.URL.Path
|
|
if q := r.URL.Query().Encode(); len(q) > 0 {
|
|
path = path + "?" + q
|
|
}
|
|
|
|
log.Printf("%s - \"%s %s\" %d %d \"%s\" \"%s\" %s",
|
|
l.findIP(r),
|
|
r.Method,
|
|
path,
|
|
ares.StatusCode,
|
|
ares.Size,
|
|
r.Header.Get("Referer"),
|
|
r.Header.Get("User-Agent"),
|
|
time.Since(start),
|
|
)
|
|
}
|
|
|
|
func (l HTTPLogHandler) findIP(r *http.Request) string {
|
|
remoteAddr := strings.SplitN(r.RemoteAddr, ":", 2)[0]
|
|
|
|
for _, hdr := range l.TrustedIPHeaders {
|
|
if value := r.Header.Get(hdr); value != "" {
|
|
return strings.SplitN(value, ",", 2)[0]
|
|
}
|
|
}
|
|
|
|
return remoteAddr
|
|
}
|