forked from dunglas/mercure
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hub.go
275 lines (222 loc) · 5.59 KB
/
hub.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
// Package mercure helps implementing the Mercure protocol (https://mercure.rocks) in Go projects.
// It provides an implementation of a Mercure hub as a HTTP handler.
package mercure
import (
"fmt"
"net/http"
"time"
"github.com/form3tech-oss/jwt-go"
"github.com/spf13/viper"
"go.uber.org/zap"
)
// Option instances allow to configure the library.
type Option func(h *opt) error
// WithAnonymous allows subscribers with no valid JWT.
func WithAnonymous() Option {
return func(o *opt) error {
o.anonymous = true
return nil
}
}
// WithDebug enables the debug mode.
func WithDebug() Option {
return func(o *opt) error {
o.debug = true
return nil
}
}
// WithDemo enables the demo.
func WithDemo(uiPath string) Option {
return func(o *opt) error {
if uiPath == "" {
o.uiPath = "public/"
} else {
o.uiPath = uiPath
}
return nil
}
}
// WithMetrics enables collection of Prometheus metrics.
func WithMetrics(m Metrics) Option {
return func(o *opt) error {
o.metrics = m
return nil
}
}
// WithSubscriptions allows to dispatch updates when subscriptions are created or terminated.
func WithSubscriptions() Option {
return func(o *opt) error {
o.subscriptions = true
return nil
}
}
// WithLogger sets the logger to use.
func WithLogger(logger Logger) Option {
return func(o *opt) error {
o.logger = logger
return nil
}
}
// WithWriteTimeout sets maximum duration before closing the connection, defaults to 600s, set to 0 to disable.
func WithWriteTimeout(timeout time.Duration) Option {
return func(o *opt) error {
o.writeTimeout = timeout
return nil
}
}
// WithDispatchTimeout sets maximum dispatch duration of an update.
func WithDispatchTimeout(timeout time.Duration) Option {
return func(o *opt) error {
o.dispatchTimeout = timeout
return nil
}
}
// WithHeartbeat sets the frequency of the heartbeat, disabled by default.
func WithHeartbeat(interval time.Duration) Option {
return func(o *opt) error {
o.heartbeat = interval
return nil
}
}
// WithPublisherJWT sets the JWT key and the signing algorithm to use for publishers.
func WithPublisherJWT(key []byte, alg string) Option {
return func(o *opt) error {
sm := jwt.GetSigningMethod(alg)
switch sm.(type) {
case *jwt.SigningMethodHMAC:
case *jwt.SigningMethodRSA:
default:
return ErrUnexpectedSigningMethod
}
o.publisherJWT = &jwtConfig{key, sm}
return nil
}
}
// WithSubscriberJWT sets the JWT key and the signing algorithm to use for subscribers.
func WithSubscriberJWT(key []byte, alg string) Option {
return func(o *opt) error {
sm := jwt.GetSigningMethod(alg)
switch sm.(type) {
case *jwt.SigningMethodHMAC:
case *jwt.SigningMethodRSA:
default:
return ErrUnexpectedSigningMethod
}
o.subscriberJWT = &jwtConfig{key, sm}
return nil
}
}
// WithAllowedHosts sets the allowed hosts.
func WithAllowedHosts(hosts []string) Option {
return func(o *opt) error {
o.allowedHosts = hosts
return nil
}
}
// WithPublishOrigins sets the origins allowed to publish updates.
func WithPublishOrigins(origins []string) Option {
return func(o *opt) error {
o.publishOrigins = origins
return nil
}
}
// WithCORSOrigins sets the allowed CORS origins.
func WithCORSOrigins(origins []string) Option {
return func(o *opt) error {
o.corsOrigins = origins
return nil
}
}
// WithTransport sets the transport to use.
func WithTransport(t Transport) Option {
return func(o *opt) error {
o.transport = t
return nil
}
}
// WithTopicSelectorStore sets the TopicSelectorStore instance to use.
func WithTopicSelectorStore(tss *TopicSelectorStore) Option {
return func(o *opt) error {
o.topicSelectorStore = tss
return nil
}
}
type jwtConfig struct {
key []byte
signingMethod jwt.SigningMethod
}
// opt contains the available options.
//
// If you change this, also update the Caddy module and the documentation.
type opt struct {
transport Transport
topicSelectorStore *TopicSelectorStore
anonymous bool
debug bool
subscriptions bool
uiPath string
logger Logger
writeTimeout time.Duration
dispatchTimeout time.Duration
heartbeat time.Duration
publisherJWT *jwtConfig
subscriberJWT *jwtConfig
metrics Metrics
allowedHosts []string
publishOrigins []string
corsOrigins []string
}
// Hub stores channels with clients currently subscribed and allows to dispatch updates.
type Hub struct {
*opt
handler http.Handler
// Deprecated: use the Caddy server module or the standalone library instead.
config *viper.Viper
server *http.Server
metricsServer *http.Server
}
// NewHub creates a new Hub instance.
func NewHub(options ...Option) (*Hub, error) {
opt := &opt{writeTimeout: 600 * time.Second}
for _, o := range options {
if err := o(opt); err != nil {
return nil, err
}
}
if opt.logger == nil {
var (
l Logger
err error
)
if opt.debug {
l, err = zap.NewDevelopment()
} else {
l, err = zap.NewProduction()
}
if err != nil {
return nil, fmt.Errorf("error when creating logger: %w", err)
}
opt.logger = l
}
if opt.transport == nil {
t, _ := NewLocalTransport(nil, nil, nil)
opt.transport = t
}
if opt.topicSelectorStore == nil {
tss, err := NewTopicSelectorStore(TopicSelectorStoreDefaultCacheNumCounters, TopicSelectorStoreCacheMaxCost)
if err != nil {
return nil, err
}
opt.topicSelectorStore = tss
}
if opt.metrics == nil {
opt.metrics = NopMetrics{}
}
h := &Hub{opt: opt}
h.initHandler()
return h, nil
}
// Stop stops the hub.
func (h *Hub) Stop() error {
return h.transport.Close()
}