1852773e3e
Change-Id: Ied386a2350aa073de46443e5259b56d49ec61dbf
45 lines
1.2 KiB
Go
45 lines
1.2 KiB
Go
// Copyright (C) 2021 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
package contact
|
|
|
|
import (
|
|
"fmt"
|
|
"time"
|
|
|
|
"golang.org/x/time/rate"
|
|
|
|
"storj.io/storj/private/lrucache"
|
|
)
|
|
|
|
// RateLimiter allows to prevent multiple events in fixed period of time.
|
|
type RateLimiter struct {
|
|
limiters *lrucache.ExpiringLRU
|
|
interval time.Duration // interval during which events are not limiting.
|
|
burst int // maximum number of events allowed during duration.
|
|
}
|
|
|
|
// NewRateLimiter is a constructor for RateLimiter.
|
|
func NewRateLimiter(interval time.Duration, burst, numLimits int) *RateLimiter {
|
|
return &RateLimiter{
|
|
limiters: lrucache.New(lrucache.Options{Expiration: -1, Capacity: numLimits}),
|
|
interval: interval,
|
|
burst: burst,
|
|
}
|
|
}
|
|
|
|
// IsAllowed indicates if event is allowed to happen.
|
|
func (rateLimiter *RateLimiter) IsAllowed(key string) bool {
|
|
limiter, err := rateLimiter.limiters.Get(key, func() (interface{}, error) {
|
|
return rate.NewLimiter(
|
|
rate.Limit(time.Second)/rate.Limit(rateLimiter.interval),
|
|
rateLimiter.burst,
|
|
), nil
|
|
})
|
|
if err != nil {
|
|
panic(fmt.Sprintf("unreachable: %+v", err))
|
|
}
|
|
|
|
return limiter.(*rate.Limiter).Allow()
|
|
}
|