-
Notifications
You must be signed in to change notification settings - Fork 0
/
pubsub.go
322 lines (273 loc) · 7.45 KB
/
pubsub.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
package mochicloudhooks
import (
"bytes"
"context"
"encoding/json"
"errors"
"time"
"cloud.google.com/go/pubsub"
mqtt "github.com/mochi-mqtt/server/v2"
"github.com/mochi-mqtt/server/v2/packets"
)
type PubsubMessagingHook struct {
onStartedTopic *pubsub.Topic
onStoppedTopic *pubsub.Topic
onConnectTopic *pubsub.Topic
onDisconnectTopic *pubsub.Topic
onSessionEstablishedTopic *pubsub.Topic
onPublishedTopic *pubsub.Topic
onSubscribedTopic *pubsub.Topic
onUnsubscribedTopic *pubsub.Topic
onWillSentTopic *pubsub.Topic
disallowlist []string
mqtt.HookBase
}
type PubsubMessagingHookConfig struct {
OnStartedTopic *pubsub.Topic
OnStoppedTopic *pubsub.Topic
OnConnectTopic *pubsub.Topic
OnDisconnectTopic *pubsub.Topic
OnSessionEstablishedTopic *pubsub.Topic
OnPublishedTopic *pubsub.Topic
OnSubscribedTopic *pubsub.Topic
OnUnubscribedTopic *pubsub.Topic
OnWillSentTopic *pubsub.Topic
DisallowList []string
}
type OnStartedMessage struct {
Timestamp time.Time
}
type OnStoppedMessage struct {
Timestamp time.Time
}
type OnPublishedMessage struct {
ClientID string `json:"client_id"`
Topic string `json:"topic"`
Payload []byte `json:"payload"`
Timestamp time.Time `json:"timestamp"`
}
type OnConnectMessage struct {
ClientID string `json:"client_id"`
Username string `json:"username"`
Timestamp time.Time `json:"timestamp"`
}
type OnDisconnectMessage struct {
ClientID string `json:"client_id"`
Username string `json:"username"`
Timestamp time.Time `json:"timestamp"`
}
type OnSessionEstablishedMessage struct {
ClientID string `json:"client_id"`
Username string `json:"username"`
Timestamp time.Time `json:"timestamp"`
Connected bool `json:"connected"`
}
type OnSubscribedMessage struct {
ClientID string `json:"client_id"`
Username string `json:"username"`
Topic string `json:"topic"`
Subscribed bool `json:"subscribed"`
Timestamp time.Time `json:"timestamp"`
}
type OnUnsubscribedMessage struct {
ClientID string `json:"client_id"`
Username string `json:"username"`
Topic string `json:"topic"`
Subscribed bool `json:"subscribed"`
Timestamp time.Time `json:"timestamp"`
}
type OnWillSentMessage struct {
ClientID string `json:"client_id"`
Topic string `json:"topic"`
Payload []byte `json:"payload"`
Timestamp time.Time `json:"timestamp"`
}
func (pmh *PubsubMessagingHook) ID() string {
return "pubsub-messaging-hook"
}
func (pmh *PubsubMessagingHook) Provides(b byte) bool {
return bytes.Contains([]byte{
mqtt.OnStarted,
mqtt.OnStopped,
mqtt.OnConnect,
mqtt.OnDisconnect,
mqtt.OnSessionEstablished,
mqtt.OnPublished,
mqtt.OnSubscribed,
mqtt.OnUnsubscribed,
mqtt.OnWillSent,
}, []byte{b})
}
func (pmh *PubsubMessagingHook) Init(config any) error {
if config == nil {
return errors.New("nil config")
}
pmhc, ok := config.(PubsubMessagingHookConfig)
if !ok {
return errors.New("improper config")
}
if pmhc.DisallowList == nil {
return errors.New("nil disallowlist")
}
pmh.onStartedTopic = pmhc.OnStartedTopic
pmh.onStoppedTopic = pmhc.OnStoppedTopic
pmh.onConnectTopic = pmhc.OnConnectTopic
pmh.onDisconnectTopic = pmhc.OnDisconnectTopic
pmh.onSessionEstablishedTopic = pmhc.OnSessionEstablishedTopic
pmh.onPublishedTopic = pmhc.OnPublishedTopic
pmh.onSubscribedTopic = pmhc.OnSubscribedTopic
pmh.onUnsubscribedTopic = pmhc.OnUnubscribedTopic
pmh.onWillSentTopic = pmhc.OnWillSentTopic
pmh.disallowlist = pmhc.DisallowList
return nil
}
func (pmh *PubsubMessagingHook) OnStarted() {
if pmh.onStartedTopic == nil {
return
}
if err := publish(pmh.onStartedTopic, OnStartedMessage{
Timestamp: time.Now(),
}); err != nil {
pmh.Log.Error("", err)
}
}
func (pmh *PubsubMessagingHook) OnStopped() {
if pmh.onStoppedTopic == nil {
return
}
if err := publish(pmh.onStoppedTopic, OnStoppedMessage{
Timestamp: time.Now(),
}); err != nil {
pmh.Log.Error("", err)
}
}
func (pmh *PubsubMessagingHook) OnUnsubscribed(cl *mqtt.Client, pk packets.Packet) {
if pmh.onUnsubscribedTopic == nil {
return
}
if !pmh.checkAllowed(string(cl.Properties.Username)) {
return
}
if err := publish(pmh.onUnsubscribedTopic, OnSubscribedMessage{
ClientID: cl.ID,
Username: string(cl.Properties.Username),
Timestamp: time.Now(),
Subscribed: false,
Topic: pk.TopicName,
}); err != nil {
pmh.Log.Error("", err)
}
}
func (pmh *PubsubMessagingHook) OnSubscribed(cl *mqtt.Client, pk packets.Packet, reasonCodes []byte) {
if pmh.onSubscribedTopic == nil {
return
}
if !pmh.checkAllowed(string(cl.Properties.Username)) {
return
}
if err := publish(pmh.onSubscribedTopic, OnSubscribedMessage{
ClientID: cl.ID,
Username: string(cl.Properties.Username),
Timestamp: time.Now(),
Subscribed: true,
Topic: pk.TopicName,
}); err != nil {
pmh.Log.Error("", err)
}
}
func (pmh *PubsubMessagingHook) OnConnect(cl *mqtt.Client, pk packets.Packet) error {
if pmh.onConnectTopic == nil {
return nil
}
if !pmh.checkAllowed(string(cl.Properties.Username)) {
return nil
}
if err := publish(pmh.onConnectTopic, OnConnectMessage{
ClientID: cl.ID,
Username: string(cl.Properties.Username),
Timestamp: time.Now(),
}); err != nil {
pmh.Log.Error("", err)
}
return nil
}
func (pmh *PubsubMessagingHook) OnSessionEstablished(cl *mqtt.Client, pk packets.Packet) {
if pmh.onSessionEstablishedTopic == nil {
return
}
if !pmh.checkAllowed(string(cl.Properties.Username)) {
return
}
if err := publish(pmh.onSessionEstablishedTopic, OnSessionEstablishedMessage{
ClientID: cl.ID,
Username: string(cl.Properties.Username),
Timestamp: time.Now(),
Connected: true,
}); err != nil {
pmh.Log.Error("", err)
}
}
func (pmh *PubsubMessagingHook) OnDisconnect(cl *mqtt.Client, connect_err error, expire bool) {
if pmh.onDisconnectTopic == nil {
return
}
if !pmh.checkAllowed(string(cl.Properties.Username)) {
return
}
if err := publish(pmh.onDisconnectTopic, OnDisconnectMessage{
ClientID: cl.ID,
Username: string(cl.Properties.Username),
Timestamp: time.Now(),
}); err != nil {
pmh.Log.Error("", err)
}
}
func (pmh *PubsubMessagingHook) OnPublished(cl *mqtt.Client, pk packets.Packet) {
if pmh.onPublishedTopic == nil {
return
}
if !pmh.checkAllowed(string(cl.Properties.Username)) {
return
}
if err := publish(pmh.onPublishedTopic, OnPublishedMessage{
ClientID: cl.ID,
Topic: pk.TopicName,
Payload: pk.Payload,
Timestamp: time.Now(),
}); err != nil {
pmh.Log.Error("", err)
}
}
func (pmh *PubsubMessagingHook) OnWillSent(cl *mqtt.Client, pk packets.Packet) {
if pmh.onWillSentTopic == nil {
return
}
if !pmh.checkAllowed(string(cl.Properties.Username)) {
return
}
if err := publish(pmh.onWillSentTopic, OnWillSentMessage{
ClientID: cl.ID,
Topic: pk.TopicName,
Payload: pk.Payload,
Timestamp: time.Now(),
}); err != nil {
pmh.Log.Error("", err)
}
}
func (pmh *PubsubMessagingHook) checkAllowed(username string) bool {
for _, disallowedUsername := range pmh.disallowlist {
if username == disallowedUsername {
return false
}
}
return true
}
func publish(topic *pubsub.Topic, data any) error {
ctx := context.Background()
b, _ := json.Marshal(data)
// TODO : add options to store response for later
topic.Publish(ctx, &pubsub.Message{
Data: b,
})
return nil
}