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
|
package main
import (
"context"
"encoding/json"
"fmt"
"io"
"log"
"net/http"
"strconv"
"time"
"github.com/centrifugal/centrifuge"
"github.com/gin-contrib/sessions"
"github.com/gin-contrib/sessions/cookie"
"github.com/gin-gonic/gin"
)
type clientMessage struct {
Timestamp int64 `json:"timestamp"`
Input string `json:"input"`
}
func handleLog(e centrifuge.LogEntry) {
log.Printf("%s: %v", e.Message, e.Fields)
}
type connectData struct {
Email string `json:"email"`
}
type contextKey int
var ginContextKey contextKey
// GinContextToContextMiddleware - at the resolver level we only have access
// to context.Context inside centrifuge, but we need the gin context. So we
// create a gin middleware to add its context to the context.Context used by
// centrifuge websocket server.
func GinContextToContextMiddleware() gin.HandlerFunc {
return func(c *gin.Context) {
ctx := context.WithValue(c.Request.Context(), ginContextKey, c)
c.Request = c.Request.WithContext(ctx)
c.Next()
}
}
// GinContextFromContext - we recover the gin context from the context.Context
// struct where we added it just above
func GinContextFromContext(ctx context.Context) (*gin.Context, error) {
ginContext := ctx.Value(ginContextKey)
if ginContext == nil {
err := fmt.Errorf("could not retrieve gin.Context")
return nil, err
}
gc, ok := ginContext.(*gin.Context)
if !ok {
err := fmt.Errorf("gin.Context has wrong type")
return nil, err
}
return gc, nil
}
// Finally we can use gin context in the auth middleware of centrifuge.
func authMiddleware(h http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
ctx := r.Context()
// We get gin ctx from context.Context struct.
gc, err := GinContextFromContext(ctx)
if err != nil {
fmt.Printf("Failed to retrieve gin context")
fmt.Print(err.Error())
return
}
// And now we can access gin session.
s := sessions.Default(gc)
username := s.Get("user").(string)
if username != "" {
fmt.Printf("Successful websocket auth for user %s\n", username)
} else {
fmt.Printf("Failed websocket auth for user %s\n", username)
return
}
newCtx := centrifuge.SetCredentials(ctx, ¢rifuge.Credentials{
UserID: s.Get("user").(string),
})
r = r.WithContext(newCtx)
h.ServeHTTP(w, r)
})
}
func main() {
cfg := centrifuge.DefaultConfig
cfg.LogLevel = centrifuge.LogLevelDebug
cfg.LogHandler = handleLog
node, _ := centrifuge.New(cfg)
node.OnConnecting(func(ctx context.Context, event centrifuge.ConnectEvent) (centrifuge.ConnectReply, error) {
// Let's include user email into connect reply, so we can display user name in chat.
// This is an optional step actually.
cred, ok := centrifuge.GetCredentials(ctx)
if !ok {
return centrifuge.ConnectReply{}, centrifuge.DisconnectServerError
}
data, _ := json.Marshal(connectData{
Email: cred.UserID,
})
return centrifuge.ConnectReply{
Data: data,
}, nil
})
node.OnConnect(func(client *centrifuge.Client) {
transport := client.Transport()
log.Printf("user %s connected via %s.", client.UserID(), transport.Name())
// Connect handler should not block, so start separate goroutine to
// periodically send messages to client.
go func() {
for {
select {
case <-client.Context().Done():
return
case <-time.After(5 * time.Second):
err := client.Send([]byte(`{"time": "` + strconv.FormatInt(time.Now().Unix(), 10) + `"}`))
if err != nil {
if err == io.EOF {
return
}
log.Println(err.Error())
}
}
}
}()
client.OnRefresh(func(e centrifuge.RefreshEvent, cb centrifuge.RefreshCallback) {
log.Printf("user %s connection is going to expire, refreshing", client.UserID())
cb(centrifuge.RefreshReply{
ExpireAt: time.Now().Unix() + 10,
}, nil)
})
client.OnSubscribe(func(e centrifuge.SubscribeEvent, cb centrifuge.SubscribeCallback) {
log.Printf("user %s subscribes on %s", client.UserID(), e.Channel)
cb(centrifuge.SubscribeReply{}, nil)
})
client.OnUnsubscribe(func(e centrifuge.UnsubscribeEvent) {
log.Printf("user %s unsubscribed from %s", client.UserID(), e.Channel)
})
client.OnPublish(func(e centrifuge.PublishEvent, cb centrifuge.PublishCallback) {
log.Printf("user %s publishes into channel %s: %s", client.UserID(), e.Channel, string(e.Data))
var msg clientMessage
err := json.Unmarshal(e.Data, &msg)
if err != nil {
cb(centrifuge.PublishReply{}, centrifuge.ErrorBadRequest)
return
}
cb(centrifuge.PublishReply{}, nil)
})
client.OnRPC(func(e centrifuge.RPCEvent, cb centrifuge.RPCCallback) {
log.Printf("RPC from user: %s, data: %s", client.UserID(), string(e.Data))
cb(centrifuge.RPCReply{
Data: []byte(`{"year": "2020"}`),
}, nil)
})
client.OnMessage(func(e centrifuge.MessageEvent) {
log.Printf("Message from user: %s, data: %s", client.UserID(), string(e.Data))
})
client.OnDisconnect(func(e centrifuge.DisconnectEvent) {
log.Printf("user %s disconnected, disconnect: %s", client.UserID(), e.Disconnect)
})
})
// We also start a separate goroutine for centrifuge itself, since we
// still need to run gin web server.
go func() {
if err := node.Run(); err != nil {
log.Fatal(err)
}
}()
r := gin.Default()
store := cookie.NewStore([]byte("secret_string"))
r.Use(sessions.Sessions("session_name", store))
r.LoadHTMLFiles("./login_form.html", "./chat.html")
// Here we tell gin to use the middleware we created just above
r.Use(GinContextToContextMiddleware())
r.GET("/login", func(c *gin.Context) {
s := sessions.Default(c)
if s.Get("user") != nil && s.Get("user").(string) == "email@email.com" {
c.Redirect(http.StatusMovedPermanently, "/chat")
c.Abort()
} else {
c.HTML(200, "login_form.html", gin.H{})
}
})
r.POST("/login", func(c *gin.Context) {
email := c.PostForm("email")
passwd := c.PostForm("password")
s := sessions.Default(c)
if email == "email@email.com" && passwd == "password" {
s.Set("user", email)
_ = s.Save()
c.Redirect(http.StatusMovedPermanently, "/chat")
c.Abort()
} else {
c.JSON(403, gin.H{
"message": "Bad email/password combination",
})
}
})
r.GET("/connection/websocket", gin.WrapH(authMiddleware(centrifuge.NewWebsocketHandler(node, centrifuge.WebsocketConfig{}))))
r.GET("/connection/sockjs", gin.WrapH(authMiddleware(centrifuge.NewSockjsHandler(node, centrifuge.SockjsConfig{
URL: "https://cdn.jsdelivr.net/npm/sockjs-client@1/dist/sockjs.min.js",
HandlerPrefix: "/connection/sockjs",
}))))
r.GET("/chat", func(c *gin.Context) {
s := sessions.Default(c)
if s.Get("user") != nil {
c.HTML(200, "chat.html", gin.H{})
} else {
c.JSON(403, gin.H{
"message": "Not logged in!",
})
}
c.Abort()
})
_ = r.Run() // listen and serve on 0.0.0.0:8080
}
|