123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390 |
- package main
- import (
- "fmt"
- "regexp"
- "strings"
- "sync"
- "github.com/bwmarrin/discordgo"
- "github.com/rs/zerolog"
- "maunium.net/go/mautrix"
- "maunium.net/go/mautrix/appservice"
- "maunium.net/go/mautrix/bridge"
- "maunium.net/go/mautrix/id"
- "go.mau.fi/mautrix-discord/database"
- )
- type Puppet struct {
- *database.Puppet
- bridge *DiscordBridge
- log zerolog.Logger
- MXID id.UserID
- customIntent *appservice.IntentAPI
- customUser *User
- syncLock sync.Mutex
- }
- var _ bridge.Ghost = (*Puppet)(nil)
- var _ bridge.GhostWithProfile = (*Puppet)(nil)
- func (puppet *Puppet) GetMXID() id.UserID {
- return puppet.MXID
- }
- var userIDRegex *regexp.Regexp
- func (br *DiscordBridge) NewPuppet(dbPuppet *database.Puppet) *Puppet {
- return &Puppet{
- Puppet: dbPuppet,
- bridge: br,
- log: br.ZLog.With().Str("discord_user_id", dbPuppet.ID).Logger(),
- MXID: br.FormatPuppetMXID(dbPuppet.ID),
- }
- }
- func (br *DiscordBridge) ParsePuppetMXID(mxid id.UserID) (string, bool) {
- if userIDRegex == nil {
- pattern := fmt.Sprintf(
- "^@%s:%s$",
- br.Config.Bridge.FormatUsername("([0-9]+)"),
- br.Config.Homeserver.Domain,
- )
- userIDRegex = regexp.MustCompile(pattern)
- }
- match := userIDRegex.FindStringSubmatch(string(mxid))
- if len(match) == 2 {
- return match[1], true
- }
- return "", false
- }
- func (br *DiscordBridge) GetPuppetByMXID(mxid id.UserID) *Puppet {
- discordID, ok := br.ParsePuppetMXID(mxid)
- if !ok {
- return nil
- }
- return br.GetPuppetByID(discordID)
- }
- func (br *DiscordBridge) GetPuppetByID(id string) *Puppet {
- br.puppetsLock.Lock()
- defer br.puppetsLock.Unlock()
- puppet, ok := br.puppets[id]
- if !ok {
- dbPuppet := br.DB.Puppet.Get(id)
- if dbPuppet == nil {
- dbPuppet = br.DB.Puppet.New()
- dbPuppet.ID = id
- dbPuppet.Insert()
- }
- puppet = br.NewPuppet(dbPuppet)
- br.puppets[puppet.ID] = puppet
- }
- return puppet
- }
- func (br *DiscordBridge) GetPuppetByCustomMXID(mxid id.UserID) *Puppet {
- br.puppetsLock.Lock()
- defer br.puppetsLock.Unlock()
- puppet, ok := br.puppetsByCustomMXID[mxid]
- if !ok {
- dbPuppet := br.DB.Puppet.GetByCustomMXID(mxid)
- if dbPuppet == nil {
- return nil
- }
- puppet = br.NewPuppet(dbPuppet)
- br.puppets[puppet.ID] = puppet
- br.puppetsByCustomMXID[puppet.CustomMXID] = puppet
- }
- return puppet
- }
- func (br *DiscordBridge) GetAllPuppetsWithCustomMXID() []*Puppet {
- return br.dbPuppetsToPuppets(br.DB.Puppet.GetAllWithCustomMXID())
- }
- func (br *DiscordBridge) GetAllPuppets() []*Puppet {
- return br.dbPuppetsToPuppets(br.DB.Puppet.GetAll())
- }
- func (br *DiscordBridge) dbPuppetsToPuppets(dbPuppets []*database.Puppet) []*Puppet {
- br.puppetsLock.Lock()
- defer br.puppetsLock.Unlock()
- output := make([]*Puppet, len(dbPuppets))
- for index, dbPuppet := range dbPuppets {
- if dbPuppet == nil {
- continue
- }
- puppet, ok := br.puppets[dbPuppet.ID]
- if !ok {
- puppet = br.NewPuppet(dbPuppet)
- br.puppets[dbPuppet.ID] = puppet
- if dbPuppet.CustomMXID != "" {
- br.puppetsByCustomMXID[dbPuppet.CustomMXID] = puppet
- }
- }
- output[index] = puppet
- }
- return output
- }
- func (br *DiscordBridge) FormatPuppetMXID(did string) id.UserID {
- return id.NewUserID(
- br.Config.Bridge.FormatUsername(did),
- br.Config.Homeserver.Domain,
- )
- }
- func (puppet *Puppet) GetDisplayname() string {
- return puppet.Name
- }
- func (puppet *Puppet) GetAvatarURL() id.ContentURI {
- return puppet.AvatarURL
- }
- func (puppet *Puppet) DefaultIntent() *appservice.IntentAPI {
- return puppet.bridge.AS.Intent(puppet.MXID)
- }
- func (puppet *Puppet) IntentFor(portal *Portal) *appservice.IntentAPI {
- if puppet.customIntent == nil || (portal.Key.Receiver != "" && portal.Key.Receiver != puppet.ID) {
- return puppet.DefaultIntent()
- }
- return puppet.customIntent
- }
- func (puppet *Puppet) CustomIntent() *appservice.IntentAPI {
- if puppet == nil {
- return nil
- }
- return puppet.customIntent
- }
- func (puppet *Puppet) updatePortalMeta(meta func(portal *Portal)) {
- for _, portal := range puppet.bridge.GetDMPortalsWith(puppet.ID) {
- // Get room create lock to prevent races between receiving contact info and room creation.
- portal.roomCreateLock.Lock()
- meta(portal)
- portal.roomCreateLock.Unlock()
- }
- }
- func (puppet *Puppet) UpdateName(info *discordgo.User) bool {
- newName := puppet.bridge.Config.Bridge.FormatDisplayname(info, puppet.IsWebhook, puppet.IsApplication)
- if puppet.Name == newName && puppet.NameSet {
- return false
- }
- puppet.Name = newName
- puppet.NameSet = false
- err := puppet.DefaultIntent().SetDisplayName(newName)
- if err != nil {
- puppet.log.Warn().Err(err).Msg("Failed to update displayname")
- } else {
- go puppet.updatePortalMeta(func(portal *Portal) {
- if portal.UpdateNameDirect(puppet.Name, false) {
- portal.Update()
- portal.UpdateBridgeInfo()
- }
- })
- puppet.NameSet = true
- }
- return true
- }
- func (br *DiscordBridge) reuploadUserAvatar(intent *appservice.IntentAPI, guildID, userID, avatarID string) (id.ContentURI, string, error) {
- var downloadURL, ext string
- if guildID == "" {
- downloadURL = discordgo.EndpointUserAvatar(userID, avatarID)
- ext = "png"
- if strings.HasPrefix(avatarID, "a_") {
- downloadURL = discordgo.EndpointUserAvatarAnimated(userID, avatarID)
- ext = "gif"
- }
- } else {
- downloadURL = discordgo.EndpointGuildMemberAvatar(guildID, userID, avatarID)
- ext = "png"
- if strings.HasPrefix(avatarID, "a_") {
- downloadURL = discordgo.EndpointGuildMemberAvatarAnimated(guildID, userID, avatarID)
- ext = "gif"
- }
- }
- if guildID == "" {
- url := br.Config.Bridge.MediaPatterns.Avatar(userID, avatarID, ext)
- if !url.IsEmpty() {
- return url, downloadURL, nil
- }
- }
- copied, err := br.copyAttachmentToMatrix(intent, downloadURL, false, AttachmentMeta{
- AttachmentID: fmt.Sprintf("avatar/%s/%s/%s", guildID, userID, avatarID),
- })
- if err != nil {
- return id.ContentURI{}, downloadURL, err
- }
- return copied.MXC, downloadURL, nil
- }
- func (puppet *Puppet) UpdateAvatar(info *discordgo.User) bool {
- avatarID := info.Avatar
- if puppet.IsWebhook && !puppet.bridge.Config.Bridge.EnableWebhookAvatars {
- avatarID = ""
- }
- if puppet.Avatar == avatarID && puppet.AvatarSet {
- return false
- }
- avatarChanged := avatarID != puppet.Avatar
- puppet.Avatar = avatarID
- puppet.AvatarSet = false
- puppet.AvatarURL = id.ContentURI{}
- if puppet.Avatar != "" && (puppet.AvatarURL.IsEmpty() || avatarChanged) {
- url, _, err := puppet.bridge.reuploadUserAvatar(puppet.DefaultIntent(), "", info.ID, puppet.Avatar)
- if err != nil {
- puppet.log.Warn().Err(err).Str("avatar_id", puppet.Avatar).Msg("Failed to reupload user avatar")
- return true
- }
- puppet.AvatarURL = url
- }
- err := puppet.DefaultIntent().SetAvatarURL(puppet.AvatarURL)
- if err != nil {
- puppet.log.Warn().Err(err).Msg("Failed to update avatar")
- } else {
- go puppet.updatePortalMeta(func(portal *Portal) {
- if portal.UpdateAvatarFromPuppet(puppet) {
- portal.Update()
- portal.UpdateBridgeInfo()
- }
- })
- puppet.AvatarSet = true
- }
- return true
- }
- func (puppet *Puppet) UpdateInfo(source *User, info *discordgo.User, message *discordgo.Message) {
- puppet.syncLock.Lock()
- defer puppet.syncLock.Unlock()
- if info == nil || len(info.Username) == 0 || len(info.Discriminator) == 0 {
- if puppet.Name != "" || source == nil {
- return
- }
- var err error
- puppet.log.Debug().Str("source_user", source.DiscordID).Msg("Fetching info through user to update puppet")
- info, err = source.Session.User(puppet.ID)
- if err != nil {
- puppet.log.Error().Err(err).Str("source_user", source.DiscordID).Msg("Failed to fetch info through user")
- return
- }
- }
- err := puppet.DefaultIntent().EnsureRegistered()
- if err != nil {
- puppet.log.Error().Err(err).Msg("Failed to ensure registered")
- }
- changed := false
- if message != nil {
- if message.WebhookID != "" && message.ApplicationID == "" && !puppet.IsWebhook {
- puppet.log.Debug().
- Str("message_id", message.ID).
- Str("webhook_id", message.WebhookID).
- Msg("Found webhook ID in message, marking ghost as a webhook")
- puppet.IsWebhook = true
- changed = true
- }
- if message.ApplicationID != "" && !puppet.IsApplication {
- puppet.log.Debug().
- Str("message_id", message.ID).
- Str("application_id", message.ApplicationID).
- Msg("Found application ID in message, marking ghost as an application")
- puppet.IsApplication = true
- puppet.IsWebhook = false
- changed = true
- }
- }
- changed = puppet.UpdateContactInfo(info) || changed
- changed = puppet.UpdateName(info) || changed
- changed = puppet.UpdateAvatar(info) || changed
- if changed {
- puppet.Update()
- }
- }
- func (puppet *Puppet) UpdateContactInfo(info *discordgo.User) bool {
- changed := false
- if puppet.Username != info.Username {
- puppet.Username = info.Username
- changed = true
- }
- if puppet.GlobalName != info.GlobalName {
- puppet.GlobalName = info.GlobalName
- changed = true
- }
- if puppet.Discriminator != info.Discriminator {
- puppet.Discriminator = info.Discriminator
- changed = true
- }
- if puppet.IsBot != info.Bot {
- puppet.IsBot = info.Bot
- changed = true
- }
- if (changed && !puppet.IsWebhook) || !puppet.ContactInfoSet {
- puppet.ContactInfoSet = false
- puppet.ResendContactInfo()
- return true
- }
- return false
- }
- func (puppet *Puppet) ResendContactInfo() {
- if !puppet.bridge.SpecVersions.Supports(mautrix.BeeperFeatureArbitraryProfileMeta) || puppet.ContactInfoSet {
- return
- }
- discordUsername := puppet.Username
- if puppet.Discriminator != "0" {
- discordUsername += "#" + puppet.Discriminator
- }
- contactInfo := map[string]any{
- "com.beeper.bridge.identifiers": []string{
- fmt.Sprintf("discord:%s", discordUsername),
- },
- "com.beeper.bridge.remote_id": puppet.ID,
- "com.beeper.bridge.service": puppet.bridge.BeeperServiceName,
- "com.beeper.bridge.network": puppet.bridge.BeeperNetworkName,
- "com.beeper.bridge.is_network_bot": puppet.IsBot,
- }
- if puppet.IsWebhook {
- contactInfo["com.beeper.bridge.identifiers"] = []string{}
- }
- err := puppet.DefaultIntent().BeeperUpdateProfile(contactInfo)
- if err != nil {
- puppet.log.Warn().Err(err).Msg("Failed to store custom contact info in profile")
- } else {
- puppet.ContactInfoSet = true
- }
- }
|