-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathwebsocket.go
166 lines (139 loc) · 4.64 KB
/
websocket.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
// Copyright 2020 dfuse Platform Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package eosws
import (
"net/http"
"os"
"sync"
"time"
"github.com/streamingfast/bstream/hub"
"github.com/streamingfast/derr"
"github.com/dfuse-io/dfuse-eosio/eosws/metrics"
pbstatedb "github.com/dfuse-io/dfuse-eosio/pb/dfuse/eosio/statedb/v1"
"github.com/streamingfast/logging"
"github.com/gorilla/websocket"
"github.com/streamingfast/dauth/authenticator"
"github.com/teris-io/shortid"
"go.uber.org/zap"
)
type WebsocketHandler struct {
http.Handler
abiGetter ABIGetter
accountGetter AccountGetter
db DB
subscriptionHub *hub.SubscriptionHub
voteTallyHub *VoteTallyHub
priceHub *PriceHub
headInfoHub *HeadInfoHub
connections int
connectionsLock sync.Mutex
stateClient pbstatedb.StateClient
irreversibleFinder IrreversibleFinder
maxStreamCount int
}
var hostname string
var shortIDGenerator *shortid.Shortid
func init() {
hostname, _ = os.Hostname()
shortIDGenerator = shortid.MustNew(1, shortid.DefaultABC, uint64(time.Now().UnixNano()))
}
func NewWebsocketHandler(
abiGetter ABIGetter,
accountGetter AccountGetter,
db DB,
subscriptionHub *hub.SubscriptionHub,
stateClient pbstatedb.StateClient,
voteTallyHub *VoteTallyHub,
headInfoHub *HeadInfoHub,
priceHub *PriceHub,
irrFinder IrreversibleFinder,
filesourceBlockRateLimit time.Duration,
maxStreamCount int,
) *WebsocketHandler {
originChecker := func(r *http.Request) bool {
if r.Header.Get("Origin") == "" {
// For now, we do not check the origin. This is easier for our user using Node.js
// to avoid having to always specify an `Origin` header. Later on, we will implement
// the origin check based on the actual token (if it's a web token) and only in those
// cases.
return true
}
return true
}
errorHandler := func(w http.ResponseWriter, r *http.Request, status int, reason error) {
ctx := r.Context()
derr.WriteError(ctx, w, "unable to upgrade WebSocket connection", WSUnableToUpgradeConnectionError(ctx, status, reason))
}
upgrader := websocket.Upgrader{
CheckOrigin: originChecker,
Error: errorHandler,
EnableCompression: true,
}
s := &WebsocketHandler{
abiGetter: abiGetter,
accountGetter: accountGetter,
db: db,
priceHub: priceHub,
subscriptionHub: subscriptionHub,
stateClient: stateClient,
voteTallyHub: voteTallyHub,
headInfoHub: headInfoHub,
irreversibleFinder: irrFinder,
maxStreamCount: maxStreamCount,
}
s.Handler = http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
ctx := r.Context()
credentials := authenticator.GetCredentials(ctx)
// r.Trailer = http.Header{
// "X-Client-ID": []string{credentials.Id},
// }
// DO NOT remove nor renamed the `ws_conn_id` parameter - mission critical for BigQuery analytics
zlogger := logging.Logger(ctx, zlog).With(zap.String("ws_conn_id", shortIDGenerator.MustGenerate()))
zlogger.Debug("handling initial WebSocket connection request")
wrappedWriter := TurnIntoStatusAwareResponseWriter(w)
c, err := upgrader.Upgrade(wrappedWriter, r, nil)
if err != nil {
// The custom errorHandler configured on the upgrader takes care of logging the error, so no need to do nothing
return
}
defer c.Close()
s.incConnectionsCounter()
defer s.decConnectionsCounter()
childCtx := logging.WithLogger(ctx, zlogger)
TrackUserEvent(childCtx, "ws_conn_start", "connection_count", s.connections)
conn := NewWSConn(s, c, credentials, filesourceBlockRateLimit, childCtx)
go conn.handleWSIncoming()
go conn.handleHeartbeats()
select {
case <-ctx.Done():
zlog.Info("context done", zap.Error(ctx.Err()))
case <-conn.Terminating():
zlog.Info("connection done", zap.Error(ctx.Err()))
}
_ = conn.conn.Close()
})
return s
}
func (s *WebsocketHandler) incConnectionsCounter() {
s.connectionsLock.Lock()
s.connections++
s.connectionsLock.Unlock()
metrics.IncCurrentConnections()
}
func (s *WebsocketHandler) decConnectionsCounter() {
s.connectionsLock.Lock()
s.connections--
s.connectionsLock.Unlock()
metrics.CurrentConnections.Dec()
}