-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstorage.go
103 lines (82 loc) · 1.79 KB
/
storage.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
package main
import (
"context"
"strconv"
"sync"
"time"
"github.com/redis/go-redis/v9"
)
type ClientData struct {
Ip string
Count int
WindowExpiresAt time.Time
}
type Store interface {
Increment(ip string)
ClientCount(ip string) (int, bool)
InitClientData(ip string, windowDuration time.Duration)
}
type InMemoryStore struct {
data map[string]ClientData
mu sync.Mutex
}
func NewInMemoryStore() *InMemoryStore {
return &InMemoryStore{
data: make(map[string]ClientData),
}
}
type RedisStore struct {
client *redis.Client
ctx context.Context
}
func NewRedisStore(addr string) *RedisStore {
opt, _ := redis.ParseURL(addr)
client := redis.NewClient(opt)
return &RedisStore{
client: client,
ctx: context.Background(),
}
}
func (r *RedisStore) Increment(ip string) {
r.client.Incr(r.ctx, ip)
}
func (r *RedisStore) InitClientData(ip string, windowDuration time.Duration) {
r.client.Set(r.ctx, ip, 1, windowDuration)
}
func (r *RedisStore) ClientCount(ip string) (int, bool) {
val, err := r.client.Get(r.ctx, ip).Result()
if err == redis.Nil {
return 0, false
}
count, _ := strconv.Atoi(val)
return count, true
}
func (i *InMemoryStore) ClientCount(ip string) (int, bool) {
i.mu.Lock()
defer i.mu.Unlock()
data, ok := i.data[ip]
if !ok || data.WindowExpiresAt.Before(time.Now()) {
return 0, false
}
return data.Count, true
}
func (i *InMemoryStore) Increment(ip string) {
i.mu.Lock()
defer i.mu.Unlock()
data, ok := i.data[ip]
if !ok {
return
} else {
data.Count++
}
i.data[ip] = data
}
func (i *InMemoryStore) InitClientData(ip string, windowDuration time.Duration) {
i.mu.Lock()
defer i.mu.Unlock()
i.data[ip] = ClientData{
Ip: ip,
Count: 1,
WindowExpiresAt: time.Now().Add(windowDuration),
}
}