Full Mattermost server source with integrated Community Enterprise features. Includes vendor directory for offline/air-gapped builds. Structure: - enterprise-impl/: Enterprise feature implementations - enterprise-community/: Init files that register implementations - enterprise/: Bridge imports (community_imports.go) - vendor/: All dependencies for offline builds Build (online): go build ./cmd/mattermost Build (offline/air-gapped): go build -mod=vendor ./cmd/mattermost 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
147 lines
4.0 KiB
Go
147 lines
4.0 KiB
Go
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
package platform
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/mattermost/mattermost/server/public/model"
|
|
"github.com/mattermost/mattermost/server/public/shared/i18n"
|
|
"github.com/mattermost/mattermost/server/public/shared/mlog"
|
|
)
|
|
|
|
type webSocketHandler interface {
|
|
ServeWebSocket(*WebConn, *model.WebSocketRequest)
|
|
}
|
|
|
|
type WebSocketRouter struct {
|
|
handlers map[string]webSocketHandler
|
|
}
|
|
|
|
func (wr *WebSocketRouter) Handle(action string, handler webSocketHandler) {
|
|
wr.handlers[action] = handler
|
|
}
|
|
|
|
func (wr *WebSocketRouter) ServeWebSocket(conn *WebConn, r *model.WebSocketRequest) {
|
|
if r.Action == "" {
|
|
err := model.NewAppError("ServeWebSocket", "api.web_socket_router.no_action.app_error", nil, "", http.StatusBadRequest)
|
|
returnWebSocketError(conn.Platform, conn, r, err)
|
|
return
|
|
}
|
|
|
|
if r.Seq <= 0 {
|
|
err := model.NewAppError("ServeWebSocket", "api.web_socket_router.bad_seq.app_error", nil, "", http.StatusBadRequest)
|
|
returnWebSocketError(conn.Platform, conn, r, err)
|
|
return
|
|
}
|
|
|
|
if r.Action == string(model.WebsocketAuthenticationChallenge) {
|
|
if conn.GetSessionToken() != "" {
|
|
return
|
|
}
|
|
|
|
token, ok := r.Data["token"].(string)
|
|
if !ok {
|
|
conn.WebSocket.Close()
|
|
return
|
|
}
|
|
|
|
session, err := conn.Suite.GetSession(token)
|
|
if err != nil {
|
|
conn.Platform.Log().Warn("Error while getting session token", mlog.Err(err))
|
|
conn.WebSocket.Close()
|
|
return
|
|
}
|
|
conn.SetSession(session)
|
|
conn.SetSessionToken(session.Token)
|
|
conn.UserId = session.UserId
|
|
|
|
nErr := conn.Platform.HubRegister(conn)
|
|
if nErr != nil {
|
|
conn.Platform.Log().Error("Error while registering to hub", mlog.String("user_id", conn.UserId), mlog.Err(nErr))
|
|
conn.WebSocket.Close()
|
|
return
|
|
}
|
|
|
|
conn.Platform.Go(func() {
|
|
conn.Platform.SetStatusOnline(session.UserId, false)
|
|
conn.Platform.UpdateLastActivityAtIfNeeded(*session)
|
|
})
|
|
|
|
resp := model.NewWebSocketResponse(model.StatusOk, r.Seq, nil)
|
|
hub := conn.Platform.GetHubForUserId(conn.UserId)
|
|
if hub == nil {
|
|
return
|
|
}
|
|
hub.SendMessage(conn, resp)
|
|
|
|
return
|
|
}
|
|
|
|
if r.Action == string(model.WebsocketPresenceIndicator) {
|
|
if chID, ok := r.Data["channel_id"].(string); ok {
|
|
// Set active channel
|
|
conn.SetActiveChannelID(chID)
|
|
}
|
|
if teamID, ok := r.Data["team_id"].(string); ok {
|
|
// Set active team
|
|
conn.SetActiveTeamID(teamID)
|
|
}
|
|
if thChannelID, ok := r.Data["thread_channel_id"].(string); ok {
|
|
// Set the channelID of the active thread.
|
|
if isThreadView, ok := r.Data["is_thread_view"].(bool); ok && isThreadView {
|
|
conn.SetActiveThreadViewThreadChannelID(thChannelID)
|
|
} else {
|
|
conn.SetActiveRHSThreadChannelID(thChannelID)
|
|
}
|
|
}
|
|
|
|
resp := model.NewWebSocketResponse(model.StatusOk, r.Seq, nil)
|
|
hub := conn.Platform.GetHubForUserId(conn.UserId)
|
|
if hub == nil {
|
|
return
|
|
}
|
|
hub.SendMessage(conn, resp)
|
|
return
|
|
}
|
|
|
|
if !conn.IsAuthenticated() {
|
|
err := model.NewAppError("ServeWebSocket", "api.web_socket_router.not_authenticated.app_error", nil, "", http.StatusUnauthorized)
|
|
returnWebSocketError(conn.Platform, conn, r, err)
|
|
return
|
|
}
|
|
|
|
handler, ok := wr.handlers[r.Action]
|
|
if !ok {
|
|
err := model.NewAppError("ServeWebSocket", "api.web_socket_router.bad_action.app_error", nil, "", http.StatusInternalServerError)
|
|
returnWebSocketError(conn.Platform, conn, r, err)
|
|
return
|
|
}
|
|
|
|
handler.ServeWebSocket(conn, r)
|
|
}
|
|
|
|
func returnWebSocketError(ps *PlatformService, conn *WebConn, r *model.WebSocketRequest, err *model.AppError) {
|
|
logF := mlog.Error
|
|
if err.StatusCode >= http.StatusBadRequest && err.StatusCode < http.StatusInternalServerError {
|
|
logF = mlog.Debug
|
|
}
|
|
logF(
|
|
"websocket routing error.",
|
|
mlog.Int("seq", r.Seq),
|
|
mlog.String("user_id", conn.UserId),
|
|
mlog.String("system_message", err.SystemMessage(i18n.T)),
|
|
mlog.Err(err),
|
|
)
|
|
|
|
hub := ps.GetHubForUserId(conn.UserId)
|
|
if hub == nil {
|
|
return
|
|
}
|
|
|
|
err.WipeDetailed()
|
|
errorResp := model.NewWebSocketError(r.Seq, err)
|
|
hub.SendMessage(conn, errorResp)
|
|
}
|