8b8b689187
Signed-off-by: Sumner Evans <sumner.evans@automattic.com>
73 lines
2.0 KiB
Go
73 lines
2.0 KiB
Go
package connector
|
|
|
|
import (
|
|
"slices"
|
|
"sync"
|
|
|
|
"github.com/gotd/td/tg"
|
|
"maunium.net/go/mautrix/bridgev2/commands"
|
|
)
|
|
|
|
var cmdSync = &commands.FullHandler{
|
|
Func: fnSync,
|
|
Name: "sync",
|
|
Help: commands.HelpMeta{
|
|
Section: commands.HelpSectionGeneral,
|
|
Description: "Synchronize your chat portals, contacts and/or own info.",
|
|
Args: "[`chats`|`contacts`|`me`]",
|
|
},
|
|
RequiresLogin: true,
|
|
}
|
|
|
|
func fnSync(ce *commands.Event) {
|
|
var only string
|
|
if len(ce.Args) > 0 {
|
|
if !slices.Contains([]string{"chats", "contacts", "me"}, ce.Args[0]) {
|
|
ce.Reply("Invalid argument. Use `chats`, `contacts` or `me`.")
|
|
return
|
|
}
|
|
only = ce.Args[0]
|
|
}
|
|
|
|
var wg sync.WaitGroup
|
|
for _, login := range ce.User.GetUserLogins() {
|
|
client := login.Client.(*TelegramClient)
|
|
if only == "" || only == "chats" {
|
|
ce.Reply("Synchronizing chats for %s...", login.ID)
|
|
wg.Add(1)
|
|
go func() {
|
|
defer wg.Done()
|
|
if err := client.SyncChats(ce.Ctx); err != nil {
|
|
ce.Reply("Failed to synchronize chats for %s: %v", login.ID, err)
|
|
}
|
|
}()
|
|
}
|
|
if only == "" || only == "contacts" {
|
|
ce.Reply("Synchronizing contacts...")
|
|
wg.Add(1)
|
|
go func() {
|
|
// TODO
|
|
ce.Reply("Contact sync is not yet implemented!")
|
|
defer wg.Done()
|
|
}()
|
|
}
|
|
if only == "" || only == "me" {
|
|
ce.Reply("Synchronizing your info...")
|
|
wg.Add(1)
|
|
go func() {
|
|
wg.Done()
|
|
if users, err := client.client.API().UsersGetUsers(ce.Ctx, []tg.InputUserClass{&tg.InputUserSelf{}}); err != nil {
|
|
ce.Reply("Failed to get your info for %s: %v", login.ID, err)
|
|
} else if len(users) == 0 {
|
|
ce.Reply("Failed to get your info for %s: no users returned", login.ID)
|
|
} else if userInfo, err := client.getUserInfoFromTelegramUser(ce.Ctx, users[0]); err != nil {
|
|
ce.Reply("Failed to get your info for %s: %v", login.ID, err)
|
|
} else if err = client.updateGhostWithUserInfo(ce.Ctx, client.telegramUserID, userInfo); err != nil {
|
|
ce.Reply("Failed to update your info for %s: %v", login.ID, err)
|
|
}
|
|
}()
|
|
}
|
|
}
|
|
wg.Wait()
|
|
}
|