-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpubsub.go
303 lines (257 loc) · 6.95 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
package mochicloudhooks
import (
"bytes"
"context"
"encoding/json"
"errors"
"time"
"cloud.google.com/go/pubsub"
"github.com/mochi-co/mqtt/v2"
"github.com/mochi-co/mqtt/v2/packets"
)
type PubsubMessagingHook struct {
onStartedTopic *pubsub.Topic
onStoppedTopic *pubsub.Topic
connectTopic *pubsub.Topic
onSessionEstablishedTopic *pubsub.Topic
publishTopic *pubsub.Topic
subscripeTopic *pubsub.Topic
willTopic *pubsub.Topic
disallowlist []string
mqtt.HookBase
}
type PubsubMessagingHookConfig struct {
OnStartedTopic *pubsub.Topic
OnStoppedTopic *pubsub.Topic
ConnectTopic *pubsub.Topic
OnSessionEstablishedTopic *pubsub.Topic
PublishTopic *pubsub.Topic
SubscribeTopic *pubsub.Topic
WillTopic *pubsub.Topic
DisallowList []string
}
type OnStartedMessage struct {
Timestamp time.Time
}
type OnStoppedMessage struct {
Timestamp time.Time
}
type PublishMessage struct {
ClientID string `json:"client_id"`
Topic string `json:"topic"`
Payload []byte `json:"payload"`
Timestamp time.Time `json:"timestamp"`
}
type ConnectMessage struct {
ClientID string `json:"client_id"`
Username string `json:"username"`
Timestamp time.Time `json:"timestamp"`
Connected bool `json:"connected"`
}
type OnSessionEstablishedMessage struct {
ClientID string `json:"client_id"`
Username string `json:"username"`
Timestamp time.Time `json:"timestamp"`
Connected bool `json:"connected"`
}
type SubscribeMessage 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")
}
pubsubMessagingHookConfig, ok := config.(PubsubMessagingHookConfig)
if !ok {
return errors.New("improper config")
}
if pubsubMessagingHookConfig.DisallowList == nil {
return errors.New("nil disallowlist")
}
pmh.onStartedTopic = pubsubMessagingHookConfig.OnStartedTopic
pmh.onStoppedTopic = pubsubMessagingHookConfig.OnStoppedTopic
pmh.connectTopic = pubsubMessagingHookConfig.ConnectTopic
pmh.onSessionEstablishedTopic = pubsubMessagingHookConfig.OnSessionEstablishedTopic
pmh.publishTopic = pubsubMessagingHookConfig.PublishTopic
pmh.subscripeTopic = pubsubMessagingHookConfig.SubscribeTopic
pmh.willTopic = pubsubMessagingHookConfig.WillTopic
pmh.disallowlist = pubsubMessagingHookConfig.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.Err(err).Msg("")
}
}
func (pmh *PubsubMessagingHook) OnStopped() {
if pmh.onStoppedTopic == nil {
return
}
if err := publish(pmh.onStoppedTopic, OnStoppedMessage{
Timestamp: time.Now(),
}); err != nil {
pmh.Log.Err(err).Msg("")
}
}
func (pmh *PubsubMessagingHook) OnUnsubscribed(cl *mqtt.Client, pk packets.Packet) {
if pmh.subscripeTopic == nil {
return
}
if !pmh.checkAllowed(string(cl.Properties.Username)) {
return
}
if err := publish(pmh.subscripeTopic, SubscribeMessage{
ClientID: cl.ID,
Username: string(cl.Properties.Username),
Timestamp: time.Now(),
Subscribed: false,
Topic: pk.TopicName,
}); err != nil {
pmh.Log.Err(err).Msg("")
}
}
func (pmh *PubsubMessagingHook) OnSubscribed(cl *mqtt.Client, pk packets.Packet, reasonCodes []byte) {
if pmh.subscripeTopic == nil {
return
}
if !pmh.checkAllowed(string(cl.Properties.Username)) {
return
}
if err := publish(pmh.subscripeTopic, SubscribeMessage{
ClientID: cl.ID,
Username: string(cl.Properties.Username),
Timestamp: time.Now(),
Subscribed: true,
Topic: pk.TopicName,
}); err != nil {
pmh.Log.Err(err).Msg("")
}
}
func (pmh *PubsubMessagingHook) OnConnect(cl *mqtt.Client, pk packets.Packet) {
if pmh.connectTopic == nil {
return
}
if !pmh.checkAllowed(string(cl.Properties.Username)) {
return
}
if err := publish(pmh.connectTopic, ConnectMessage{
ClientID: cl.ID,
Username: string(cl.Properties.Username),
Timestamp: time.Now(),
Connected: true,
}); err != nil {
pmh.Log.Err(err).Msg("")
}
}
func (pmh *PubsubMessagingHook) OnSessionEstablished(cl *mqtt.Client, pk packets.Packet) {
if pmh.connectTopic == 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.Err(err).Msg("")
}
}
func (pmh *PubsubMessagingHook) OnDisconnect(cl *mqtt.Client, connect_err error, expire bool) {
if pmh.connectTopic == nil {
return
}
if !pmh.checkAllowed(string(cl.Properties.Username)) {
return
}
if err := publish(pmh.connectTopic, ConnectMessage{
ClientID: cl.ID,
Username: string(cl.Properties.Username),
Timestamp: time.Now(),
Connected: false,
}); err != nil {
pmh.Log.Err(err).Msg("")
}
}
func (pmh *PubsubMessagingHook) OnPublished(cl *mqtt.Client, pk packets.Packet) {
if pmh.publishTopic == nil {
return
}
if !pmh.checkAllowed(string(cl.Properties.Username)) {
return
}
if err := publish(pmh.publishTopic, PublishMessage{
ClientID: cl.ID,
Topic: pk.TopicName,
Payload: pk.Payload,
Timestamp: time.Now(),
}); err != nil {
pmh.Log.Err(err).Msg("")
}
}
func (pmh *PubsubMessagingHook) OnWillSent(cl *mqtt.Client, pk packets.Packet) {
if pmh.willTopic == nil {
return
}
if !pmh.checkAllowed(string(cl.Properties.Username)) {
return
}
if err := publish(pmh.willTopic, OnWillSentMessage{
ClientID: cl.ID,
Topic: pk.TopicName,
Payload: pk.Payload,
Timestamp: time.Now(),
}); err != nil {
pmh.Log.Err(err).Msg("")
}
}
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
}