- Created `qa-test-output-after-fix.txt` and `qa-test-output.txt` to log results of certificate page authentication tests. - Added `build.sh` for deterministic backend builds in CI, utilizing `go list` for efficiency. - Introduced `codeql_scan.sh` for CodeQL database creation and analysis for Go and JavaScript/TypeScript. - Implemented `dockerfile_check.sh` to validate Dockerfiles for base image and package manager mismatches. - Added `sourcery_precommit_wrapper.sh` to facilitate Sourcery CLI usage in pre-commit hooks.
26 lines
631 B
Go
26 lines
631 B
Go
package middleware
|
|
|
|
import (
|
|
"github.com/Wikid82/charon/backend/internal/util"
|
|
"time"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
// RequestLogger logs basic request information along with the request_id.
|
|
func RequestLogger() gin.HandlerFunc {
|
|
return func(c *gin.Context) {
|
|
start := time.Now()
|
|
c.Next()
|
|
latency := time.Since(start)
|
|
entry := GetRequestLogger(c)
|
|
entry.WithFields(map[string]interface{}{
|
|
"status": c.Writer.Status(),
|
|
"method": c.Request.Method,
|
|
"path": SanitizePath(c.Request.URL.Path),
|
|
"latency": latency.String(),
|
|
"client": util.SanitizeForLog(c.ClientIP()),
|
|
}).Info("handled request")
|
|
}
|
|
}
|