-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathdatastore.go
112 lines (96 loc) · 2.68 KB
/
datastore.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
package main
import (
"gx/ipfs/QmZyZDi491cCNTLfAhwcaDii2Kg4pwKRkhqQzURGDvY6ua/go-multihash"
"errors"
"encoding/base64"
"sync"
)
type Datastore interface {
AddSubscription(mh multihash.Multihash) error
GetSubscriptions() ([]multihash.Multihash, error)
PutMessage(subscriptionKey multihash.Multihash, messageID string, message []byte) error
GetMessages(userID string, subscriptionKey multihash.Multihash) ([]EncryptedMessage, error)
MarkMessageAsRead(messageID, userID string) error
}
type MockDatastore struct {
messages map[string]mockEntry
subscriptionIndex map[string][]string
subscribers map[string]struct{}
lock sync.Mutex
}
func NewMockDatastore() *MockDatastore {
m := &MockDatastore{
messages: make(map[string]mockEntry),
subscriptionIndex: make(map[string][]string),
subscribers: make(map[string]struct{}),
lock: sync.Mutex{},
}
return m
}
type mockEntry struct {
EncryptedMessage
seenBy map[string]bool
}
func (m *MockDatastore) AddSubscription(mh multihash.Multihash) error {
m.lock.Lock()
defer m.lock.Unlock()
m.subscribers[mh.B58String()] = struct{}{}
return nil
}
func (m *MockDatastore) GetSubscriptions() ([]multihash.Multihash, error) {
m.lock.Lock()
defer m.lock.Unlock()
var subs []multihash.Multihash
for sub := range m.subscribers {
mh, err := multihash.FromB58String(sub)
if err != nil {
continue
}
subs = append(subs, mh)
}
return subs, nil
}
func (m *MockDatastore) PutMessage(subscriptionKey multihash.Multihash, messageID string, message []byte) error {
m.lock.Lock()
defer m.lock.Unlock()
m.messages[messageID] = mockEntry{
EncryptedMessage: EncryptedMessage{
Message: base64.StdEncoding.EncodeToString(message),
ID: messageID,
},
seenBy: make(map[string]bool),
}
messages, ok := m.subscriptionIndex[subscriptionKey.B58String()]
if ok {
messages = append(messages, messageID)
m.subscriptionIndex[subscriptionKey.B58String()] = messages
} else {
m.subscriptionIndex[subscriptionKey.B58String()] = []string{messageID}
}
return nil
}
func (m *MockDatastore) GetMessages(userID string, subscriptionKey multihash.Multihash) ([]EncryptedMessage, error) {
m.lock.Lock()
defer m.lock.Unlock()
var ret []EncryptedMessage
messages, ok := m.subscriptionIndex[subscriptionKey.B58String()]
if ok {
for _, message := range messages {
entry, ok := m.messages[message]
if ok && !entry.seenBy[userID] {
ret = append(ret, entry.EncryptedMessage)
}
}
}
return ret, nil
}
func (m *MockDatastore) MarkMessageAsRead(messageID, userID string) error {
m.lock.Lock()
defer m.lock.Unlock()
message, ok := m.messages[messageID]
if !ok {
return errors.New("message does not exist")
}
message.seenBy[userID] = true
return nil
}