mirror of
https://github.com/42wim/matterbridge.git
synced 2024-11-15 00:19:24 +01:00
Drop messages not from our mattermost team. Fixes #49
This commit is contained in:
parent
47d38192b2
commit
545377742c
@ -31,6 +31,7 @@ type Bmattermost struct {
|
||||
name string
|
||||
origin string
|
||||
protocol string
|
||||
TeamId string
|
||||
}
|
||||
|
||||
var flog *log.Entry
|
||||
@ -75,6 +76,7 @@ func (b *Bmattermost) Connect() error {
|
||||
go b.mc.WsReceiver()
|
||||
}
|
||||
go b.handleMatter()
|
||||
b.TeamId = b.mc.GetTeamId()
|
||||
return nil
|
||||
}
|
||||
|
||||
@ -153,7 +155,8 @@ func (b *Bmattermost) handleMatter() {
|
||||
func (b *Bmattermost) handleMatterClient(mchan chan *MMMessage) {
|
||||
for message := range b.mc.MessageChan {
|
||||
// do not post our own messages back to irc
|
||||
if message.Raw.Event == "posted" && b.mc.User.Username != message.Username {
|
||||
// only listen to message from our team
|
||||
if message.Raw.Event == "posted" && b.mc.User.Username != message.Username && message.Raw.TeamId == b.TeamId {
|
||||
flog.Debugf("Receiving from matterclient %#v", message)
|
||||
m := &MMMessage{}
|
||||
m.Username = message.Username
|
||||
|
@ -576,6 +576,10 @@ func (m *MMClient) GetStatus(userId string) string {
|
||||
return "offline"
|
||||
}
|
||||
|
||||
func (m *MMClient) GetTeamId() string {
|
||||
return m.Team.Id
|
||||
}
|
||||
|
||||
func (m *MMClient) StatusLoop() {
|
||||
for {
|
||||
if m.WsQuit {
|
||||
|
Loading…
Reference in New Issue
Block a user