2018-08-16 23:11:28 +02:00
|
|
|
// mautrix-whatsapp - A Matrix-WhatsApp puppeting bridge.
|
2021-10-22 19:14:34 +02:00
|
|
|
// Copyright (C) 2021 Tulir Asokan
|
2018-08-16 23:11:28 +02:00
|
|
|
//
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Affero General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"regexp"
|
2021-03-19 19:55:08 +01:00
|
|
|
"sync"
|
2021-10-27 18:30:34 +02:00
|
|
|
"time"
|
2018-08-24 18:46:14 +02:00
|
|
|
|
2021-10-22 19:14:34 +02:00
|
|
|
"go.mau.fi/whatsmeow/types"
|
2021-02-09 22:41:14 +01:00
|
|
|
|
2021-02-17 00:21:30 +01:00
|
|
|
log "maunium.net/go/maulogger/v2"
|
2021-10-26 16:01:10 +02:00
|
|
|
|
2020-05-09 13:31:06 +02:00
|
|
|
"maunium.net/go/mautrix/appservice"
|
2022-05-22 15:15:54 +02:00
|
|
|
"maunium.net/go/mautrix/bridge"
|
2020-05-08 21:32:22 +02:00
|
|
|
"maunium.net/go/mautrix/id"
|
2019-01-11 20:17:31 +01:00
|
|
|
|
2022-05-13 10:34:45 +02:00
|
|
|
"maunium.net/go/mautrix-whatsapp/config"
|
2018-08-24 18:46:14 +02:00
|
|
|
"maunium.net/go/mautrix-whatsapp/database"
|
2018-08-16 23:11:28 +02:00
|
|
|
)
|
|
|
|
|
2020-06-25 22:33:11 +02:00
|
|
|
var userIDRegex *regexp.Regexp
|
|
|
|
|
2022-05-22 00:06:30 +02:00
|
|
|
func (br *WABridge) ParsePuppetMXID(mxid id.UserID) (jid types.JID, ok bool) {
|
2020-06-25 22:33:11 +02:00
|
|
|
if userIDRegex == nil {
|
2022-11-05 10:29:11 +01:00
|
|
|
userIDRegex = br.Config.MakeUserIDRegex("([0-9]+)")
|
2018-08-16 23:11:28 +02:00
|
|
|
}
|
|
|
|
match := userIDRegex.FindStringSubmatch(string(mxid))
|
2021-10-22 19:14:34 +02:00
|
|
|
if len(match) == 2 {
|
|
|
|
jid = types.NewJID(match[1], types.DefaultUserServer)
|
|
|
|
ok = true
|
2018-08-16 23:11:28 +02:00
|
|
|
}
|
2021-10-22 19:14:34 +02:00
|
|
|
return
|
2018-08-16 23:11:28 +02:00
|
|
|
}
|
|
|
|
|
2022-05-22 00:06:30 +02:00
|
|
|
func (br *WABridge) GetPuppetByMXID(mxid id.UserID) *Puppet {
|
|
|
|
jid, ok := br.ParsePuppetMXID(mxid)
|
2018-08-16 23:11:28 +02:00
|
|
|
if !ok {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-05-22 00:06:30 +02:00
|
|
|
return br.GetPuppetByJID(jid)
|
2018-08-16 23:11:28 +02:00
|
|
|
}
|
|
|
|
|
2022-05-22 00:06:30 +02:00
|
|
|
func (br *WABridge) GetPuppetByJID(jid types.JID) *Puppet {
|
2021-10-22 19:14:34 +02:00
|
|
|
jid = jid.ToNonAD()
|
|
|
|
if jid.Server == types.LegacyUserServer {
|
|
|
|
jid.Server = types.DefaultUserServer
|
|
|
|
} else if jid.Server != types.DefaultUserServer {
|
|
|
|
return nil
|
|
|
|
}
|
2022-05-22 00:06:30 +02:00
|
|
|
br.puppetsLock.Lock()
|
|
|
|
defer br.puppetsLock.Unlock()
|
|
|
|
puppet, ok := br.puppets[jid]
|
2018-08-16 23:11:28 +02:00
|
|
|
if !ok {
|
2022-05-22 00:06:30 +02:00
|
|
|
dbPuppet := br.DB.Puppet.Get(jid)
|
2018-08-16 23:11:28 +02:00
|
|
|
if dbPuppet == nil {
|
2022-05-22 00:06:30 +02:00
|
|
|
dbPuppet = br.DB.Puppet.New()
|
2018-08-18 21:57:08 +02:00
|
|
|
dbPuppet.JID = jid
|
|
|
|
dbPuppet.Insert()
|
2018-08-16 23:11:28 +02:00
|
|
|
}
|
2022-05-22 00:06:30 +02:00
|
|
|
puppet = br.NewPuppet(dbPuppet)
|
|
|
|
br.puppets[puppet.JID] = puppet
|
2019-05-24 01:33:26 +02:00
|
|
|
if len(puppet.CustomMXID) > 0 {
|
2022-05-22 00:06:30 +02:00
|
|
|
br.puppetsByCustomMXID[puppet.CustomMXID] = puppet
|
2019-05-24 01:33:26 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return puppet
|
|
|
|
}
|
|
|
|
|
2022-05-22 00:06:30 +02:00
|
|
|
func (br *WABridge) GetPuppetByCustomMXID(mxid id.UserID) *Puppet {
|
|
|
|
br.puppetsLock.Lock()
|
|
|
|
defer br.puppetsLock.Unlock()
|
|
|
|
puppet, ok := br.puppetsByCustomMXID[mxid]
|
2019-05-24 01:33:26 +02:00
|
|
|
if !ok {
|
2022-05-22 00:06:30 +02:00
|
|
|
dbPuppet := br.DB.Puppet.GetByCustomMXID(mxid)
|
2019-05-24 01:33:26 +02:00
|
|
|
if dbPuppet == nil {
|
|
|
|
return nil
|
|
|
|
}
|
2022-05-22 00:06:30 +02:00
|
|
|
puppet = br.NewPuppet(dbPuppet)
|
|
|
|
br.puppets[puppet.JID] = puppet
|
|
|
|
br.puppetsByCustomMXID[puppet.CustomMXID] = puppet
|
2018-08-16 23:11:28 +02:00
|
|
|
}
|
|
|
|
return puppet
|
|
|
|
}
|
|
|
|
|
2022-05-22 15:15:54 +02:00
|
|
|
func (user *User) GetIDoublePuppet() bridge.DoublePuppet {
|
|
|
|
p := user.bridge.GetPuppetByCustomMXID(user.MXID)
|
2022-05-22 18:11:08 +02:00
|
|
|
if p == nil || p.CustomIntent() == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return p
|
|
|
|
}
|
|
|
|
|
|
|
|
func (user *User) GetIGhost() bridge.Ghost {
|
|
|
|
if user.JID.IsEmpty() {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
p := user.bridge.GetPuppetByJID(user.JID)
|
2022-05-22 15:15:54 +02:00
|
|
|
if p == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return p
|
|
|
|
}
|
|
|
|
|
|
|
|
func (br *WABridge) IsGhost(id id.UserID) bool {
|
|
|
|
_, ok := br.ParsePuppetMXID(id)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (br *WABridge) GetIGhost(id id.UserID) bridge.Ghost {
|
|
|
|
p := br.GetPuppetByMXID(id)
|
|
|
|
if p == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return p
|
|
|
|
}
|
|
|
|
|
2022-05-24 13:02:06 +02:00
|
|
|
func (puppet *Puppet) GetMXID() id.UserID {
|
|
|
|
return puppet.MXID
|
2022-05-22 15:15:54 +02:00
|
|
|
}
|
|
|
|
|
2022-05-22 00:06:30 +02:00
|
|
|
func (br *WABridge) GetAllPuppetsWithCustomMXID() []*Puppet {
|
|
|
|
return br.dbPuppetsToPuppets(br.DB.Puppet.GetAllWithCustomMXID())
|
2019-05-24 01:33:26 +02:00
|
|
|
}
|
|
|
|
|
2022-05-22 00:06:30 +02:00
|
|
|
func (br *WABridge) GetAllPuppets() []*Puppet {
|
|
|
|
return br.dbPuppetsToPuppets(br.DB.Puppet.GetAll())
|
2019-05-24 01:33:26 +02:00
|
|
|
}
|
|
|
|
|
2022-05-22 00:06:30 +02:00
|
|
|
func (br *WABridge) dbPuppetsToPuppets(dbPuppets []*database.Puppet) []*Puppet {
|
|
|
|
br.puppetsLock.Lock()
|
|
|
|
defer br.puppetsLock.Unlock()
|
2018-08-16 23:11:28 +02:00
|
|
|
output := make([]*Puppet, len(dbPuppets))
|
|
|
|
for index, dbPuppet := range dbPuppets {
|
2019-06-13 20:30:38 +02:00
|
|
|
if dbPuppet == nil {
|
|
|
|
continue
|
|
|
|
}
|
2022-05-22 00:06:30 +02:00
|
|
|
puppet, ok := br.puppets[dbPuppet.JID]
|
2018-08-16 23:11:28 +02:00
|
|
|
if !ok {
|
2022-05-22 00:06:30 +02:00
|
|
|
puppet = br.NewPuppet(dbPuppet)
|
|
|
|
br.puppets[dbPuppet.JID] = puppet
|
2019-05-30 16:22:03 +02:00
|
|
|
if len(dbPuppet.CustomMXID) > 0 {
|
2022-05-22 00:06:30 +02:00
|
|
|
br.puppetsByCustomMXID[dbPuppet.CustomMXID] = puppet
|
2019-05-24 01:33:26 +02:00
|
|
|
}
|
2018-08-16 23:11:28 +02:00
|
|
|
}
|
|
|
|
output[index] = puppet
|
|
|
|
}
|
|
|
|
return output
|
|
|
|
}
|
|
|
|
|
2022-05-22 00:06:30 +02:00
|
|
|
func (br *WABridge) FormatPuppetMXID(jid types.JID) id.UserID {
|
2020-08-22 12:07:55 +02:00
|
|
|
return id.NewUserID(
|
2022-05-22 00:06:30 +02:00
|
|
|
br.Config.Bridge.FormatUsername(jid.User),
|
|
|
|
br.Config.Homeserver.Domain)
|
2020-08-22 12:07:55 +02:00
|
|
|
}
|
|
|
|
|
2022-05-22 00:06:30 +02:00
|
|
|
func (br *WABridge) NewPuppet(dbPuppet *database.Puppet) *Puppet {
|
2018-08-16 23:11:28 +02:00
|
|
|
return &Puppet{
|
|
|
|
Puppet: dbPuppet,
|
2022-05-22 00:06:30 +02:00
|
|
|
bridge: br,
|
|
|
|
log: br.Log.Sub(fmt.Sprintf("Puppet/%s", dbPuppet.JID)),
|
2018-08-18 21:57:08 +02:00
|
|
|
|
2022-05-22 00:06:30 +02:00
|
|
|
MXID: br.FormatPuppetMXID(dbPuppet.JID),
|
2018-08-16 23:11:28 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
type Puppet struct {
|
|
|
|
*database.Puppet
|
|
|
|
|
2022-05-22 00:06:30 +02:00
|
|
|
bridge *WABridge
|
2018-08-16 23:11:28 +02:00
|
|
|
log log.Logger
|
2018-08-18 21:57:08 +02:00
|
|
|
|
2020-05-08 21:32:22 +02:00
|
|
|
typingIn id.RoomID
|
2021-10-27 18:30:34 +02:00
|
|
|
typingAt time.Time
|
2018-08-24 19:02:38 +02:00
|
|
|
|
2020-05-08 21:32:22 +02:00
|
|
|
MXID id.UserID
|
2019-05-24 01:33:26 +02:00
|
|
|
|
2021-12-07 15:02:51 +01:00
|
|
|
customIntent *appservice.IntentAPI
|
|
|
|
customUser *User
|
2021-03-19 19:55:08 +01:00
|
|
|
|
|
|
|
syncLock sync.Mutex
|
2018-08-18 21:57:08 +02:00
|
|
|
}
|
|
|
|
|
2022-06-30 19:56:25 +02:00
|
|
|
var _ bridge.GhostWithProfile = (*Puppet)(nil)
|
|
|
|
|
|
|
|
func (puppet *Puppet) GetDisplayname() string {
|
|
|
|
return puppet.Displayname
|
|
|
|
}
|
|
|
|
|
|
|
|
func (puppet *Puppet) GetAvatarURL() id.ContentURI {
|
|
|
|
return puppet.AvatarURL
|
|
|
|
}
|
|
|
|
|
2019-05-24 01:33:26 +02:00
|
|
|
func (puppet *Puppet) IntentFor(portal *Portal) *appservice.IntentAPI {
|
2022-05-29 18:17:29 +02:00
|
|
|
if puppet.customIntent == nil || portal.Key.JID == puppet.JID || (portal.Key.JID.Server == types.BroadcastServer && portal.Key.Receiver != puppet.JID) {
|
2019-05-24 01:33:26 +02:00
|
|
|
return puppet.DefaultIntent()
|
|
|
|
}
|
|
|
|
return puppet.customIntent
|
|
|
|
}
|
|
|
|
|
|
|
|
func (puppet *Puppet) CustomIntent() *appservice.IntentAPI {
|
|
|
|
return puppet.customIntent
|
|
|
|
}
|
|
|
|
|
|
|
|
func (puppet *Puppet) DefaultIntent() *appservice.IntentAPI {
|
2018-08-28 23:40:54 +02:00
|
|
|
return puppet.bridge.AS.Intent(puppet.MXID)
|
2018-08-16 23:11:28 +02:00
|
|
|
}
|
2018-08-19 17:21:38 +02:00
|
|
|
|
2022-07-05 10:11:43 +02:00
|
|
|
func (puppet *Puppet) UpdateAvatar(source *User, forcePortalSync bool) bool {
|
2022-12-14 00:00:31 +01:00
|
|
|
changed := source.updateAvatar(puppet.JID, false, &puppet.Avatar, &puppet.AvatarURL, &puppet.AvatarSet, puppet.log, puppet.DefaultIntent())
|
2022-06-28 15:22:10 +02:00
|
|
|
if !changed || puppet.Avatar == "unauthorized" {
|
2022-07-05 10:11:43 +02:00
|
|
|
if forcePortalSync {
|
|
|
|
go puppet.updatePortalAvatar()
|
|
|
|
}
|
2022-06-28 15:22:10 +02:00
|
|
|
return changed
|
2018-08-23 00:12:26 +02:00
|
|
|
}
|
2022-06-28 15:22:10 +02:00
|
|
|
err := puppet.DefaultIntent().SetAvatarURL(puppet.AvatarURL)
|
2019-01-21 22:55:16 +01:00
|
|
|
if err != nil {
|
|
|
|
puppet.log.Warnln("Failed to set avatar:", err)
|
2022-06-28 13:37:49 +02:00
|
|
|
} else {
|
|
|
|
puppet.AvatarSet = true
|
2019-01-21 22:55:16 +01:00
|
|
|
}
|
2019-06-01 19:03:29 +02:00
|
|
|
go puppet.updatePortalAvatar()
|
2018-08-23 00:12:26 +02:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2022-07-05 10:11:43 +02:00
|
|
|
func (puppet *Puppet) UpdateName(contact types.ContactInfo, forcePortalSync bool) bool {
|
2021-10-22 19:14:34 +02:00
|
|
|
newName, quality := puppet.bridge.Config.Bridge.FormatDisplayname(puppet.JID, contact)
|
2022-06-28 13:37:49 +02:00
|
|
|
if (puppet.Displayname != newName || !puppet.NameSet) && quality >= puppet.NameQuality {
|
2022-09-22 15:20:13 +02:00
|
|
|
oldName := puppet.Displayname
|
2022-06-28 13:37:49 +02:00
|
|
|
puppet.Displayname = newName
|
|
|
|
puppet.NameQuality = quality
|
|
|
|
puppet.NameSet = false
|
2019-05-24 01:33:26 +02:00
|
|
|
err := puppet.DefaultIntent().SetDisplayName(newName)
|
2018-08-23 00:12:26 +02:00
|
|
|
if err == nil {
|
2022-09-22 15:20:13 +02:00
|
|
|
puppet.log.Debugln("Updated name", oldName, "->", newName)
|
2022-06-28 13:37:49 +02:00
|
|
|
puppet.NameSet = true
|
2019-06-01 19:03:29 +02:00
|
|
|
go puppet.updatePortalName()
|
2018-08-23 00:12:26 +02:00
|
|
|
} else {
|
|
|
|
puppet.log.Warnln("Failed to set display name:", err)
|
|
|
|
}
|
2019-06-01 19:03:29 +02:00
|
|
|
return true
|
2022-07-05 10:11:43 +02:00
|
|
|
} else if forcePortalSync {
|
|
|
|
go puppet.updatePortalName()
|
2019-06-01 19:03:29 +02:00
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
func (puppet *Puppet) updatePortalMeta(meta func(portal *Portal)) {
|
2022-10-07 20:01:04 +02:00
|
|
|
if puppet.bridge.Config.Bridge.PrivateChatPortalMeta || puppet.bridge.Config.Bridge.Encryption.Allow {
|
2019-06-01 19:03:29 +02:00
|
|
|
for _, portal := range puppet.bridge.GetAllPortalsByJID(puppet.JID) {
|
2022-10-07 20:01:04 +02:00
|
|
|
if !puppet.bridge.Config.Bridge.PrivateChatPortalMeta && !portal.Encrypted {
|
|
|
|
continue
|
|
|
|
}
|
2022-03-24 23:02:38 +01:00
|
|
|
// Get room create lock to prevent races between receiving contact info and room creation.
|
|
|
|
portal.roomCreateLock.Lock()
|
2019-06-01 19:03:29 +02:00
|
|
|
meta(portal)
|
2022-03-24 23:02:38 +01:00
|
|
|
portal.roomCreateLock.Unlock()
|
2019-06-01 19:03:29 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (puppet *Puppet) updatePortalAvatar() {
|
|
|
|
puppet.updatePortalMeta(func(portal *Portal) {
|
2022-07-05 10:02:54 +02:00
|
|
|
if portal.Avatar == puppet.Avatar && portal.AvatarURL == puppet.AvatarURL && portal.AvatarSet {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
portal.AvatarURL = puppet.AvatarURL
|
|
|
|
portal.Avatar = puppet.Avatar
|
|
|
|
portal.AvatarSet = false
|
|
|
|
defer portal.Update(nil)
|
2019-06-01 19:03:29 +02:00
|
|
|
if len(portal.MXID) > 0 {
|
|
|
|
_, err := portal.MainIntent().SetRoomAvatar(portal.MXID, puppet.AvatarURL)
|
|
|
|
if err != nil {
|
|
|
|
portal.log.Warnln("Failed to set avatar:", err)
|
2022-07-05 10:02:54 +02:00
|
|
|
} else {
|
|
|
|
portal.AvatarSet = true
|
|
|
|
portal.UpdateBridgeInfo()
|
2019-06-01 19:03:29 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func (puppet *Puppet) updatePortalName() {
|
|
|
|
puppet.updatePortalMeta(func(portal *Portal) {
|
2022-07-05 10:02:54 +02:00
|
|
|
portal.UpdateName(puppet.Displayname, types.EmptyJID, true)
|
2019-06-01 19:03:29 +02:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2022-05-13 10:34:45 +02:00
|
|
|
func (puppet *Puppet) SyncContact(source *User, onlyIfNoName, shouldHavePushName bool, reason string) {
|
|
|
|
if onlyIfNoName && len(puppet.Displayname) > 0 && (!shouldHavePushName || puppet.NameQuality > config.NameQualityPhone) {
|
2022-06-28 13:37:49 +02:00
|
|
|
source.EnqueuePuppetResync(puppet)
|
2021-03-19 19:55:08 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-10-22 19:14:34 +02:00
|
|
|
contact, err := source.Client.Store.Contacts.GetContact(puppet.JID)
|
|
|
|
if err != nil {
|
2021-11-08 12:04:39 +01:00
|
|
|
puppet.log.Warnfln("Failed to get contact info through %s in SyncContact: %v (sync reason: %s)", source.MXID, reason)
|
2021-10-22 19:14:34 +02:00
|
|
|
} else if !contact.Found {
|
2021-11-08 12:04:39 +01:00
|
|
|
puppet.log.Warnfln("No contact info found through %s in SyncContact (sync reason: %s)", source.MXID, reason)
|
2021-03-19 19:55:08 +01:00
|
|
|
}
|
2022-07-05 10:11:43 +02:00
|
|
|
puppet.Sync(source, &contact, false, false)
|
2021-03-19 19:55:08 +01:00
|
|
|
}
|
|
|
|
|
2022-07-05 10:11:43 +02:00
|
|
|
func (puppet *Puppet) Sync(source *User, contact *types.ContactInfo, forceAvatarSync, forcePortalSync bool) {
|
2021-03-19 19:55:08 +01:00
|
|
|
puppet.syncLock.Lock()
|
|
|
|
defer puppet.syncLock.Unlock()
|
2019-06-01 19:03:29 +02:00
|
|
|
err := puppet.DefaultIntent().EnsureRegistered()
|
|
|
|
if err != nil {
|
|
|
|
puppet.log.Errorln("Failed to ensure registered:", err)
|
|
|
|
}
|
|
|
|
|
2022-06-28 13:37:49 +02:00
|
|
|
puppet.log.Debugfln("Syncing info through %s", source.JID)
|
2018-08-23 00:12:26 +02:00
|
|
|
|
2019-06-01 19:03:29 +02:00
|
|
|
update := false
|
2022-06-28 13:37:49 +02:00
|
|
|
if contact != nil {
|
|
|
|
if puppet.JID.User == source.JID.User {
|
|
|
|
contact.PushName = source.Client.Store.PushName
|
|
|
|
}
|
2022-07-05 10:11:43 +02:00
|
|
|
update = puppet.UpdateName(*contact, forcePortalSync) || update
|
2022-06-28 13:37:49 +02:00
|
|
|
}
|
|
|
|
if len(puppet.Avatar) == 0 || forceAvatarSync || puppet.bridge.Config.Bridge.UserAvatarSync {
|
2022-07-05 10:11:43 +02:00
|
|
|
update = puppet.UpdateAvatar(source, forcePortalSync) || update
|
2021-02-09 22:41:14 +01:00
|
|
|
}
|
2022-06-28 13:37:49 +02:00
|
|
|
if update || puppet.LastSync.Add(24*time.Hour).Before(time.Now()) {
|
|
|
|
puppet.LastSync = time.Now()
|
2018-08-19 17:21:38 +02:00
|
|
|
puppet.Update()
|
|
|
|
}
|
|
|
|
}
|