-
Notifications
You must be signed in to change notification settings - Fork 1
/
redis.go
223 lines (179 loc) · 4.89 KB
/
redis.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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
package main
import (
"bytes"
"context"
"encoding/gob"
"fmt"
"strings"
"time"
gtypes "github.com/gender-equality-community/types"
redis "github.com/go-redis/redis/v9"
"github.com/rs/xid"
"github.com/sethvargo/go-diceware/diceware"
"go.mau.fi/whatsmeow/types"
)
const groupName = "gec-bot"
var (
// Because all redis errors are of proto.RedisError it's hard to
// do a proper error comparison.
//
// Instead, the best we can do is compare error strings
busyGroupErr = "BUSYGROUP Consumer Group name already exists"
)
type redisClient interface {
Get(context.Context, string) *redis.StringCmd
HGet(context.Context, string, string) *redis.StringCmd
HSet(context.Context, string, ...interface{}) *redis.IntCmd
Set(context.Context, string, interface{}, time.Duration) *redis.StatusCmd
XAdd(context.Context, *redis.XAddArgs) *redis.StringCmd
XGroupCreate(context.Context, string, string, string) *redis.StatusCmd
XReadGroup(context.Context, *redis.XReadGroupArgs) *redis.XStreamSliceCmd
}
type Redis struct {
client redisClient
inStream string
outStream string
id string
}
func NewRedis(addr, inStream, outStream string) (r Redis, err error) {
r.inStream = inStream
r.outStream = outStream
r.client = redis.NewClient(&redis.Options{
Addr: addr,
Password: "", // no password set
DB: 0, // use default DB
})
r.id = xid.New().String()
return r, nil
}
func (r Redis) Produce(id, msg string) error {
return r.produce(gtypes.SourceWhatsapp, id, msg)
}
func (r Redis) Autorespond(id, msg string) error {
return r.produce(gtypes.SourceAutoresponse, id, msg)
}
func (r Redis) produce(source gtypes.Source, id, msg string) (err error) {
return r.client.XAdd(context.Background(), &redis.XAddArgs{
Stream: r.outStream,
Values: gtypes.NewMessage(source, id, msg).Map(),
}).Err()
}
func (r Redis) Process(c chan gtypes.Message) (err error) {
ctx := context.Background()
err = r.client.XGroupCreate(ctx, r.inStream, groupName, "$").Err()
if err != nil && err.Error() != busyGroupErr {
return err
}
var (
entries []redis.XStream
msg gtypes.Message
)
for {
entries, err = r.client.XReadGroup(ctx, &redis.XReadGroupArgs{
Group: groupName,
Consumer: r.id,
Streams: []string{r.inStream, ">"},
Count: 1,
Block: 0,
NoAck: false,
}).Result()
if err != nil {
break
}
msg, err = gtypes.ParseMessage(entries[0].Messages[0].Values)
if err != nil {
break
}
c <- msg
}
return
}
// MarkRecentlySent marks a specific recipient as having received an auto-response
// message within a specific period.
//
// This is used to make sure things like welcome messages and disclaimers aren't
// sent as a response to every single message
func (r Redis) MarkRecentlySent(id string, duration time.Duration) {
r.client.Set(context.Background(), id, "msg", duration)
}
// HasRecentlySent is the counter part of SetLastSent; it is used to determine
// whether or not to send an auto-response
func (r Redis) HasRecentlySent(id string) bool {
return r.client.Get(context.Background(), id).Err() == nil
}
// JIDToID takes a JID and returns either an internal, anonymised ID, or
// an error - signifying that this JID is brand new
func (r Redis) JIDToID(jid types.JID) (id string, err error) {
b, err := jidToBytes(jid)
if err != nil {
return
}
id, err = r.client.HGet(context.Background(), "jids", string(b)).Result()
if err != nil {
return
}
if len(id) == 0 {
err = fmt.Errorf("expected result to contain one ID, received %#v", id)
}
return
}
// IDToJID takes an ID and returns the JID attached to it
func (r Redis) IDToJID(id string) (jid types.JID, err error) {
data, err := r.client.HGet(context.Background(), "ids", id).Result()
if err != nil {
return
}
if len(data) == 0 {
err = fmt.Errorf("expected result to contain one ID, received %#v", data)
return
}
return jidFromBytes([]byte(data))
}
// MintID takes a JID, creates a new ID for it, and adds to
// redis
func (r Redis) MintID(j types.JID) (id string, err error) {
var l []string
for {
l, err = diceware.Generate(3)
if err != nil {
return
}
id = strings.Join(l, "-")
// Lazily check whether an ID is in use
_, err = r.IDToJID(id)
if err != nil {
break
}
}
jb, err := jidToBytes(j)
if err != nil {
return
}
ctx := context.Background()
err = r.client.HSet(ctx, "jids", string(jb), id).Err()
if err != nil {
return
}
err = r.client.HSet(ctx, "ids", id, jb).Err()
return
}
func disclaimerKey(id string) string {
return fmt.Sprintf("disclaimer:%s", id)
}
func thankyouKey(id string) string {
return fmt.Sprintf("ty:%s", id)
}
func jidToBytes(jid types.JID) (b []byte, err error) {
var buf bytes.Buffer
enc := gob.NewEncoder(&buf)
err = enc.Encode(jid)
if err != nil {
return
}
return buf.Bytes(), nil
}
func jidFromBytes(b []byte) (jid types.JID, err error) {
dec := gob.NewDecoder(bytes.NewBuffer(b))
err = dec.Decode(&jid)
return
}