-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbridge_hooks.go
316 lines (271 loc) · 7.5 KB
/
bridge_hooks.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
package bridge
import (
"errors"
"fmt"
"sync"
"sync/atomic"
"go.uber.org/zap"
)
const (
SetOptions byte = iota
OnMessageReceived
OnSessionCreated
OnSessionResumed
OnSessionSuspended
OnSessionDisconnected
StoredSessions
)
var (
// ErrInvalidConfigType indicates a different Type of config value was expected to what was received.
ErrInvalidConfigType = errors.New("invalid config type provided")
)
// HookLoadConfig contains the hook and configuration as loaded from a configuration (usually file).
type HookLoadConfig struct {
Hook BridgeHook
Config any
}
// BridgeHook defines the interface for bridge hooks
type BridgeHook interface {
// ID returns the unique identifier for this hook
ID() string
// Init initializes the hook with the provided configuration
Init(config any) error
// Stop gracefully stops the hook
Stop() error
// Provides indicates whether this hook provides the specified functionality
Provides(b byte) bool
// SetOpts is called by the server to propagate internal values
SetOpts(l *zap.Logger, o *HookOptions)
// OnMessageReceived processes incoming messages
OnMessageReceived(msg []byte) []byte
// OnSessionCreated is called when a new session is created
OnSessionCreated(session *SessionInfo) error
// OnSessionResumed is called when a session is resumed
OnSessionResumed(session *SessionInfo) error
// OnSessionSuspended is called when a session is suspended
OnSessionSuspended(session *SessionInfo) error
// OnSessionDisconnected is called when a session is disconnected
OnSessionDisconnected(session *SessionInfo) error
// StoredSessions returns stored sessions
StoredSessions() ([]SessionInfo, error)
}
// HookOptions contains values which are inherited from the server on initialisation.
type HookOptions struct {
// Add any server capabilities or options needed by hooks
}
// BridgeHooks manages a collection of hooks
type BridgeHooks struct {
logger *zap.Logger
internal atomic.Value // []BridgeHook
wg sync.WaitGroup
qty int64
sync.Mutex
}
// Add adds a new hook to the collection
func (h *BridgeHooks) Add(hook BridgeHook, config any) error {
h.Lock()
defer h.Unlock()
if err := hook.Init(config); err != nil {
return fmt.Errorf("failed to initialize hook: %v", err)
}
i, ok := h.internal.Load().([]BridgeHook)
if !ok {
i = []BridgeHook{}
}
i = append(i, hook)
h.internal.Store(i)
atomic.AddInt64(&h.qty, 1)
h.wg.Add(1)
return nil
}
// GetAll returns a slice of all the hooks.
func (h *BridgeHooks) GetAll() []BridgeHook {
i, ok := h.internal.Load().([]BridgeHook)
if !ok {
return []BridgeHook{}
}
return i
}
// Stop stops all hooks
func (h *BridgeHooks) Stop() {
go func() {
for _, hook := range h.GetAll() {
h.logger.Info("stopping hook", zap.String("hook", hook.ID()))
if err := hook.Stop(); err != nil {
h.logger.Error("Failed to stop hook",
zap.String("hook", hook.ID()),
zap.Error(err))
}
h.wg.Done()
}
}()
h.wg.Wait()
}
// Len returns the number of hooks added.
func (h *BridgeHooks) Len() int64 {
return atomic.LoadInt64(&h.qty)
}
// Provides returns true if any one hook provides any of the requested hook methods.
func (h *BridgeHooks) Provides(b ...byte) bool {
for _, hook := range h.GetAll() {
for _, hb := range b {
if hook.Provides(hb) {
return true
}
}
}
return false
}
// OnMessageReceived processes a message through all hooks
func (h *BridgeHooks) OnMessageReceived(msg []byte) []byte {
if h == nil {
return msg
}
result := msg
for _, hook := range h.GetAll() {
if hook.Provides(OnMessageReceived) {
result = hook.OnMessageReceived(result)
}
}
return result
}
// OnSessionCreated calls the OnSessionCreated hook for all hooks that provide it
func (h *BridgeHooks) OnSessionCreated(session *SessionInfo) error {
if h == nil {
return nil
}
for _, hook := range h.GetAll() {
if hook.Provides(OnSessionCreated) {
if err := hook.OnSessionCreated(session); err != nil {
h.logger.Error("Failed to execute OnSessionCreated hook",
zap.String("hook", hook.ID()),
zap.Error(err))
return err
}
}
}
return nil
}
// OnSessionResumed calls the OnSessionResumed hook for all hooks that provide it
func (h *BridgeHooks) OnSessionResumed(session *SessionInfo) error {
if h == nil {
return nil
}
for _, hook := range h.GetAll() {
if hook.Provides(OnSessionResumed) {
if err := hook.OnSessionResumed(session); err != nil {
h.logger.Error("Failed to execute OnSessionResumed hook",
zap.String("hook", hook.ID()),
zap.Error(err))
return err
}
}
}
return nil
}
// OnSessionSuspended calls the OnSessionSuspended hook for all hooks that provide it
func (h *BridgeHooks) OnSessionSuspended(session *SessionInfo) error {
if h == nil {
return nil
}
for _, hook := range h.GetAll() {
if hook.Provides(OnSessionSuspended) {
if err := hook.OnSessionSuspended(session); err != nil {
h.logger.Error("Failed to execute OnSessionSuspended hook",
zap.String("hook", hook.ID()),
zap.Error(err))
return err
}
}
}
return nil
}
// OnSessionDisconnected calls the OnSessionDisconnected hook for all hooks that provide it
func (h *BridgeHooks) OnSessionDisconnected(session *SessionInfo) error {
if h == nil {
return nil
}
for _, hook := range h.GetAll() {
if hook.Provides(OnSessionDisconnected) {
if err := hook.OnSessionDisconnected(session); err != nil {
h.logger.Error("Failed to execute OnSessionDisconnected hook",
zap.String("hook", hook.ID()),
zap.Error(err))
return err
}
}
}
return nil
}
// StoredSessions calls the StoredSessions hook for all hooks that provide it
func (h *BridgeHooks) StoredSessions() ([]SessionInfo, error) {
if h == nil {
return nil, nil
}
for _, hook := range h.GetAll() {
if hook.Provides(StoredSessions) {
sessions, err := hook.StoredSessions()
if err != nil {
h.logger.Error("Failed to get stored sessions",
zap.String("hook", hook.ID()),
zap.Error(err))
return nil, err
}
if len(sessions) > 0 {
return sessions, nil
}
}
}
return nil, nil
}
// BridgeHookBase provides a set of default methods for each hook
type BridgeHookBase struct {
BridgeHook
Log *zap.Logger
Opts *HookOptions
}
// ID returns the ID of the hook
func (h *BridgeHookBase) ID() string {
return "base"
}
// Provides indicates which methods a hook provides
func (h *BridgeHookBase) Provides(b byte) bool {
return false
}
// Init initializes the hook
func (h *BridgeHookBase) Init(config any) error {
return nil
}
// SetOpts sets the options for the hook
func (h *BridgeHookBase) SetOpts(l *zap.Logger, opts *HookOptions) {
h.Log = l
h.Opts = opts
}
// Stop stops the hook
func (h *BridgeHookBase) Stop() error {
return nil
}
// OnMessageReceived processes incoming messages
func (h *BridgeHookBase) OnMessageReceived(msg []byte) []byte {
return msg
}
// OnSessionCreated is called when a new session is created
func (h *BridgeHookBase) OnSessionCreated(session *SessionInfo) error {
return nil
}
// OnSessionResumed is called when a session is resumed
func (h *BridgeHookBase) OnSessionResumed(session *SessionInfo) error {
return nil
}
// OnSessionSuspended is called when a session is suspended
func (h *BridgeHookBase) OnSessionSuspended(session *SessionInfo) error {
return nil
}
// OnSessionDisconnected is called when a session is disconnected
func (h *BridgeHookBase) OnSessionDisconnected(session *SessionInfo) error {
return nil
}
// StoredSessions returns stored sessions
func (h *BridgeHookBase) StoredSessions() ([]SessionInfo, error) {
return nil, nil
}