-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconnection.go
271 lines (222 loc) · 7.09 KB
/
connection.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
package socketify
import (
"encoding/json"
"errors"
"fmt"
"github.com/gorilla/websocket"
"io"
"sync"
"time"
)
type Connection struct {
*writer
id string
server *Server
ws *websocket.Conn
internalUpdates chan []byte
handlers map[string]mapper
rawHandler func(message []byte)
handlersLocker sync.Mutex
closed chan bool
attributes map[string]interface{}
attributesLocker sync.Mutex
onClose func()
keepAlive time.Duration
middleware func(message []byte) error
middlewareForUpdate func(updateType string, data json.RawMessage) error
clientErrors chan UpdateError
encryptionFields *encryptionFields
}
func newConnection(server *Server, ws *websocket.Conn, clientID string, encryptionFields *encryptionFields) (c *Connection) {
wr := make(chan messageType)
c = &Connection{
id: clientID,
server: server,
ws: ws,
writer: newWriter(wr, server.opts.logger),
handlers: map[string]mapper{},
closed: make(chan bool),
attributes: map[string]interface{}{},
internalUpdates: make(chan []byte),
clientErrors: make(chan UpdateError),
encryptionFields: encryptionFields,
}
go c.processWriter(ws)
return
}
func (c *Connection) SetKeepAliveDuration(keepAlive time.Duration) {
c.keepAlive = keepAlive
}
func (c *Connection) SetMiddleware(middleware func(message []byte) error) {
c.middleware = middleware
}
func (c *Connection) SetUpdateTypeMiddleware(middleware func(updateType string, data json.RawMessage) error) {
c.middlewareForUpdate = middleware
}
func (c *Connection) ID() string {
return c.id
}
func (c *Connection) SetOnClose(onClose func()) {
c.onClose = onClose
}
func (c *Connection) SetAttribute(key string, val interface{}) {
c.attributesLocker.Lock()
defer c.attributesLocker.Unlock()
c.attributes[key] = val
}
func (c *Connection) GetAttribute(key string) (val interface{}, exists bool) {
c.attributesLocker.Lock()
defer c.attributesLocker.Unlock()
val, exists = c.attributes[key]
return
}
func (c *Connection) Errors() <-chan UpdateError {
return c.clientErrors
}
func (c *Connection) ProcessUpdates() error {
errChan := make(chan error)
go c.handleIncomingUpdates(errChan)
select {
case err := <-errChan:
go c.close()
return err
case <-c.closed:
return errors.New("connection_closed")
}
}
func (c *Connection) InternalUpdates() <-chan []byte {
return c.internalUpdates
}
// HandleRawUpdate registers a default handler for update
// Note: Add a raw handler if you don't want to follow the API convention {"type": "", "data": {}}
func (c *Connection) HandleRawUpdate(handler func(message []byte)) {
c.handlersLocker.Lock()
defer c.handlersLocker.Unlock()
c.rawHandler = handler
}
// HandleUpdate registers a default handler for updateType
// For the second argument you should pass your handler inside DataMapper as follows: socketify.DataMapper[T](handler)
// If the input is going to be empty (update.data == nil) then you can pass socketify.EmptyInput as input
// Care: If you use this method for an updateType, you won't receive the respected update in your listener
func (c *Connection) HandleUpdate(updateType string, handler mapper) {
c.handlersLocker.Lock()
defer c.handlersLocker.Unlock()
c.handlers[updateType] = handler
}
func (c *Connection) Server() *Server {
return c.server
}
func (c *Connection) NextReader() (messageType int, r io.Reader, err error) {
return c.ws.NextReader()
}
func (c *Connection) NextWriterBinary() (r io.Writer, err error) {
return c.ws.NextWriter(websocket.BinaryMessage)
}
func (c *Connection) NextWriterText() (r io.Writer, err error) {
return c.ws.NextWriter(websocket.TextMessage)
}
func (c *Connection) NextWriterCloseMessage() (r io.Writer, err error) {
return c.ws.NextWriter(websocket.CloseMessage)
}
func (c *Connection) Close() error {
return c.close()
}
func (c *Connection) reportError(update []byte, err error, extra ...string) {
go func() {
c.clientErrors <- newUpdateError(update, err, extra...)
}()
}
func (c *Connection) handleIncomingUpdates(errChannel chan error) {
var (
message []byte
err error
)
if c.keepAlive > 0 {
c.ws.SetReadDeadline(time.Now().Add(c.keepAlive))
c.ws.SetPingHandler(func(d string) error {
c.ws.SetReadDeadline(time.Now().Add(c.keepAlive))
return c.ws.WriteMessage(websocket.PongMessage, nil)
})
c.ws.SetPongHandler(func(d string) error {
return c.ws.SetReadDeadline(time.Now().Add(c.keepAlive))
})
go c.ping()
}
for {
_, message, err = c.ws.ReadMessage()
if err != nil {
c.server.opts.logger.Error(fmt.Sprintf("Error Reading Message: %s. RemoteAddr: %s", err, c.ws.RemoteAddr().String()))
errChannel <- err
c.reportError(message, err)
return
}
if c.middleware != nil {
if err = c.middleware(message); err != nil {
c.server.opts.logger.Error(fmt.Sprintf("Error From Middleware: %s. RemoteAddr: %s", err, c.ws.RemoteAddr().String()))
c.reportError(message, err)
continue
}
}
if rawHandler := c.getRawHandler(); rawHandler != nil {
rawHandler(message)
continue
}
var update *Update
jsonErr := json.Unmarshal(message, &update)
if jsonErr != nil {
c.server.opts.logger.Error(fmt.Sprintf("Error Unmarshalling Request: %s. Data: %s. RemoteAddr: %s", jsonErr, message, c.ws.RemoteAddr().String()))
c.reportError(message, jsonErr)
continue
}
if update.Type == "" {
c.server.opts.logger.Error(fmt.Sprintf("Error Due to Empty Update Type. Data: %s. RemoteAddr: %s", message, c.ws.RemoteAddr().String()))
c.reportError(message, errors.New("empty update type"), update.Extra)
continue
}
if c.middlewareForUpdate != nil {
if err := c.middlewareForUpdate(update.Type, update.Data); err != nil {
c.server.opts.logger.Error(fmt.Sprintf("Error From Middleware: %s. RemoteAddr: %s", err, c.ws.RemoteAddr().String()))
c.reportError(message, err, update.Extra)
continue
}
}
// Check if there's a default handler registered for the updateType and call it
// If any handlers found, the update will be processed by that handler and won't be passed to the updates channel
if handler := c.getHandlerByType(update.Type); handler != nil {
err = handler.Handle(update.Data)
if err != nil {
c.server.opts.logger.Error(fmt.Sprintf("Error handling event: %s : %s from %s", string(message), err, c.ws.RemoteAddr().String()))
c.reportError(message, err, update.Extra)
}
continue
}
}
}
func (c *Connection) getRawHandler() func(message []byte) {
c.handlersLocker.Lock()
defer c.handlersLocker.Unlock()
if handler := c.rawHandler; handler != nil {
return handler
}
return nil
}
func (c *Connection) getHandlerByType(t string) mapper {
c.handlersLocker.Lock()
defer c.handlersLocker.Unlock()
if handler := c.handlers[t]; handler != nil {
return handler
}
return nil
}
func (c *Connection) close() error {
defer func() {
c.closed <- true
}()
if c.server.storage != nil {
c.server.storage.removeClientByID(c.id)
}
if c.onClose != nil {
go c.onClose()
}
return c.ws.Close()
}