mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
41 lines
983 B
Go
41 lines
983 B
Go
// Copyright (c) 2015 Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
package api
|
|
|
|
import (
|
|
l4g "code.google.com/p/log4go"
|
|
"github.com/gorilla/mux"
|
|
"github.com/gorilla/websocket"
|
|
"github.com/mattermost/platform/model"
|
|
"net/http"
|
|
)
|
|
|
|
func InitWebSocket(r *mux.Router) {
|
|
l4g.Debug("Initializing web socket api routes")
|
|
r.Handle("/websocket", ApiUserRequired(connect)).Methods("GET")
|
|
hub.Start()
|
|
}
|
|
|
|
func connect(c *Context, w http.ResponseWriter, r *http.Request) {
|
|
upgrader := websocket.Upgrader{
|
|
ReadBufferSize: 1024,
|
|
WriteBufferSize: 1024,
|
|
CheckOrigin: func(r *http.Request) bool {
|
|
return true
|
|
},
|
|
}
|
|
|
|
ws, err := upgrader.Upgrade(w, r, nil)
|
|
if err != nil {
|
|
l4g.Error("websocket connect err: %v", err)
|
|
c.Err = model.NewAppError("connect", "Failed to upgrade websocket connection", "")
|
|
return
|
|
}
|
|
|
|
wc := NewWebConn(ws, c.Session.TeamId, c.Session.UserId, c.Session.Id)
|
|
hub.Register(wc)
|
|
go wc.writePump()
|
|
wc.readPump()
|
|
}
|