Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

pass request limit through context #22

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 17 additions & 1 deletion context.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@ package httprate

import "context"

var incrementKey = &struct{}{}
type ctxKey int

const (
incrementKey ctxKey = iota
requestLimitKey
)

func WithIncrement(ctx context.Context, value int) context.Context {
return context.WithValue(ctx, incrementKey, value)
Expand All @@ -14,3 +19,14 @@ func getIncrement(ctx context.Context) int {
}
return 1
}

func WithRequestLimit(ctx context.Context, value int) context.Context {
return context.WithValue(ctx, requestLimitKey, value)
}

func getRequestLimit(ctx context.Context) int {
if value, ok := ctx.Value(requestLimitKey).(int); ok {
return value
}
return 0
}
25 changes: 18 additions & 7 deletions limiter.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package httprate

import (
"context"
"fmt"
"math"
"net/http"
Expand Down Expand Up @@ -67,7 +68,7 @@ func (l *rateLimiter) Counter() LimitCounter {
return l.limitCounter
}

func (l *rateLimiter) Status(key string) (bool, float64, error) {
func (l *rateLimiter) Status(ctx context.Context, key string) (bool, float64, error) {
t := time.Now().UTC()
currentWindow := t.Truncate(l.windowLength)
previousWindow := currentWindow.Add(-l.windowLength)
Expand All @@ -80,7 +81,12 @@ func (l *rateLimiter) Status(key string) (bool, float64, error) {
diff := t.Sub(currentWindow)
rate := float64(prevCount)*(float64(l.windowLength)-float64(diff))/float64(l.windowLength) + float64(currCount)

if rate > float64(l.requestLimit) {
limit := l.requestLimit
if val := getRequestLimit(ctx); val > 0 {
limit = val
}

if rate > float64(limit) {
return false, rate, nil
}
return true, rate, nil
Expand All @@ -95,25 +101,30 @@ func (l *rateLimiter) Handler(next http.Handler) http.Handler {
}

currentWindow := time.Now().UTC().Truncate(l.windowLength)
ctx := r.Context()

w.Header().Set("X-RateLimit-Limit", fmt.Sprintf("%d", l.requestLimit))
limit := l.requestLimit
if val := getRequestLimit(ctx); val > 0 {
limit = val
}
w.Header().Set("X-RateLimit-Limit", fmt.Sprintf("%d", limit))
w.Header().Set("X-RateLimit-Remaining", fmt.Sprintf("%d", 0))
w.Header().Set("X-RateLimit-Reset", fmt.Sprintf("%d", currentWindow.Add(l.windowLength).Unix()))

l.mu.Lock()
_, rate, err := l.Status(key)
_, rate, err := l.Status(ctx, key)
if err != nil {
l.mu.Unlock()
http.Error(w, err.Error(), http.StatusPreconditionRequired)
return
}
nrate := int(math.Round(rate))

if l.requestLimit > nrate {
w.Header().Set("X-RateLimit-Remaining", fmt.Sprintf("%d", l.requestLimit-nrate))
if limit > nrate {
w.Header().Set("X-RateLimit-Remaining", fmt.Sprintf("%d", limit-nrate))
}

if nrate >= l.requestLimit {
if nrate >= limit {
l.mu.Unlock()
w.Header().Set("Retry-After", fmt.Sprintf("%d", int(l.windowLength.Seconds()))) // RFC 6585
l.onRequestLimit(w, r)
Expand Down
Loading