mirror of
https://github.com/0ceanSlim/grain.git
synced 2024-11-22 16:47:13 +00:00
110 lines
2.5 KiB
Go
110 lines
2.5 KiB
Go
package utils
|
|
|
|
import (
|
|
"fmt"
|
|
"sync"
|
|
|
|
"golang.org/x/time/rate"
|
|
)
|
|
|
|
type KindLimiter struct {
|
|
Limiter *rate.Limiter
|
|
Limit rate.Limit
|
|
Burst int
|
|
}
|
|
|
|
type CategoryLimiter struct {
|
|
Limiter *rate.Limiter
|
|
Limit rate.Limit
|
|
Burst int
|
|
}
|
|
|
|
type RateLimiter struct {
|
|
wsLimiter *rate.Limiter
|
|
eventLimiter *rate.Limiter
|
|
reqLimiter *rate.Limiter
|
|
categoryLimiters map[string]*CategoryLimiter
|
|
kindLimiters map[int]*KindLimiter
|
|
mu sync.RWMutex
|
|
}
|
|
|
|
var rateLimiterInstance *RateLimiter
|
|
var once sync.Once
|
|
|
|
func SetRateLimiter(rl *RateLimiter) {
|
|
once.Do(func() {
|
|
rateLimiterInstance = rl
|
|
})
|
|
}
|
|
|
|
func GetRateLimiter() *RateLimiter {
|
|
return rateLimiterInstance
|
|
}
|
|
|
|
func NewRateLimiter(wsLimit rate.Limit, wsBurst int, eventLimit rate.Limit, eventBurst int, reqLimit rate.Limit, reqBurst int) *RateLimiter {
|
|
return &RateLimiter{
|
|
wsLimiter: rate.NewLimiter(wsLimit, wsBurst),
|
|
eventLimiter: rate.NewLimiter(eventLimit, eventBurst),
|
|
reqLimiter: rate.NewLimiter(reqLimit, reqBurst),
|
|
categoryLimiters: make(map[string]*CategoryLimiter),
|
|
kindLimiters: make(map[int]*KindLimiter),
|
|
}
|
|
}
|
|
|
|
func (rl *RateLimiter) AllowWs() (bool, string) {
|
|
if !rl.wsLimiter.Allow() {
|
|
return false, "WebSocket message rate limit exceeded"
|
|
}
|
|
return true, ""
|
|
}
|
|
|
|
func (rl *RateLimiter) AllowEvent(kind int, category string) (bool, string) {
|
|
rl.mu.RLock()
|
|
defer rl.mu.RUnlock()
|
|
|
|
if !rl.eventLimiter.Allow() {
|
|
return false, "Global event rate limit exceeded"
|
|
}
|
|
|
|
if kindLimiter, exists := rl.kindLimiters[kind]; exists {
|
|
if !kindLimiter.Limiter.Allow() {
|
|
return false, fmt.Sprintf("Rate limit exceeded for kind: %d", kind)
|
|
}
|
|
}
|
|
|
|
if categoryLimiter, exists := rl.categoryLimiters[category]; exists {
|
|
if !categoryLimiter.Limiter.Allow() {
|
|
return false, fmt.Sprintf("Rate limit exceeded for category: %s", category)
|
|
}
|
|
}
|
|
|
|
return true, ""
|
|
}
|
|
|
|
func (rl *RateLimiter) AllowReq() (bool, string) {
|
|
if !rl.reqLimiter.Allow() {
|
|
return false, "REQ rate limit exceeded"
|
|
}
|
|
return true, ""
|
|
}
|
|
|
|
func (rl *RateLimiter) AddCategoryLimit(category string, limit rate.Limit, burst int) {
|
|
rl.mu.Lock()
|
|
defer rl.mu.Unlock()
|
|
rl.categoryLimiters[category] = &CategoryLimiter{
|
|
Limiter: rate.NewLimiter(limit, burst),
|
|
Limit: limit,
|
|
Burst: burst,
|
|
}
|
|
}
|
|
|
|
func (rl *RateLimiter) AddKindLimit(kind int, limit rate.Limit, burst int) {
|
|
rl.mu.Lock()
|
|
defer rl.mu.Unlock()
|
|
rl.kindLimiters[kind] = &KindLimiter{
|
|
Limiter: rate.NewLimiter(limit, burst),
|
|
Limit: limit,
|
|
Burst: burst,
|
|
}
|
|
}
|