-
Notifications
You must be signed in to change notification settings - Fork 26
/
blaze.go
553 lines (505 loc) · 15.4 KB
/
blaze.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
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
package bot
import (
"compress/gzip"
"context"
"encoding/base64"
"encoding/json"
"fmt"
"io"
"net/http"
"net/url"
"strings"
"sync"
"time"
"github.com/gorilla/websocket"
)
const (
keepAlivePeriod = 3 * time.Second
writeWait = 10 * time.Second
pongWait = 10 * time.Second
pingPeriod = (pongWait * 9) / 10
createMessageAction = "CREATE_MESSAGE"
maximumButtons = 18
)
const (
MessageCategoryPlainText = "PLAIN_TEXT"
MessageCategoryPlainImage = "PLAIN_IMAGE"
MessageCategoryPlainData = "PLAIN_DATA"
MessageCategoryPlainSticker = "PLAIN_STICKER"
MessageCategoryPlainLive = "PLAIN_LIVE"
MessageCategoryPlainContact = "PLAIN_CONTACT"
MessageCategoryPlainPost = "PLAIN_POST"
MessageCategoryPlainLocation = "PLAIN_LOCATION"
MessageCategoryPlainTranscript = "PLAIN_TRANSCRIPT"
MessageCategorySystemConversation = "SYSTEM_CONVERSATION"
MessageCategorySystemAccountSnapshot = "SYSTEM_ACCOUNT_SNAPSHOT"
MessageCategoryMessageRecall = "MESSAGE_RECALL"
MessageCategoryMessagePin = "MESSAGE_PIN"
MessageCategoryAppButtonGroup = "APP_BUTTON_GROUP"
MessageCategoryAppCard = "APP_CARD"
MessageCategorySystemSafeSnapshot = "SYSTEM_SAFE_SNAPSHOT"
MessageCategorySystemSafeInscription = "SYSTEM_SAFE_INSCRIPTION"
)
type BlazeMessage struct {
Id string `json:"id"`
Action string `json:"action"`
Params map[string]interface{} `json:"params,omitempty"`
Data json.RawMessage `json:"data,omitempty"`
Error *Error `json:"error,omitempty"`
}
type MessageView struct {
ConversationId string `json:"conversation_id"`
UserId string `json:"user_id"`
MessageId string `json:"message_id"`
Category string `json:"category"`
DataBase64 string `json:"data_base64"`
RepresentativeId string `json:"representative_id"`
QuoteMessageId string `json:"quote_message_id"`
Status string `json:"status"`
Source string `json:"source"`
CreatedAt time.Time `json:"created_at"`
UpdatedAt time.Time `json:"updated_at"`
}
type TransferView struct {
Type string `json:"type"`
SnapshotId string `json:"snapshot_id"`
CounterUserId string `json:"counter_user_id"`
AssetId string `json:"asset_id"`
Amount string `json:"amount"`
TraceId string `json:"trace_id"`
Memo string `json:"memo"`
CreatedAt time.Time `json:"created_at"`
}
type TransferSafeView struct {
Type string `json:"type"`
SnapshotId string `json:"snapshot_id"`
UserId string `json:"user_id"`
OpponentId string `json:"opponent_id"`
TransactionHash string `json:"transaction_hash"`
AssetId string `json:"asset_id"`
Amount string `json:"amount"`
Memo string `json:"memo"`
CreatedAt time.Time `json:"created_at"`
DepositHash string `json:"deposit_hash"` // deposit only
InscriptionHash string `json:"inscription_hash"` // inscription only
}
type AppButtonView struct {
Label string `json:"label"`
Action string `json:"action"`
Color string `json:"color"`
}
type AppCardAction = AppButtonView
type AppCardView struct {
AppID string `json:"app_id"`
CoverURL string `json:"cover_url"`
Title string `json:"title"`
Description string `json:"description"`
Actions []AppCardAction `json:"actions"`
Shareable bool `json:"shareable"`
}
type messageContext struct {
transactions *tmap
readDone chan bool
writeDone chan bool
readBuffer chan MessageView
writeBuffer chan []byte
}
type SystemConversationPayload struct {
Action string `json:"action"`
ParticipantId string `json:"participant_id"`
UserId string `json:"user_id,omitempty"`
Role string `json:"role,omitempty"`
}
type BlazeClient struct {
mc *messageContext
uid string
sid string
key string
dailer *websocket.Dialer
}
type BlazeListener interface {
OnMessage(ctx context.Context, msg MessageView, userId string) error
OnAckReceipt(ctx context.Context, msg MessageView, userId string) error
SyncAck() bool
}
func NewBlazeClientWithSafeUser(user *SafeUser) *BlazeClient {
return NewBlazeClient(user.UserId, user.SessionId, user.SessionPrivateKey)
}
func NewBlazeClient(uid, sid, key string) *BlazeClient {
client := BlazeClient{
mc: &messageContext{
transactions: newTmap(),
readDone: make(chan bool, 1),
writeDone: make(chan bool, 1),
readBuffer: make(chan MessageView, 102400),
writeBuffer: make(chan []byte, 102400),
},
uid: uid,
sid: sid,
key: key,
}
client.SetupDailer(nil)
return &client
}
func (b *BlazeClient) SetupDailer(dailer *websocket.Dialer) {
if dailer == nil {
dailer = &websocket.Dialer{}
}
dailer.Subprotocols = []string{"Mixin-Blaze-1"}
if dailer.HandshakeTimeout == 0 {
dailer.HandshakeTimeout = time.Second * 5
}
b.dailer = dailer
}
func (b *BlazeClient) Loop(ctx context.Context, listener BlazeListener) error {
conn, err := b.connectMixinBlaze()
if err != nil {
return err
}
defer conn.Close()
go writePump(ctx, conn, b.mc)
go readPump(ctx, conn, b.mc)
if err = writeMessageAndWait(ctx, b.mc, "LIST_PENDING_MESSAGES", nil); err != nil {
return BlazeServerError(ctx, err)
}
for {
select {
case <-b.mc.readDone:
return nil
case msg := <-b.mc.readBuffer:
if msg.Source == "ACKNOWLEDGE_MESSAGE_RECEIPT" {
err = listener.OnAckReceipt(ctx, msg, b.uid)
if err != nil {
return err
}
} else {
err = listener.OnMessage(ctx, msg, b.uid)
if err != nil {
return err
}
if listener.SyncAck() {
params := map[string]interface{}{"message_id": msg.MessageId, "status": "READ"}
if err = writeMessageAndWait(ctx, b.mc, "ACKNOWLEDGE_MESSAGE_RECEIPT", params); err != nil {
return BlazeServerError(ctx, err)
}
}
}
}
}
}
func (b *BlazeClient) SendMessage(ctx context.Context, conversationId, recipientId, messageId, category, content, representativeId string) error {
params := map[string]interface{}{
"conversation_id": conversationId,
"recipient_id": recipientId,
"message_id": messageId,
"category": category,
"data_base64": base64.RawURLEncoding.EncodeToString([]byte(content)),
"representative_id": representativeId,
}
if err := writeMessageAndWait(ctx, b.mc, createMessageAction, params); err != nil {
return BlazeServerError(ctx, err)
}
return nil
}
func (b *BlazeClient) SendPlainText(ctx context.Context, msg MessageView, content string) error {
params := map[string]interface{}{
"conversation_id": msg.ConversationId,
"recipient_id": msg.UserId,
"message_id": UuidNewV4().String(),
"category": MessageCategoryPlainText,
"data_base64": base64.RawURLEncoding.EncodeToString([]byte(content)),
}
if err := writeMessageAndWait(ctx, b.mc, createMessageAction, params); err != nil {
return BlazeServerError(ctx, err)
}
return nil
}
func (b *BlazeClient) SendRecallMessage(ctx context.Context, conversationId, recipientId, recallMessageId string) error {
c := RecallMessagePayload{
MessageId: recallMessageId,
}
a, _ := json.Marshal(c)
params := map[string]interface{}{
"conversation_id": conversationId,
"recipient_id": recipientId,
"message_id": UuidNewV4().String(),
"category": MessageCategoryMessageRecall,
"data_base64": base64.RawURLEncoding.EncodeToString(a),
}
if err := writeMessageAndWait(ctx, b.mc, createMessageAction, params); err != nil {
return BlazeServerError(ctx, err)
}
return nil
}
func (b *BlazeClient) SendPost(ctx context.Context, msg MessageView, content string) error {
params := map[string]interface{}{
"conversation_id": msg.ConversationId,
"recipient_id": msg.UserId,
"message_id": UuidNewV4().String(),
"category": MessageCategoryPlainPost,
"data_base64": base64.RawURLEncoding.EncodeToString([]byte(content)),
}
if err := writeMessageAndWait(ctx, b.mc, createMessageAction, params); err != nil {
return BlazeServerError(ctx, err)
}
return nil
}
func (b *BlazeClient) SendContact(ctx context.Context, conversationId, recipientId, contactId string) error {
contactMap := map[string]string{"user_id": contactId}
contactData, _ := json.Marshal(contactMap)
params := map[string]interface{}{
"conversation_id": conversationId,
"recipient_id": recipientId,
"message_id": UuidNewV4().String(),
"category": MessageCategoryPlainContact,
"data_base64": base64.RawURLEncoding.EncodeToString(contactData),
}
if err := writeMessageAndWait(ctx, b.mc, createMessageAction, params); err != nil {
return BlazeServerError(ctx, err)
}
return nil
}
func (b *BlazeClient) SendAppCard(ctx context.Context, conversationId, recipientId, title, description, action, iconUrl string) error {
data, err := json.Marshal(map[string]string{
"title": title,
"description": description,
"action": action,
"icon_url": iconUrl,
})
if err != nil {
return err
}
params := map[string]interface{}{
"conversation_id": conversationId,
"recipient_id": recipientId,
"message_id": UuidNewV4().String(),
"category": MessageCategoryAppCard,
"data_base64": base64.RawURLEncoding.EncodeToString(data),
}
err = writeMessageAndWait(ctx, b.mc, createMessageAction, params)
if err != nil {
return BlazeServerError(ctx, err)
}
return nil
}
func (b *BlazeClient) SendAppButton(ctx context.Context, conversationId, recipientId, label, action, color string) error {
btns, err := json.Marshal([]interface{}{map[string]string{
"label": label,
"action": action,
"color": color,
}})
if err != nil {
return err
}
params := map[string]interface{}{
"conversation_id": conversationId,
"recipient_id": recipientId,
"message_id": UuidNewV4().String(),
"category": MessageCategoryAppButtonGroup,
"data_base64": base64.RawURLEncoding.EncodeToString(btns),
}
err = writeMessageAndWait(ctx, b.mc, createMessageAction, params)
if err != nil {
return BlazeServerError(ctx, err)
}
return nil
}
func (b *BlazeClient) SendGroupAppButton(ctx context.Context, conversationId, recipientId string, buttons []*AppButtonView) error {
if len(buttons) > maximumButtons {
return fmt.Errorf("too many buttons, maximum is six")
}
btns, err := json.Marshal(buttons)
if err != nil {
return err
}
params := map[string]interface{}{
"conversation_id": conversationId,
"recipient_id": recipientId,
"message_id": UuidNewV4().String(),
"category": MessageCategoryAppButtonGroup,
"data_base64": base64.RawURLEncoding.EncodeToString(btns),
}
err = writeMessageAndWait(ctx, b.mc, createMessageAction, params)
if err != nil {
return BlazeServerError(ctx, err)
}
return nil
}
func (b *BlazeClient) connectMixinBlaze() (*websocket.Conn, error) {
user := &SafeUser{
UserId: b.uid,
SessionId: b.sid,
SessionPrivateKey: b.key,
}
token, err := SignAuthenticationToken("GET", "/", "", user)
if err != nil {
return nil, err
}
header := make(http.Header)
header.Add("Authorization", "Bearer "+token)
u := url.URL{Scheme: "wss", Host: blazeUri, Path: "/"}
conn, _, err := b.dailer.Dial(u.String(), header)
if err != nil {
if strings.Contains(err.Error(), "timeout") {
blazeUri = DefaultBlazeHost
}
return nil, err
}
return conn, nil
}
func readPump(ctx context.Context, conn *websocket.Conn, mc *messageContext) error {
defer func() {
conn.Close()
mc.writeDone <- true
mc.readDone <- true
}()
conn.SetReadDeadline(time.Now().Add(pongWait))
conn.SetPongHandler(func(string) error {
err := conn.SetReadDeadline(time.Now().Add(pongWait))
if err != nil {
return BlazeServerError(ctx, err)
}
return nil
})
for {
err := conn.SetReadDeadline(time.Now().Add(pongWait))
if err != nil {
return BlazeServerError(ctx, err)
}
messageType, wsReader, err := conn.NextReader()
if err != nil {
return BlazeServerError(ctx, err)
}
if messageType != websocket.BinaryMessage {
return BlazeServerError(ctx, fmt.Errorf("invalid message type %d", messageType))
}
err = parseMessage(ctx, mc, wsReader)
if err != nil {
return BlazeServerError(ctx, err)
}
}
}
func writePump(ctx context.Context, conn *websocket.Conn, mc *messageContext) error {
ticker := time.NewTicker(pingPeriod)
defer func() {
ticker.Stop()
conn.Close()
}()
for {
select {
case data := <-mc.writeBuffer:
err := writeGzipToConn(conn, data)
if err != nil {
return BlazeServerError(ctx, err)
}
case <-mc.writeDone:
return nil
case <-ticker.C:
conn.SetWriteDeadline(time.Now().Add(writeWait))
err := conn.WriteMessage(websocket.PingMessage, nil)
if err != nil {
return BlazeServerError(ctx, err)
}
}
}
}
func writeMessageAndWait(ctx context.Context, mc *messageContext, action string, params map[string]interface{}) error {
var resp = make(chan BlazeMessage, 1)
var id = UuidNewV4().String()
mc.transactions.set(id, func(t BlazeMessage) error {
select {
case resp <- t:
case <-time.After(1 * time.Second):
return fmt.Errorf("timeout to hook %s %s", action, id)
}
return nil
})
blazeMessage, err := json.Marshal(BlazeMessage{Id: id, Action: action, Params: params})
if err != nil {
return err
}
select {
case <-time.After(keepAlivePeriod):
return fmt.Errorf("timeout to write %s %v", action, params)
case mc.writeBuffer <- blazeMessage:
}
select {
case <-time.After(keepAlivePeriod):
return fmt.Errorf("timeout to wait %s %v", action, params)
case t := <-resp:
if t.Error != nil && t.Error.Code != 403 {
return writeMessageAndWait(ctx, mc, action, params)
}
}
return nil
}
func writeGzipToConn(conn *websocket.Conn, msg []byte) error {
conn.SetWriteDeadline(time.Now().Add(writeWait))
wsWriter, err := conn.NextWriter(websocket.BinaryMessage)
if err != nil {
return err
}
gzWriter, err := gzip.NewWriterLevel(wsWriter, 3)
if err != nil {
return err
}
if _, err := gzWriter.Write(msg); err != nil {
return err
}
if err := gzWriter.Close(); err != nil {
return err
}
return wsWriter.Close()
}
func parseMessage(ctx context.Context, mc *messageContext, wsReader io.Reader) error {
var message BlazeMessage
gzReader, err := gzip.NewReader(wsReader)
if err != nil {
return err
}
defer gzReader.Close()
if err = json.NewDecoder(gzReader).Decode(&message); err != nil {
return err
}
transaction := mc.transactions.retrieve(message.Id)
if transaction != nil {
return transaction(message)
}
if message.Action != "CREATE_MESSAGE" && message.Action != "ACKNOWLEDGE_MESSAGE_RECEIPT" {
return nil
}
var msg MessageView
if err = json.Unmarshal(message.Data, &msg); err != nil {
return err
}
timer := time.NewTimer(keepAlivePeriod)
defer timer.Stop()
select {
case <-timer.C:
timer.Reset(keepAlivePeriod)
return fmt.Errorf("timeout to handle %s %s", msg.Category, msg.MessageId)
case mc.readBuffer <- msg:
}
return nil
}
type tmap struct {
mutex sync.Mutex
m map[string]mixinTransaction
}
type mixinTransaction func(BlazeMessage) error
func newTmap() *tmap {
return &tmap{
m: make(map[string]mixinTransaction),
}
}
func (m *tmap) retrieve(key string) mixinTransaction {
m.mutex.Lock()
defer m.mutex.Unlock()
defer delete(m.m, key)
return m.m[key]
}
func (m *tmap) set(key string, t mixinTransaction) {
m.mutex.Lock()
defer m.mutex.Unlock()
m.m[key] = t
}