first commit
Этот коммит содержится в:
40
api/web_socket.go
Обычный файл
40
api/web_socket.go
Обычный файл
@@ -0,0 +1,40 @@
|
||||
// Copyright (c) 2015 Spinpunch, 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()
|
||||
}
|
||||
Ссылка в новой задаче
Block a user