-
Notifications
You must be signed in to change notification settings - Fork 2
/
tools.go
221 lines (184 loc) · 4.24 KB
/
tools.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
package main
import (
"reflect"
"sort"
"strings"
"time"
"github.com/gorilla/websocket"
)
const helloMessage = "HELLO"
func readMessage(
connection *websocket.Conn,
isDisconnected chan bool,
incomingMessages chan string,
) {
for {
messageType, message, err := connection.ReadMessage()
if err != nil {
switch err.(type) {
case *websocket.CloseError:
logger.Debugf(
"handle CLOSE frame, client %s will be disconnected",
connection.RemoteAddr().String(),
)
isDisconnected <- true
default:
logger.Errorf(
"unexpected error type %s with message %s",
reflect.TypeOf(err).String(),
err.Error(),
)
isDisconnected <- true
}
return
}
switch messageType {
case websocket.PingMessage, websocket.PongMessage:
logger.Debugf("got PING-PONG frame, ignore it")
continue
case websocket.TextMessage:
incomingMessages <- string(message)
default:
logger.Errorf(
"unexpected message type %s ",
messageType,
)
}
}
}
func authenticateUser(
incomingMessages chan string,
isAuthenticated chan string,
terminateAuthentication chan bool,
) {
isAlreadyAuthenticated := false
for {
select {
case <-terminateAuthentication:
logger.Debug(
"authentication process terminated",
)
return
case incomingMessage := <-incomingMessages:
logger.Debugf(
"got new message from client: %s",
incomingMessage,
)
if strings.HasPrefix(incomingMessage, helloMessage) {
if isAlreadyAuthenticated {
logger.Errorf(
"session already authenticated",
)
continue
}
tokens := strings.Fields(incomingMessage)
if len(tokens) != 2 {
logger.Errorf(
"unexpected HELLO message: %s",
incomingMessage,
)
continue
}
authToken := strings.TrimSpace(tokens[1])
logger.Debugf(
"user with auth token %s successfully authenticated",
authToken,
)
isAuthenticated <- authToken
isAlreadyAuthenticated = true
continue
}
}
}
}
func keepAlive(
connection *websocket.Conn,
timeout time.Duration,
terminateKeepAlive chan bool,
sync chan bool,
) {
lastResponse := time.Now()
keepaliveStartTime := lastResponse
connection.SetPongHandler(func(msg string) error {
logger.Debugf(
"handle PONG frame from %s with message %s",
connection.RemoteAddr().String(),
msg,
)
lastResponse = time.Now()
return nil
})
for {
select {
case <-terminateKeepAlive:
logger.Debugf(
"keepalive process of %s terminated",
connection.RemoteAddr().String(),
)
return
default:
connection.SetReadDeadline(time.Now().Add(timeout))
connection.SetWriteDeadline(time.Now().Add(timeout))
logger.Debugf(
"sending PING frame to client %s",
connection.RemoteAddr().String(),
)
sync <- true
err := connection.WriteMessage(
websocket.PingMessage,
[]byte("ping"),
)
<-sync
if err != nil {
logger.Errorf(
"unable to write PING frame to %s, reason %s",
connection.RemoteAddr().String(),
err.Error(),
)
return
}
time.Sleep(timeout / 2)
if time.Now().Sub(lastResponse) > timeout {
logger.Errorf(
"ping timeout exceeded from %s, "+
"keepalive session length %s",
connection.RemoteAddr().String(),
time.Now().Sub(keepaliveStartTime).String(),
)
return
}
}
}
}
type sortedSessions struct {
AuthTokens []string
Sessions []int
}
func newSortedSessions(
rawSessions map[string]int,
) *sortedSessions {
sessions := &sortedSessions{
AuthTokens: make([]string, 0, len(rawSessions)),
Sessions: make([]int, 0, len(rawSessions)),
}
for authToken, sess := range rawSessions {
sessions.AuthTokens = append(sessions.AuthTokens, authToken)
sessions.Sessions = append(sessions.Sessions, sess)
}
return sessions
}
func (sessions *sortedSessions) Sort() {
sort.Sort(sessions)
}
func (sessions *sortedSessions) Len() int {
return len(sessions.Sessions)
}
func (sessions *sortedSessions) Less(i, j int) bool {
return sessions.Sessions[i] < sessions.Sessions[j]
}
func (sessions *sortedSessions) Swap(i, j int) {
sessions.Sessions[i], sessions.Sessions[j] =
sessions.Sessions[j], sessions.Sessions[i]
sessions.AuthTokens[i], sessions.AuthTokens[j] =
sessions.AuthTokens[j], sessions.AuthTokens[i]
}