2020-01-08 07:10:37 +00:00
|
|
|
package rate
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"net/http"
|
|
|
|
"strconv"
|
|
|
|
"strings"
|
|
|
|
"sync"
|
|
|
|
"sync/atomic"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/pkg/errors"
|
2020-07-29 20:10:48 +00:00
|
|
|
|
|
|
|
"github.com/diamondburned/arikawa/internal/moreatomic"
|
2020-01-08 07:10:37 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// ExtraDelay because Discord is trash. I've seen this in both litcord and
|
|
|
|
// discordgo, with dgo claiming from his experiments.
|
|
|
|
// RE: Those who want others to fix it for them: release the source code then.
|
|
|
|
const ExtraDelay = 250 * time.Millisecond
|
|
|
|
|
|
|
|
// This makes me suicidal.
|
|
|
|
// https://github.com/bwmarrin/discordgo/blob/master/ratelimit.go
|
|
|
|
|
|
|
|
type Limiter struct {
|
|
|
|
// Only 1 per bucket
|
|
|
|
CustomLimits []*CustomRateLimit
|
|
|
|
|
2020-02-09 20:54:16 +00:00
|
|
|
Prefix string
|
|
|
|
|
2020-07-29 23:29:01 +00:00
|
|
|
global *int64 // atomic guarded, unixnano
|
|
|
|
buckets sync.Map
|
2020-01-08 07:10:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type CustomRateLimit struct {
|
|
|
|
Contains string
|
2020-02-09 20:54:16 +00:00
|
|
|
Reset time.Duration
|
2020-01-08 07:10:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type bucket struct {
|
2020-05-06 07:40:26 +00:00
|
|
|
lock moreatomic.CtxMutex
|
2020-01-08 07:10:37 +00:00
|
|
|
custom *CustomRateLimit
|
|
|
|
|
|
|
|
remaining uint64
|
|
|
|
|
|
|
|
reset time.Time
|
|
|
|
lastReset time.Time // only for custom
|
|
|
|
}
|
|
|
|
|
2020-05-06 07:40:26 +00:00
|
|
|
func newBucket() *bucket {
|
|
|
|
return &bucket{
|
|
|
|
lock: *moreatomic.NewCtxMutex(),
|
|
|
|
remaining: 1,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-09 20:54:16 +00:00
|
|
|
func NewLimiter(prefix string) *Limiter {
|
2020-01-08 07:10:37 +00:00
|
|
|
return &Limiter{
|
2020-02-09 20:54:16 +00:00
|
|
|
Prefix: prefix,
|
2020-01-19 17:52:43 +00:00
|
|
|
global: new(int64),
|
|
|
|
buckets: sync.Map{},
|
|
|
|
CustomLimits: []*CustomRateLimit{},
|
2020-01-08 07:10:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (l *Limiter) getBucket(path string, store bool) *bucket {
|
2020-02-09 20:54:16 +00:00
|
|
|
path = ParseBucketKey(strings.TrimPrefix(path, l.Prefix))
|
2020-01-08 18:43:15 +00:00
|
|
|
|
2020-01-08 07:10:37 +00:00
|
|
|
bc, ok := l.buckets.Load(path)
|
|
|
|
if !ok && !store {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
if !ok {
|
2020-05-06 07:40:26 +00:00
|
|
|
bc := newBucket()
|
2020-01-08 07:10:37 +00:00
|
|
|
|
|
|
|
for _, limit := range l.CustomLimits {
|
|
|
|
if strings.Contains(path, limit.Contains) {
|
|
|
|
bc.custom = limit
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
l.buckets.Store(path, bc)
|
|
|
|
return bc
|
|
|
|
}
|
|
|
|
|
|
|
|
return bc.(*bucket)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (l *Limiter) Acquire(ctx context.Context, path string) error {
|
|
|
|
b := l.getBucket(path, true)
|
|
|
|
|
2020-05-06 07:32:21 +00:00
|
|
|
if err := b.lock.Lock(ctx); err != nil {
|
2020-01-08 07:10:37 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Time to sleep
|
|
|
|
var sleep time.Duration
|
|
|
|
|
|
|
|
if b.remaining == 0 && b.reset.After(time.Now()) {
|
|
|
|
// out of turns, gotta wait
|
2020-07-29 23:29:01 +00:00
|
|
|
sleep = time.Until(b.reset)
|
2020-01-08 07:10:37 +00:00
|
|
|
} else {
|
|
|
|
// maybe global rate limit has it
|
|
|
|
now := time.Now()
|
|
|
|
until := time.Unix(0, atomic.LoadInt64(l.global))
|
|
|
|
|
|
|
|
if until.After(now) {
|
|
|
|
sleep = until.Sub(now)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if sleep > 0 {
|
|
|
|
select {
|
|
|
|
case <-ctx.Done():
|
2020-02-09 20:54:16 +00:00
|
|
|
b.lock.Unlock()
|
2020-01-08 07:10:37 +00:00
|
|
|
return ctx.Err()
|
|
|
|
case <-time.After(sleep):
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if b.remaining > 0 {
|
|
|
|
b.remaining--
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Release releases the URL from the locks. This doesn't need a context for
|
2020-08-04 21:09:37 +00:00
|
|
|
// timing out, since it doesn't block that much.
|
2020-01-08 07:10:37 +00:00
|
|
|
func (l *Limiter) Release(path string, headers http.Header) error {
|
|
|
|
b := l.getBucket(path, false)
|
|
|
|
if b == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-08-04 21:09:37 +00:00
|
|
|
// TryUnlock because Release may be called when Acquire has not been.
|
|
|
|
defer b.lock.TryUnlock()
|
2020-01-08 07:10:37 +00:00
|
|
|
|
|
|
|
// Check custom limiter
|
|
|
|
if b.custom != nil {
|
|
|
|
now := time.Now()
|
|
|
|
|
|
|
|
if now.Sub(b.lastReset) >= b.custom.Reset {
|
|
|
|
b.lastReset = now
|
|
|
|
b.reset = now.Add(b.custom.Reset)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-03-01 22:25:54 +00:00
|
|
|
// Check if headers is nil or not:
|
|
|
|
if headers == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-01-08 07:10:37 +00:00
|
|
|
var (
|
|
|
|
// boolean
|
|
|
|
global = headers.Get("X-RateLimit-Global")
|
|
|
|
|
|
|
|
// seconds
|
|
|
|
remaining = headers.Get("X-RateLimit-Remaining")
|
|
|
|
reset = headers.Get("X-RateLimit-Reset")
|
|
|
|
retryAfter = headers.Get("Retry-After")
|
|
|
|
)
|
|
|
|
|
|
|
|
switch {
|
|
|
|
case retryAfter != "":
|
|
|
|
i, err := strconv.Atoi(retryAfter)
|
|
|
|
if err != nil {
|
2020-05-16 21:14:49 +00:00
|
|
|
return errors.Wrap(err, "invalid retryAfter "+retryAfter)
|
2020-01-08 07:10:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
at := time.Now().Add(time.Duration(i) * time.Millisecond)
|
|
|
|
|
|
|
|
if global != "" { // probably true
|
|
|
|
atomic.StoreInt64(l.global, at.UnixNano())
|
|
|
|
} else {
|
|
|
|
b.reset = at
|
|
|
|
}
|
|
|
|
|
|
|
|
case reset != "":
|
|
|
|
unix, err := strconv.ParseFloat(reset, 64)
|
|
|
|
if err != nil {
|
2020-05-16 21:14:49 +00:00
|
|
|
return errors.Wrap(err, "invalid reset "+reset)
|
2020-01-08 07:10:37 +00:00
|
|
|
}
|
|
|
|
|
2020-01-20 19:28:55 +00:00
|
|
|
b.reset = time.Unix(0, int64(unix*float64(time.Second))).
|
|
|
|
Add(ExtraDelay)
|
2020-01-08 07:10:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if remaining != "" {
|
|
|
|
u, err := strconv.ParseUint(remaining, 10, 64)
|
|
|
|
if err != nil {
|
2020-05-16 21:14:49 +00:00
|
|
|
return errors.Wrap(err, "invalid remaining "+remaining)
|
2020-01-08 07:10:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
b.remaining = u
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|