5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-20 05:32:32 +00:00
matterbridge/bridge/steam/steam.go

96 lines
2.0 KiB
Go
Raw Normal View History

2017-06-21 23:02:05 +00:00
package bsteam
import (
"fmt"
2018-11-15 18:24:22 +00:00
"sync"
"time"
2018-02-26 23:33:21 +00:00
"github.com/42wim/matterbridge/bridge"
2017-06-21 23:02:05 +00:00
"github.com/42wim/matterbridge/bridge/config"
"github.com/42wim/matterbridge/bridge/helper"
2017-06-21 23:02:05 +00:00
"github.com/Philipp15b/go-steam"
"github.com/Philipp15b/go-steam/protocol/steamlang"
"github.com/Philipp15b/go-steam/steamid"
)
type Bsteam struct {
c *steam.Client
connected chan struct{}
userMap map[steamid.SteamId]string
sync.RWMutex
*bridge.Config
2017-06-21 23:02:05 +00:00
}
func New(cfg *bridge.Config) bridge.Bridger {
b := &Bsteam{Config: cfg}
2017-06-21 23:02:05 +00:00
b.userMap = make(map[steamid.SteamId]string)
b.connected = make(chan struct{})
return b
}
func (b *Bsteam) Connect() error {
2018-02-26 23:33:21 +00:00
b.Log.Info("Connecting")
2017-06-21 23:02:05 +00:00
b.c = steam.NewClient()
go b.handleEvents()
go b.c.Connect()
select {
case <-b.connected:
2018-02-26 23:33:21 +00:00
b.Log.Info("Connection succeeded")
2017-06-21 23:02:05 +00:00
case <-time.After(time.Second * 30):
return fmt.Errorf("connection timed out")
}
return nil
}
func (b *Bsteam) Disconnect() error {
b.c.Disconnect()
return nil
}
func (b *Bsteam) JoinChannel(channel config.ChannelInfo) error {
id, err := steamid.NewId(channel.Name)
2017-06-21 23:02:05 +00:00
if err != nil {
return err
}
b.c.Social.JoinChat(id)
return nil
}
func (b *Bsteam) Send(msg config.Message) (string, error) {
// ignore delete messages
if msg.Event == config.EventMsgDelete {
return "", nil
}
2017-06-21 23:02:05 +00:00
id, err := steamid.NewId(msg.Channel)
if err != nil {
return "", err
2017-06-21 23:02:05 +00:00
}
// Handle files
if msg.Extra != nil {
for _, rmsg := range helper.HandleExtra(&msg, b.General) {
b.c.Social.SendMessage(id, steamlang.EChatEntryType_ChatMsg, rmsg.Username+rmsg.Text)
}
for i := range msg.Extra["file"] {
if err := b.handleFileInfo(&msg, msg.Extra["file"][i]); err != nil {
b.Log.Error(err)
}
b.c.Social.SendMessage(id, steamlang.EChatEntryType_ChatMsg, msg.Username+msg.Text)
}
return "", nil
}
2017-06-21 23:02:05 +00:00
b.c.Social.SendMessage(id, steamlang.EChatEntryType_ChatMsg, msg.Username+msg.Text)
return "", nil
2017-06-21 23:02:05 +00:00
}
func (b *Bsteam) getNick(id steamid.SteamId) string {
b.RLock()
defer b.RUnlock()
if name, ok := b.userMap[id]; ok {
return name
}
return "unknown"
}