-
Notifications
You must be signed in to change notification settings - Fork 0
/
server_status.go
285 lines (243 loc) · 6.57 KB
/
server_status.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
package websocket
import (
"runtime"
"strings"
"time"
"github.com/gin-gonic/gin"
"github.com/kyaxcorp/go-helper/info"
)
type ClientDetails struct {
ConnectionID int64
ClientIP string
RemoteIP string
RequestPath string
ConnectedAt time.Time
ConnectedSeconds int64
UserID string
DeviceID string
}
type ClientsStatus struct {
NrOfClients int64
Clients map[int64]ClientDetails
}
type FullStatus struct {
Name string
ListeningAddresses []string
ListeningAddressesSSL []string
CurrentConnectionID uint64
NrOfClients uint
Hubs []HubStatus
SystemStatus info.SystemStatus
}
type SystemStatus struct {
SystemStatus info.SystemStatus
}
type NrOfClientsStatus struct {
CurrentConnectionID uint64
NrOfClients uint
}
type HubsStatus struct {
Hubs []HubStatus
}
type Status struct {
Name string
ListeningAddresses []string
ListeningAddressesSSL []string
CurrentConnectionID uint64
NrOfClients uint
}
func (s *FullStatus) Collect() {
}
func (s *Server) Status(onCollected func(status FullStatus)) {
go func() {
status := FullStatus{
Name: "",
ListeningAddresses: s.ListeningAddresses,
ListeningAddressesSSL: s.ListeningAddressesSSL,
CurrentConnectionID: s.connectionID.Get(),
NrOfClients: s.GetNrOfClients(),
SystemStatus: info.GetSystemStatus(),
Hubs: nil,
}
if onCollected != nil {
onCollected(status)
}
}()
}
func (s *Server) StatusSystemStatus(onCollected func(status SystemStatus)) {
go func() {
status := SystemStatus{
SystemStatus: info.GetSystemStatus(),
}
if onCollected != nil {
onCollected(status)
}
}()
}
func (s *Server) ServerStatus(onCollected func(status Status)) {
go func() {
status := Status{
Name: "",
ListeningAddresses: s.ListeningAddresses,
ListeningAddressesSSL: s.ListeningAddressesSSL,
CurrentConnectionID: s.connectionID.Get(),
NrOfClients: s.GetNrOfClients(),
}
if onCollected != nil {
onCollected(status)
}
}()
}
func (s *Server) StatusNrOfClients(onCollected func(status NrOfClientsStatus)) {
go func() {
status := NrOfClientsStatus{
CurrentConnectionID: s.connectionID.Get(),
NrOfClients: s.GetNrOfClients(),
}
if onCollected != nil {
onCollected(status)
}
}()
}
func (s *Server) Stack(onCollected func(stack string)) {
go func() {
var data []byte
runtime.Stack(data, true)
if onCollected != nil {
onCollected(string(data))
}
}()
}
func (s *Server) ClientsStatus(onCollected func(clients ClientsStatus)) {
go func() {
/*
IP
Device ID
Connected Time
*/
now := time.Now()
currentClients := s.GetClientsOrderedByConnectionID()
var cls = make(map[int64]ClientDetails)
for _, c := range currentClients {
cls[int64(c.connectionID)] = ClientDetails{
ConnectionID: int64(c.connectionID),
ClientIP: c.GetIPAddress(),
RemoteIP: c.GetRemoteIP(),
RequestPath: c.GetRequestPath(),
ConnectedAt: c.connectTime,
ConnectedSeconds: now.Unix() - c.connectTime.Unix(),
UserID: c.GetUserID(),
DeviceID: c.GetDeviceID(),
}
}
clientsStatus := ClientsStatus{
NrOfClients: int64(len(cls)),
Clients: cls,
}
if onCollected != nil {
onCollected(clientsStatus)
}
}()
}
func (s *Server) StatusHubs(onCollected func(status HubsStatus)) {
go func() {
status := HubsStatus{
Hubs: nil,
}
if onCollected != nil {
onCollected(status)
}
}()
}
func (s *Server) startServerStatus() *Server {
// TODO: add authentication details
/*
TODO: create a group
1. add different listeners for specific statuses
2. add clients
3. add hubs
4. different detailed info...
*/
// This function it's being called when Accessing through Http Method!!
getStatus := func(context *gin.Context) {
// Creating a channel for awaiting a response from a goroutine
awaitStatus := make(chan interface{})
// Calling the status function, which returns us a FullStatus Object! This object we afterwards convert to JSON
exploded := strings.Split(context.Request.RequestURI, "/")
switch exploded[len(exploded)-1] {
case "server":
s.ServerStatus(func(status Status) {
// We have received the status, and we return through channel the response!
awaitStatus <- status
})
case "system_status":
s.StatusSystemStatus(func(status SystemStatus) {
// We have received the status, and we return through channel the response!
awaitStatus <- status
})
case "hubs":
s.StatusHubs(func(status HubsStatus) {
// We have received the status, and we return through channel the response!
awaitStatus <- status
})
case "nr_of_clients":
s.StatusNrOfClients(func(status NrOfClientsStatus) {
// We have received the status, and we return through channel the response!
awaitStatus <- status
})
case "stack":
s.Stack(func(stack string) {
// We have received the status, and we return through channel the response!
awaitStatus <- stack
})
case "clients":
s.ClientsStatus(func(clientsStatus ClientsStatus) {
// We have received the status, and we return through channel the response!
awaitStatus <- clientsStatus
})
default:
s.Status(func(status FullStatus) {
// We have received the status, and we return through channel the response!
awaitStatus <- status
})
}
//log.Println(context.Request.RequestURI)
// Here we receive the status
status := <-awaitStatus
// We are sending the response to the client!
context.IndentedJSON(200, status)
}
authorized := s.WSServer.Group("/", gin.BasicAuth(gin.Accounts{
s.statusUsername: s.statusPassword,
}))
serverStatus := authorized.Group("/server_status")
{
serverStatus.GET("/", getStatus)
serverStatus.GET("/server", getStatus)
serverStatus.GET("/stack", getStatus)
serverStatus.GET("/hubs", getStatus)
serverStatus.GET("/nr_of_clients", getStatus)
serverStatus.GET("/clients", getStatus)
serverStatus.GET("/system_status", getStatus)
}
return s
}
func (s *Server) SetStatusCredentials(username string, password string) *Server {
s.statusUsername = username
s.statusPassword = password
return s
}
func (s *Server) stopServerStatus() *Server {
// TODO: remove from route!
return s
}
func (s *Server) EnableServerStatus() *Server {
s.enableServerStatus.Set(true)
s.startServerStatus()
return s
}
func (s *Server) DisableServerStatus() *Server {
s.enableServerStatus.Set(false)
s.stopServerStatus()
return s
}