forked from dunglas/mercure
-
Notifications
You must be signed in to change notification settings - Fork 0
/
publish.go
70 lines (55 loc) · 1.79 KB
/
publish.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
package mercure
import (
"io"
"net/http"
"strconv"
"go.uber.org/zap"
)
// PublishHandler allows publisher to broadcast updates to all subscribers.
func (h *Hub) PublishHandler(w http.ResponseWriter, r *http.Request) {
var claims *claims
if h.publisherJWT != nil {
var err error
claims, err = authorize(r, h.publisherJWT, h.publishOrigins)
if err != nil || claims == nil || claims.Mercure.Publish == nil {
http.Error(w, http.StatusText(http.StatusUnauthorized), http.StatusUnauthorized)
h.logger.Info("Topic selectors not matched, not provided or authorization error", zap.String("remote_addr", r.RemoteAddr), zap.Error(err))
return
}
}
if r.ParseForm() != nil {
http.Error(w, http.StatusText(http.StatusBadRequest), http.StatusBadRequest)
return
}
topics := r.PostForm["topic"]
if len(topics) == 0 {
http.Error(w, "Missing \"topic\" parameter", http.StatusBadRequest)
return
}
var retry uint64
if retryString := r.PostForm.Get("retry"); retryString != "" {
var err error
if retry, err = strconv.ParseUint(retryString, 10, 64); err != nil {
http.Error(w, "Invalid \"retry\" parameter", http.StatusBadRequest)
return
}
}
private := len(r.PostForm["private"]) != 0
if private && !canDispatch(h.topicSelectorStore, topics, claims.Mercure.Publish) {
http.Error(w, http.StatusText(http.StatusUnauthorized), http.StatusUnauthorized)
return
}
u := &Update{
Topics: topics,
Private: private,
Debug: h.debug,
Event: Event{r.PostForm.Get("data"), r.PostForm.Get("id"), r.PostForm.Get("type"), retry},
}
// Broadcast the update
if err := h.transport.Dispatch(u); err != nil {
panic(err)
}
io.WriteString(w, u.ID)
h.logger.Info("Update published", zap.Object("update", u), zap.String("remote_addr", r.RemoteAddr))
h.metrics.UpdatePublished(u)
}