2021-01-19 01:06:08 -05:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"log"
|
|
|
|
"strings"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/bwmarrin/discordgo"
|
|
|
|
)
|
|
|
|
|
|
|
|
// DiscordListener holds references to the current BridgeConf
|
|
|
|
// and BridgeState for use by the event handlers
|
|
|
|
type DiscordListener struct {
|
|
|
|
Bridge *BridgeState
|
|
|
|
}
|
|
|
|
|
2021-01-19 13:19:05 -05:00
|
|
|
func (l *DiscordListener) guildCreate(s *discordgo.Session, event *discordgo.GuildCreate) {
|
|
|
|
log.Println("CREATE event registered")
|
2021-01-19 01:06:08 -05:00
|
|
|
|
2021-01-19 13:19:05 -05:00
|
|
|
if event.ID != l.Bridge.BridgeConfig.GID {
|
|
|
|
log.Println("received GuildCreate from a guild not in config")
|
2021-01-19 01:06:08 -05:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-01-19 13:19:05 -05:00
|
|
|
for _, vs := range event.VoiceStates {
|
2021-02-07 15:44:20 -05:00
|
|
|
if vs.ChannelID == l.Bridge.DiscordChannelID {
|
2021-01-19 01:19:45 -05:00
|
|
|
if s.State.User.ID == vs.UserID {
|
|
|
|
// Ignore bot
|
|
|
|
continue
|
|
|
|
}
|
2021-01-19 01:06:08 -05:00
|
|
|
|
|
|
|
u, err := s.User(vs.UserID)
|
|
|
|
if err != nil {
|
|
|
|
log.Println("error looking up username")
|
|
|
|
}
|
|
|
|
|
|
|
|
dm, err := s.UserChannelCreate(u.ID)
|
|
|
|
if err != nil {
|
|
|
|
log.Println("Error creating private channel for", u.Username)
|
|
|
|
}
|
|
|
|
|
|
|
|
l.Bridge.DiscordUsersMutex.Lock()
|
|
|
|
l.Bridge.DiscordUsers[vs.UserID] = discordUser{
|
|
|
|
username: u.Username,
|
|
|
|
seen: true,
|
|
|
|
dm: dm,
|
|
|
|
}
|
|
|
|
l.Bridge.DiscordUsersMutex.Unlock()
|
|
|
|
|
|
|
|
// If connected to mumble inform users of Discord users
|
|
|
|
if l.Bridge.Connected && !l.Bridge.BridgeConfig.MumbleDisableText {
|
|
|
|
l.Bridge.MumbleClient.Do(func() {
|
|
|
|
l.Bridge.MumbleClient.Self.Channel.Send(fmt.Sprintf("%v has joined Discord\n", u.Username), false)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (l *DiscordListener) messageCreate(s *discordgo.Session, m *discordgo.MessageCreate) {
|
|
|
|
|
|
|
|
// Ignore all messages created by the bot itself
|
|
|
|
if m.Author.ID == s.State.User.ID {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
// Find the channel that the message came from.
|
|
|
|
c, err := s.State.Channel(m.ChannelID)
|
|
|
|
if err != nil {
|
|
|
|
// Could not find channel.
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Find the guild for that channel.
|
|
|
|
g, err := s.State.Guild(c.GuildID)
|
|
|
|
if err != nil {
|
|
|
|
// Could not find guild.
|
|
|
|
return
|
|
|
|
}
|
|
|
|
prefix := "!" + l.Bridge.BridgeConfig.Command
|
2021-02-09 18:04:11 -05:00
|
|
|
|
|
|
|
if l.Bridge.Mode == bridgeModeConstant && strings.HasPrefix(m.Content, prefix) {
|
|
|
|
l.Bridge.DiscordSession.ChannelMessageSend(m.ChannelID, "Constant mode enabled, manual commands can not be entered")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-01-19 01:06:08 -05:00
|
|
|
if strings.HasPrefix(m.Content, prefix+" link") {
|
|
|
|
// Look for the message sender in that guild's current voice states.
|
|
|
|
for _, vs := range g.VoiceStates {
|
2021-02-09 18:04:11 -05:00
|
|
|
if l.Bridge.Connected {
|
|
|
|
l.Bridge.DiscordSession.ChannelMessageSend(m.ChannelID, "Bridge already running, unlink first")
|
|
|
|
return
|
|
|
|
}
|
2021-01-19 01:06:08 -05:00
|
|
|
if vs.UserID == m.Author.ID {
|
|
|
|
log.Printf("Trying to join GID %v and VID %v\n", g.ID, vs.ChannelID)
|
2021-02-07 15:44:20 -05:00
|
|
|
l.Bridge.DiscordChannelID = vs.ChannelID
|
|
|
|
go l.Bridge.startBridge()
|
2021-01-19 01:06:08 -05:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if strings.HasPrefix(m.Content, prefix+" unlink") {
|
|
|
|
// Look for the message sender in that guild's current voice states.
|
2021-02-09 18:04:11 -05:00
|
|
|
if !l.Bridge.Connected {
|
|
|
|
l.Bridge.DiscordSession.ChannelMessageSend(m.ChannelID, "Bridge is not currently running")
|
|
|
|
return
|
|
|
|
}
|
2021-01-19 01:06:08 -05:00
|
|
|
for _, vs := range g.VoiceStates {
|
2021-02-09 18:04:11 -05:00
|
|
|
if vs.UserID == m.Author.ID && vs.ChannelID == l.Bridge.DiscordChannelID {
|
2021-01-19 01:06:08 -05:00
|
|
|
log.Printf("Trying to leave GID %v and VID %v\n", g.ID, vs.ChannelID)
|
|
|
|
l.Bridge.BridgeDie <- true
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if strings.HasPrefix(m.Content, prefix+" refresh") {
|
|
|
|
// Look for the message sender in that guild's current voice states.
|
2021-02-09 18:04:11 -05:00
|
|
|
if !l.Bridge.Connected {
|
|
|
|
l.Bridge.DiscordSession.ChannelMessageSend(m.ChannelID, "Bridge is not currently running")
|
|
|
|
return
|
|
|
|
}
|
2021-01-19 01:06:08 -05:00
|
|
|
for _, vs := range g.VoiceStates {
|
|
|
|
if vs.UserID == m.Author.ID {
|
|
|
|
log.Printf("Trying to refresh GID %v and VID %v\n", g.ID, vs.ChannelID)
|
|
|
|
l.Bridge.BridgeDie <- true
|
|
|
|
|
|
|
|
time.Sleep(5 * time.Second)
|
|
|
|
|
2021-02-07 15:44:20 -05:00
|
|
|
go l.Bridge.startBridge()
|
2021-01-19 01:06:08 -05:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if strings.HasPrefix(m.Content, prefix+" auto") {
|
|
|
|
if l.Bridge.Mode != bridgeModeAuto {
|
2021-02-07 15:25:02 -05:00
|
|
|
l.Bridge.DiscordSession.ChannelMessageSend(m.ChannelID, "Auto mode enabled")
|
2021-01-19 01:06:08 -05:00
|
|
|
l.Bridge.Mode = bridgeModeAuto
|
2021-02-07 15:44:20 -05:00
|
|
|
l.Bridge.DiscordChannelID = l.Bridge.BridgeConfig.CID
|
2021-01-19 01:06:08 -05:00
|
|
|
l.Bridge.AutoChanDie = make(chan bool)
|
|
|
|
go l.Bridge.AutoBridge()
|
|
|
|
} else {
|
2021-02-07 15:25:02 -05:00
|
|
|
l.Bridge.DiscordSession.ChannelMessageSend(m.ChannelID, "Auto mode disabled")
|
2021-02-07 15:44:20 -05:00
|
|
|
l.Bridge.DiscordChannelID = ""
|
2021-01-19 01:06:08 -05:00
|
|
|
l.Bridge.AutoChanDie <- true
|
|
|
|
l.Bridge.Mode = bridgeModeManual
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (l *DiscordListener) voiceUpdate(s *discordgo.Session, event *discordgo.VoiceStateUpdate) {
|
|
|
|
l.Bridge.DiscordUsersMutex.Lock()
|
|
|
|
defer l.Bridge.DiscordUsersMutex.Unlock()
|
|
|
|
|
|
|
|
if event.GuildID == l.Bridge.BridgeConfig.GID {
|
|
|
|
|
|
|
|
g, err := s.State.Guild(l.Bridge.BridgeConfig.GID)
|
|
|
|
if err != nil {
|
|
|
|
log.Println("error finding guild")
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
for u := range l.Bridge.DiscordUsers {
|
|
|
|
du := l.Bridge.DiscordUsers[u]
|
|
|
|
du.seen = false
|
|
|
|
l.Bridge.DiscordUsers[u] = du
|
|
|
|
}
|
|
|
|
|
|
|
|
// Sync the channel voice states to the local discordUsersMap
|
|
|
|
for _, vs := range g.VoiceStates {
|
2021-02-07 15:44:20 -05:00
|
|
|
if vs.ChannelID == l.Bridge.DiscordChannelID {
|
2021-01-19 01:06:08 -05:00
|
|
|
if s.State.User.ID == vs.UserID {
|
|
|
|
// Ignore bot
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
if _, ok := l.Bridge.DiscordUsers[vs.UserID]; !ok {
|
|
|
|
|
|
|
|
u, err := s.User(vs.UserID)
|
|
|
|
if err != nil {
|
|
|
|
log.Println("error looking up username")
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2021-02-01 16:03:38 -05:00
|
|
|
log.Println("User joined Discord " + u.Username)
|
2021-01-19 01:06:08 -05:00
|
|
|
dm, err := s.UserChannelCreate(u.ID)
|
|
|
|
if err != nil {
|
|
|
|
log.Println("Error creating private channel for", u.Username)
|
|
|
|
}
|
|
|
|
l.Bridge.DiscordUsers[vs.UserID] = discordUser{
|
|
|
|
username: u.Username,
|
|
|
|
seen: true,
|
|
|
|
dm: dm,
|
|
|
|
}
|
|
|
|
if l.Bridge.Connected && !l.Bridge.BridgeConfig.MumbleDisableText {
|
|
|
|
l.Bridge.MumbleClient.Do(func() {
|
|
|
|
l.Bridge.MumbleClient.Self.Channel.Send(fmt.Sprintf("%v has joined Discord\n", u.Username), false)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
du := l.Bridge.DiscordUsers[vs.UserID]
|
|
|
|
du.seen = true
|
|
|
|
l.Bridge.DiscordUsers[vs.UserID] = du
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Remove users that are no longer connected
|
|
|
|
for id := range l.Bridge.DiscordUsers {
|
2021-04-06 22:34:38 -04:00
|
|
|
if !l.Bridge.DiscordUsers[id].seen {
|
2021-02-01 16:03:38 -05:00
|
|
|
log.Println("User left Discord channel " + l.Bridge.DiscordUsers[id].username)
|
2021-01-19 01:06:08 -05:00
|
|
|
if l.Bridge.Connected && !l.Bridge.BridgeConfig.MumbleDisableText {
|
|
|
|
l.Bridge.MumbleClient.Do(func() {
|
|
|
|
l.Bridge.MumbleClient.Self.Channel.Send(fmt.Sprintf("%v has left Discord channel\n", l.Bridge.DiscordUsers[id].username), false)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
delete(l.Bridge.DiscordUsers, id)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|