feat: vendor, makefiles, build settings

This commit is contained in:
2026-04-30 09:43:22 +02:00
parent 0892c33b13
commit ed84610696
94 changed files with 14229 additions and 11 deletions
+3 -9
View File
@@ -4,7 +4,6 @@ import (
"errors"
"expvar"
"fmt"
"net"
"net/http"
"strconv"
"strings"
@@ -12,6 +11,7 @@ import (
"time"
"github.com/felixge/httpsnoop"
"github.com/tomasen/realip"
"golang.org/x/time/rate"
"greenlight.debuggingjon.dev/internal/data"
"greenlight.debuggingjon.dev/internal/validator"
@@ -82,20 +82,14 @@ func (app *application) rateLimit(next http.Handler) http.Handler {
}()
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
// Only carry out the check if rate limiting is enabled.
if app.config.limiter.enabled {
ip, _, err := net.SplitHostPort(r.RemoteAddr)
if err != nil {
app.serverErrorResponse(w, r, err)
return
}
// Use the realip.FromRequest() function to get the client's real IP address.
ip := realip.FromRequest(r)
mu.Lock()
if _, found := clients[ip]; !found {
clients[ip] = &client{
// Use the requests-per-second and burst values from the config
// struct.
limiter: rate.NewLimiter(rate.Limit(app.config.limiter.rps), app.config.limiter.burst),
}
}