mirror of
https://github.com/mattermost/mattermost.git
synced 2026-02-23 01:40:32 -05:00
35 lines
981 B
Go
35 lines
981 B
Go
// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
package wsapi
|
|
|
|
import (
|
|
"github.com/mattermost/mattermost-server/model"
|
|
)
|
|
|
|
func (api *API) InitUser() {
|
|
api.Router.Handle("user_typing", api.ApiWebSocketHandler(api.userTyping))
|
|
}
|
|
|
|
func (api *API) userTyping(req *model.WebSocketRequest) (map[string]interface{}, *model.AppError) {
|
|
var ok bool
|
|
var channelId string
|
|
if channelId, ok = req.Data["channel_id"].(string); !ok || len(channelId) != 26 {
|
|
return nil, NewInvalidWebSocketParamError(req.Action, "channel_id")
|
|
}
|
|
|
|
var parentId string
|
|
if parentId, ok = req.Data["parent_id"].(string); !ok {
|
|
parentId = ""
|
|
}
|
|
|
|
omitUsers := make(map[string]bool, 1)
|
|
omitUsers[req.Session.UserId] = true
|
|
|
|
event := model.NewWebSocketEvent(model.WEBSOCKET_EVENT_TYPING, "", channelId, "", omitUsers)
|
|
event.Add("parent_id", parentId)
|
|
event.Add("user_id", req.Session.UserId)
|
|
go api.App.Publish(event)
|
|
|
|
return nil, nil
|
|
}
|