summaryrefslogtreecommitdiffstats
path: root/api/web_team_hub.go
diff options
context:
space:
mode:
authorAsaad Mahmood <Unknowngi@live.com>2015-10-19 22:59:01 +0500
committerAsaad Mahmood <Unknowngi@live.com>2015-10-19 22:59:01 +0500
commit5135986a3b13c0a4474dbbca683d89ffbc1dead5 (patch)
tree42e511c01a0e707356091fd4d09911eb18b8ca20 /api/web_team_hub.go
parent2d42aefeafd2a0bea6419a6ef79c0c9b1fd313eb (diff)
parentfd69910fab332642a7793e64064169e89eb0c3de (diff)
downloadchat-5135986a3b13c0a4474dbbca683d89ffbc1dead5.tar.gz
chat-5135986a3b13c0a4474dbbca683d89ffbc1dead5.tar.bz2
chat-5135986a3b13c0a4474dbbca683d89ffbc1dead5.zip
Merge branch 'master' of https://github.com/mattermost/platform into ui-improvements
Diffstat (limited to 'api/web_team_hub.go')
-rw-r--r--api/web_team_hub.go31
1 files changed, 30 insertions, 1 deletions
diff --git a/api/web_team_hub.go b/api/web_team_hub.go
index c57de550f..6a25b7d3d 100644
--- a/api/web_team_hub.go
+++ b/api/web_team_hub.go
@@ -53,7 +53,7 @@ func (h *TeamHub) Start() {
}
case msg := <-h.broadcast:
for webCon := range h.connections {
- if !(webCon.UserId == msg.UserId && msg.Action == model.ACTION_TYPING) {
+ if ShouldSendEvent(webCon, msg) {
select {
case webCon.Send <- msg:
default:
@@ -86,3 +86,32 @@ func (h *TeamHub) UpdateChannelAccessCache(userId string, channelId string) {
}
}
}
+
+func ShouldSendEvent(webCon *WebConn, msg *model.Message) bool {
+
+ if webCon.UserId == msg.UserId {
+ // Don't need to tell the user they are typing
+ if msg.Action == model.ACTION_TYPING {
+ return false
+ }
+ } else {
+ // Don't share a user's view events with other users
+ if msg.Action == model.ACTION_CHANNEL_VIEWED {
+ return false
+ }
+
+ // Only report events to a user who is the subject of the event, or is in the channel of the event
+ if len(msg.ChannelId) > 0 {
+ allowed, ok := webCon.ChannelAccessCache[msg.ChannelId]
+ if !ok {
+ allowed = webCon.updateChannelAccessCache(msg.ChannelId)
+ }
+
+ if !allowed {
+ return false
+ }
+ }
+ }
+
+ return true
+}