modulepackage
0.2.0
Repository: https://github.com/robotomize/go-ratelimiter.git
Documentation: pkg.go.dev
# README
go-ratelimiter
A super easy rate limiting package for Go. Package provide Store interface, for which you can use your own implementations
Install
go get github.com/robotomize/go-ratelimiter
Usage
Example of using redis datastore
package main
import (
"context"
"fmt"
"log"
"time"
"github.com/robotomize/go-ratelimiter"
)
func main() {
// set a limit of 10 request per 1 seconds per api key
redisStore, err := ratelimiter.DefaultRedisStore(context.Background(), ":6379", 1*time.Second, 10)
if err != nil {
log.Fatal(err)
}
// Retrieve data by the api key in the datastore
limit, remaining, resetTime, ok, err := redisStore.Take(context.Background(), "apikey-1")
if err != nil {
log.Fatal(err)
}
if !ok {
fmt.Println("limit exceeded")
}
// Print the constraints from the datastore
fmt.Printf(
"resource: maximum %d, remaining %d, reset time %s",
limit, remaining, time.Unix(0, int64(resetTime)).UTC().Format(time.RFC1123),
)
}
To limit access at the http level, you can use middleware, which can block the request by providing the http code 429 Too Many Requests
Example of using http middleware with redis datastore
package main
import (
"context"
"errors"
"fmt"
"log"
"net/http"
"os"
"time"
"github.com/robotomize/go-ratelimiter"
)
func main() {
// set a limit of 5 request per 1 seconds per api key
redisStore, err := ratelimiter.DefaultRedisStore(context.Background(), ":6379", 1*time.Second, 5)
if err != nil {
log.Fatal(err)
}
mx := http.NewServeMux()
// Let's create a test handler
healthHandler := http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Content-Type", "application/json")
w.WriteHeader(http.StatusOK)
w.Write([]byte(`{"status": "ok"}`))
})
mx.Handle(
"/health", ratelimiter.LimiterMiddleware(
redisStore, func(r *http.Request) (string, error) {
// Example key func
ctx := r.Context()
// Get key value out of context
ctxValue := ctx.Value("apikey")
if key, ok := ctxValue.(string); ok {
return key, nil
}
return "", errors.New("get api key from ctx")
}, ratelimiter.WithSkipper(func() bool {
// set a skipper, skip ratelimiter if DEBUG == 1
return os.Getenv("DEBUG") == "1"
}, ),
)(healthHandler),
)
// start listener
if err = http.ListenAndServe(":8888", mx); err != nil {
log.Fatal(err)
}
}
TODO
add http middlewareadd redis datastore- improve unit coverage
- improve redis datastore
- add tarantool datastore
- add aerospike datastore
Contributing
License
go-ratelimiter is under the Apache 2.0 license. See the LICENSE file for details.
# Functions
DefaultRedisStore return Store instance of default redis options.
IPKeyFunc rate limit by ip.
LimiterMiddleware returns a handler, which is a rate limiter with data storage in store.
NewMockStore creates a new mock instance.
No description provided by the author
NewRedisStore make redis store.
WithDateFormat set custom date format into HeaderRetryAfter/HeaderRateLimitReset.
WithSkipper set skipper function for skipping.
# Constants
HeaderRateLimitLimit - maximum number of calls.
HeaderRateLimitRemaining - Number of calls before restrictions apply.
HeaderRateLimitReset - Limit reset time.
HeaderRetryAfter is the header used to indicate when a client should retry requests (when the rate limit expires), in UTC time.
# Structs
MockStore is a mock of Store interface.
MockStoreMockRecorder is the mock recorder for MockStore.
Options for middleware.
RedisConfig - struct for configure redis store
For example if you want to set the limit of requests per second to 10 req per sec RedisConfig{ Interval: time.Second * 1, Points: 10} or 20 req per 2 minutes RedisConfig{ Interval: time.Minute * 2, Points: 20}.
# Interfaces
No description provided by the author
go:generate mockgen -source=store.go -destination=mocks.go -package=ratelimiter.