Initial commit
This commit is contained in:
331
pkg/routing/client.go
Normal file
331
pkg/routing/client.go
Normal file
@@ -0,0 +1,331 @@
|
||||
package routing
|
||||
|
||||
import (
|
||||
"bytes"
|
||||
"net/http"
|
||||
"net/url"
|
||||
"os"
|
||||
"strings"
|
||||
"time"
|
||||
|
||||
"github.com/gorilla/websocket"
|
||||
msg "github.com/openware/rango/pkg/message"
|
||||
"github.com/openware/rango/pkg/metrics"
|
||||
"github.com/rs/zerolog/log"
|
||||
)
|
||||
|
||||
const (
|
||||
// Time allowed to write a message to the peer.
|
||||
writeWait = 10 * time.Second
|
||||
|
||||
// Time allowed to read the next pong message from the peer.
|
||||
pongWait = 60 * time.Second
|
||||
|
||||
// Send pings to peer with this period. Must be less than pongWait.
|
||||
pingPeriod = (pongWait * 9) / 10
|
||||
|
||||
// Maximum message size allowed from peer.
|
||||
maxMessageSize = 512
|
||||
)
|
||||
|
||||
var (
|
||||
newline = []byte{'\n'}
|
||||
space = []byte{' '}
|
||||
)
|
||||
|
||||
var upgrader = websocket.Upgrader{
|
||||
ReadBufferSize: 1024,
|
||||
WriteBufferSize: 1024,
|
||||
CheckOrigin: checkSameOrigin(os.Getenv("API_CORS_ORIGINS")),
|
||||
}
|
||||
|
||||
var maxBufferedMessages = 256
|
||||
|
||||
type Auth struct {
|
||||
UID string
|
||||
Role string
|
||||
}
|
||||
|
||||
// FIXME: IClient looks very wrong.
|
||||
type IClient interface {
|
||||
Send(string)
|
||||
Close()
|
||||
GetAuth() Auth
|
||||
GetSubscriptions() []string
|
||||
SubscribePublic(string)
|
||||
SubscribePrivate(string)
|
||||
UnsubscribePublic(string)
|
||||
UnsubscribePrivate(string)
|
||||
}
|
||||
|
||||
// Client is a middleman between the websocket connection and the hub.
|
||||
type Client struct {
|
||||
hub *Hub
|
||||
|
||||
// User ID if authorized
|
||||
Auth Auth
|
||||
|
||||
pubSub []string
|
||||
privSub []string
|
||||
|
||||
// The websocket connection.
|
||||
conn *websocket.Conn
|
||||
|
||||
// Buffered channel of outbound messages.
|
||||
send chan []byte
|
||||
}
|
||||
|
||||
func checkSameOrigin(origins string) func(r *http.Request) bool {
|
||||
if origins == "" {
|
||||
return func(r *http.Request) bool {
|
||||
origin := r.Header["Origin"]
|
||||
if len(origin) == 0 {
|
||||
return true
|
||||
}
|
||||
u, err := url.Parse(origin[0])
|
||||
if err != nil {
|
||||
return false
|
||||
}
|
||||
return strings.EqualFold(u.Host, r.Host)
|
||||
}
|
||||
}
|
||||
|
||||
hosts := []string{}
|
||||
|
||||
for _, o := range strings.Split(origins, ",") {
|
||||
o = strings.TrimSpace(o)
|
||||
if strings.HasPrefix(o, "http://") || strings.HasPrefix(o, "https://") {
|
||||
u, err := url.Parse(o)
|
||||
if err != nil || u.Host == "" {
|
||||
panic("Failed to parse url in API_CORS_ORIGINS: " + o)
|
||||
}
|
||||
hosts = append(hosts, u.Host)
|
||||
} else {
|
||||
hosts = append(hosts, o)
|
||||
}
|
||||
}
|
||||
|
||||
return func(r *http.Request) bool {
|
||||
origin := r.Header["Origin"]
|
||||
if len(origin) == 0 {
|
||||
return true
|
||||
}
|
||||
u, err := url.Parse(origin[0])
|
||||
if err != nil {
|
||||
return false
|
||||
}
|
||||
|
||||
for _, host := range hosts {
|
||||
if strings.EqualFold(u.Host, host) {
|
||||
return true
|
||||
}
|
||||
}
|
||||
return false
|
||||
}
|
||||
}
|
||||
|
||||
// NewClient handles websocket requests from the peer.
|
||||
func NewClient(hub *Hub, w http.ResponseWriter, r *http.Request) {
|
||||
conn, err := upgrader.Upgrade(w, r, nil)
|
||||
if err != nil {
|
||||
log.Error().Msg("Websocket upgrade failed: " + err.Error())
|
||||
return
|
||||
}
|
||||
client := &Client{
|
||||
hub: hub,
|
||||
conn: conn,
|
||||
send: make(chan []byte, maxBufferedMessages),
|
||||
Auth: Auth{
|
||||
UID: r.Header.Get("JwtUID"),
|
||||
Role: r.Header.Get("JwtRole"),
|
||||
},
|
||||
pubSub: []string{},
|
||||
privSub: []string{},
|
||||
}
|
||||
|
||||
if client.Auth.UID == "" {
|
||||
log.Info().Msgf("New anonymous connection")
|
||||
} else {
|
||||
log.Info().Msgf("New authenticated connection: %s", client.Auth.UID)
|
||||
}
|
||||
|
||||
hub.handleSubscribe(&Request{
|
||||
client: client,
|
||||
Request: msg.Request{
|
||||
Streams: parseStreamsFromURI(r.RequestURI),
|
||||
},
|
||||
})
|
||||
|
||||
metrics.RecordHubClientNew()
|
||||
|
||||
// Allow collection of memory referenced by the caller by doing all work in
|
||||
// new goroutines.
|
||||
go client.write()
|
||||
go client.read()
|
||||
}
|
||||
|
||||
func (c *Client) Send(s string) {
|
||||
if len(c.send) == maxBufferedMessages {
|
||||
log.Warn().Msg("Closing slow websocket connection")
|
||||
c.conn.Close()
|
||||
} else {
|
||||
c.send <- []byte(s)
|
||||
}
|
||||
}
|
||||
|
||||
func (c *Client) Close() {
|
||||
close(c.send)
|
||||
}
|
||||
|
||||
func (c *Client) GetAuth() Auth {
|
||||
return c.Auth
|
||||
}
|
||||
|
||||
func (c *Client) GetSubscriptions() []string {
|
||||
return append(c.pubSub, c.privSub...)
|
||||
}
|
||||
|
||||
func (c *Client) SubscribePublic(s string) {
|
||||
if !contains(c.pubSub, s) {
|
||||
c.pubSub = append(c.pubSub, s)
|
||||
}
|
||||
}
|
||||
|
||||
func (c *Client) SubscribePrivate(s string) {
|
||||
if !contains(c.privSub, s) {
|
||||
c.privSub = append(c.privSub, s)
|
||||
}
|
||||
}
|
||||
|
||||
func (c *Client) UnsubscribePublic(s string) {
|
||||
l := make([]string, len(c.pubSub)-1)
|
||||
i := 0
|
||||
for _, el := range c.pubSub {
|
||||
if s != el {
|
||||
l[i] = el
|
||||
i++
|
||||
}
|
||||
}
|
||||
c.pubSub = l
|
||||
}
|
||||
|
||||
func (c *Client) UnsubscribePrivate(s string) {
|
||||
l := make([]string, len(c.privSub)-1)
|
||||
i := 0
|
||||
for _, el := range c.privSub {
|
||||
if s != el {
|
||||
l[i] = el
|
||||
i++
|
||||
}
|
||||
}
|
||||
c.privSub = l
|
||||
}
|
||||
|
||||
func parseStreamsFromURI(uri string) []string {
|
||||
streams := make([]string, 0)
|
||||
path := strings.Split(uri, "?")
|
||||
if len(path) != 2 {
|
||||
return streams
|
||||
}
|
||||
for _, up := range strings.Split(path[1], "&") {
|
||||
p := strings.Split(up, "=")
|
||||
if len(p) != 2 || p[0] != "stream" {
|
||||
continue
|
||||
}
|
||||
streams = append(streams, strings.Split(p[1], ",")...)
|
||||
|
||||
}
|
||||
return streams
|
||||
}
|
||||
|
||||
// read pumps messages from the websocket connection to the hub.
|
||||
//
|
||||
// The application runs read in a per-connection goroutine. The application
|
||||
// ensures that there is at most one reader on a connection by executing all
|
||||
// reads from this goroutine.
|
||||
func (c *Client) read() {
|
||||
defer func() {
|
||||
log.Debug().Msgf("Closing client read (%s)", c.GetAuth().UID)
|
||||
c.hub.Unregister <- c
|
||||
metrics.RecordHubClientClose()
|
||||
c.conn.Close()
|
||||
}()
|
||||
|
||||
c.conn.SetReadLimit(maxMessageSize)
|
||||
c.conn.SetReadDeadline(time.Now().Add(pongWait))
|
||||
c.conn.SetPongHandler(func(string) error {
|
||||
c.conn.SetReadDeadline(time.Now().Add(pongWait))
|
||||
return nil
|
||||
})
|
||||
|
||||
for {
|
||||
_, message, err := c.conn.ReadMessage()
|
||||
if err != nil {
|
||||
if websocket.IsUnexpectedCloseError(err, websocket.CloseGoingAway, websocket.CloseAbnormalClosure) {
|
||||
log.Info().Msgf("error: %v", err)
|
||||
}
|
||||
break
|
||||
}
|
||||
message = bytes.TrimSpace(bytes.Replace(message, newline, space, -1))
|
||||
if len(message) == 0 {
|
||||
continue
|
||||
}
|
||||
if isDebug() {
|
||||
log.Debug().Msgf("Received message %s", message)
|
||||
}
|
||||
|
||||
// handle ping
|
||||
if string(message) == "ping" {
|
||||
c.send <- []byte("pong")
|
||||
continue
|
||||
}
|
||||
|
||||
req, err := msg.ParseRequest(message)
|
||||
if err != nil {
|
||||
c.send <- []byte(responseMust(err, nil))
|
||||
continue
|
||||
}
|
||||
|
||||
c.hub.Requests <- Request{c, req}
|
||||
}
|
||||
}
|
||||
|
||||
// write pumps messages from the hub to the websocket connection.
|
||||
//
|
||||
// A goroutine running write is started for each connection. The
|
||||
// application ensures that there is at most one writer to a connection by
|
||||
// executing all writes from this goroutine.
|
||||
func (c *Client) write() {
|
||||
ticker := time.NewTicker(pingPeriod)
|
||||
defer func() {
|
||||
log.Debug().Msgf("Closing client write (%s)", c.GetAuth().UID)
|
||||
ticker.Stop()
|
||||
c.conn.Close()
|
||||
}()
|
||||
|
||||
for {
|
||||
select {
|
||||
case message, ok := <-c.send:
|
||||
c.conn.SetWriteDeadline(time.Now().Add(writeWait))
|
||||
if !ok {
|
||||
// The hub closed the channel.
|
||||
c.conn.WriteMessage(websocket.CloseMessage, []byte{})
|
||||
return
|
||||
}
|
||||
|
||||
w, err := c.conn.NextWriter(websocket.TextMessage)
|
||||
if err != nil {
|
||||
return
|
||||
}
|
||||
w.Write(message)
|
||||
if err := w.Close(); err != nil {
|
||||
return
|
||||
}
|
||||
case <-ticker.C:
|
||||
c.conn.SetWriteDeadline(time.Now().Add(writeWait))
|
||||
if err := c.conn.WriteMessage(websocket.PingMessage, nil); err != nil {
|
||||
return
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user