commit 921beee27b06d513c58745adddf8086d78fc0364
Author: Joseph Mansy <36427684+yousefmansy1@users.noreply.github.com>
Date: Mon Apr 03 14:27:44 2023 +0000
diff --git a/bridge/telegram/handlers.go b/bridge/telegram/handlers.go
index 9f8d1c3..efafa9d 100644
--- a/bridge/telegram/handlers.go
+++ b/bridge/telegram/handlers.go
@@ -1996 +1998 @@ func (b *Btelegram) handleRecv(updates <-chan tgbotapi.Update) {
spew.Dump(update.Message)
}
+ b.handleGroupUpdate(update)
+
var message *tgbotapi.Message
rmsg := config.Message{Account: b.Account, Extra: make(map[string][]interface{})}
@@ -2616 +26350 @@ func (b *Btelegram) handleRecv(updates <-chan tgbotapi.Update) {
}
}
+func (b *Btelegram) handleGroupUpdate(update tgbotapi.Update) {
+ msg := update.Message
+
+ switch {
+ case msg.NewChatMembers != nil:
+ b.handleUserJoin(update)
+ case msg.LeftChatMember != nil:
+ b.handleUserLeave(update)
+ }
+}
+
+func (b *Btelegram) handleUserJoin(update tgbotapi.Update) {
+ msg := update.Message
+ for _, user := range msg.NewChatMembers {
+ rmsg := config.Message{
+ UserID: strconv.FormatInt(user.ID, 10),
+ Username: user.FirstName, // for some reason all the other name felids are empty on this event (at least for me)
+ Channel: strconv.FormatInt(msg.Chat.ID, 10),
+ Account: b.Account,
+ Protocol: b.Protocol,
+ Event: config.EventJoinLeave,
+ Text: "joined chat",
+ }
+ b.Remote <- rmsg
+ }
+}
+
+func (b *Btelegram) handleUserLeave(update tgbotapi.Update) {
+ msg := update.Message
+ user := msg.LeftChatMember
+
+ rmsg := config.Message{
+ UserID: strconv.FormatInt(user.ID, 10),
+ Username: user.FirstName, // for some reason all the other name felids are empty on this event (at least for me)
+ Channel: strconv.FormatInt(msg.Chat.ID, 10),
+ Account: b.Account,
+ Protocol: b.Protocol,
+ Event: config.EventJoinLeave,
+ Text: "left chat",
+ }
+
+ b.Remote <- rmsg
+}
+
// handleDownloadAvatar downloads the avatar of userid from channel
// sends a EVENT_AVATAR_DOWNLOAD message to the gateway if successful.
// logs an error message if it fails