2019-05-24 01:33:26 +02:00
|
|
|
// mautrix-whatsapp - A Matrix-WhatsApp puppeting bridge.
|
2020-05-08 21:32:22 +02:00
|
|
|
// Copyright (C) 2020 Tulir Asokan
|
2019-05-24 01:33:26 +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 (
|
2019-12-30 19:21:04 +01:00
|
|
|
"crypto/hmac"
|
|
|
|
"crypto/sha512"
|
|
|
|
"encoding/hex"
|
2019-05-24 01:33:26 +02:00
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/pkg/errors"
|
2019-05-24 13:09:48 +02:00
|
|
|
|
2019-05-27 12:46:04 +02:00
|
|
|
"github.com/Rhymen/go-whatsapp"
|
2020-05-08 21:32:22 +02:00
|
|
|
|
2019-05-24 01:33:26 +02:00
|
|
|
"maunium.net/go/mautrix"
|
2020-05-09 13:31:06 +02:00
|
|
|
"maunium.net/go/mautrix/appservice"
|
2020-05-08 21:32:22 +02:00
|
|
|
"maunium.net/go/mautrix/event"
|
|
|
|
"maunium.net/go/mautrix/id"
|
2019-05-24 01:33:26 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2019-05-24 13:09:48 +02:00
|
|
|
ErrNoCustomMXID = errors.New("no custom mxid set")
|
2019-05-24 01:33:26 +02:00
|
|
|
ErrMismatchingMXID = errors.New("whoami result does not match custom mxid")
|
|
|
|
)
|
|
|
|
|
2020-05-08 21:32:22 +02:00
|
|
|
func (puppet *Puppet) SwitchCustomMXID(accessToken string, mxid id.UserID) error {
|
2019-05-24 01:33:26 +02:00
|
|
|
prevCustomMXID := puppet.CustomMXID
|
|
|
|
if puppet.customIntent != nil {
|
|
|
|
puppet.stopSyncing()
|
|
|
|
}
|
|
|
|
puppet.CustomMXID = mxid
|
|
|
|
puppet.AccessToken = accessToken
|
|
|
|
|
|
|
|
err := puppet.StartCustomMXID()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(prevCustomMXID) > 0 {
|
|
|
|
delete(puppet.bridge.puppetsByCustomMXID, prevCustomMXID)
|
|
|
|
}
|
|
|
|
if len(puppet.CustomMXID) > 0 {
|
|
|
|
puppet.bridge.puppetsByCustomMXID[puppet.CustomMXID] = puppet
|
|
|
|
}
|
2020-07-10 15:26:55 +02:00
|
|
|
puppet.EnablePresence = puppet.bridge.Config.Bridge.DefaultBridgePresence
|
|
|
|
puppet.EnableReceipts = puppet.bridge.Config.Bridge.DefaultBridgeReceipts
|
2019-12-30 19:40:20 +01:00
|
|
|
puppet.bridge.AS.StateStore.MarkRegistered(puppet.CustomMXID)
|
2019-05-24 01:33:26 +02:00
|
|
|
puppet.Update()
|
|
|
|
// TODO leave rooms with default puppet
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-05-08 21:32:22 +02:00
|
|
|
func (puppet *Puppet) loginWithSharedSecret(mxid id.UserID) (string, error) {
|
2019-12-30 19:21:04 +01:00
|
|
|
mac := hmac.New(sha512.New, []byte(puppet.bridge.Config.Bridge.LoginSharedSecret))
|
|
|
|
mac.Write([]byte(mxid))
|
|
|
|
resp, err := puppet.bridge.AS.BotClient().Login(&mautrix.ReqLogin{
|
|
|
|
Type: "m.login.password",
|
2020-05-08 21:32:22 +02:00
|
|
|
Identifier: mautrix.UserIdentifier{Type: "m.id.user", User: string(mxid)},
|
2019-12-30 19:21:04 +01:00
|
|
|
Password: hex.EncodeToString(mac.Sum(nil)),
|
|
|
|
DeviceID: "WhatsApp Bridge",
|
|
|
|
InitialDeviceDisplayName: "WhatsApp Bridge",
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
return resp.AccessToken, nil
|
|
|
|
}
|
|
|
|
|
2019-05-24 01:33:26 +02:00
|
|
|
func (puppet *Puppet) newCustomIntent() (*appservice.IntentAPI, error) {
|
|
|
|
if len(puppet.CustomMXID) == 0 {
|
|
|
|
return nil, ErrNoCustomMXID
|
|
|
|
}
|
|
|
|
client, err := mautrix.NewClient(puppet.bridge.AS.HomeserverURL, puppet.CustomMXID, puppet.AccessToken)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-05-08 21:32:22 +02:00
|
|
|
client.Logger = puppet.bridge.AS.Log.Sub(string(puppet.CustomMXID))
|
2019-05-24 13:09:48 +02:00
|
|
|
client.Syncer = puppet
|
2019-05-24 01:33:26 +02:00
|
|
|
client.Store = puppet
|
|
|
|
|
|
|
|
ia := puppet.bridge.AS.NewIntentAPI("custom")
|
|
|
|
ia.Client = client
|
2020-05-08 21:32:22 +02:00
|
|
|
ia.Localpart, _, _ = puppet.CustomMXID.Parse()
|
2019-05-24 01:33:26 +02:00
|
|
|
ia.UserID = puppet.CustomMXID
|
|
|
|
ia.IsCustomPuppet = true
|
|
|
|
return ia, nil
|
|
|
|
}
|
|
|
|
|
2019-05-27 12:46:04 +02:00
|
|
|
func (puppet *Puppet) clearCustomMXID() {
|
|
|
|
puppet.CustomMXID = ""
|
|
|
|
puppet.AccessToken = ""
|
|
|
|
puppet.customIntent = nil
|
|
|
|
puppet.customTypingIn = nil
|
|
|
|
puppet.customUser = nil
|
|
|
|
}
|
|
|
|
|
2019-05-24 01:33:26 +02:00
|
|
|
func (puppet *Puppet) StartCustomMXID() error {
|
|
|
|
if len(puppet.CustomMXID) == 0 {
|
2019-05-27 12:46:04 +02:00
|
|
|
puppet.clearCustomMXID()
|
2019-05-24 01:33:26 +02:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
intent, err := puppet.newCustomIntent()
|
|
|
|
if err != nil {
|
2019-05-27 12:46:04 +02:00
|
|
|
puppet.clearCustomMXID()
|
2019-05-24 01:33:26 +02:00
|
|
|
return err
|
|
|
|
}
|
2020-05-08 21:32:22 +02:00
|
|
|
resp, err := intent.Whoami()
|
2019-05-24 01:33:26 +02:00
|
|
|
if err != nil {
|
2019-05-27 12:46:04 +02:00
|
|
|
puppet.clearCustomMXID()
|
2019-05-24 01:33:26 +02:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
if resp.UserID != puppet.CustomMXID {
|
2019-05-27 12:46:04 +02:00
|
|
|
puppet.clearCustomMXID()
|
2019-05-24 01:33:26 +02:00
|
|
|
return ErrMismatchingMXID
|
|
|
|
}
|
|
|
|
puppet.customIntent = intent
|
2020-05-08 21:32:22 +02:00
|
|
|
puppet.customTypingIn = make(map[id.RoomID]bool)
|
2019-05-27 12:46:04 +02:00
|
|
|
puppet.customUser = puppet.bridge.GetUserByMXID(puppet.CustomMXID)
|
2019-05-24 01:33:26 +02:00
|
|
|
puppet.startSyncing()
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (puppet *Puppet) startSyncing() {
|
|
|
|
if !puppet.bridge.Config.Bridge.SyncWithCustomPuppets {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
go func() {
|
|
|
|
puppet.log.Debugln("Starting syncing...")
|
2019-05-27 12:46:04 +02:00
|
|
|
puppet.customIntent.SyncPresence = "offline"
|
2019-05-24 01:33:26 +02:00
|
|
|
err := puppet.customIntent.Sync()
|
|
|
|
if err != nil {
|
|
|
|
puppet.log.Errorln("Fatal error syncing:", err)
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (puppet *Puppet) stopSyncing() {
|
|
|
|
if !puppet.bridge.Config.Bridge.SyncWithCustomPuppets {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
puppet.customIntent.StopSync()
|
|
|
|
}
|
|
|
|
|
2020-07-10 13:53:18 +02:00
|
|
|
func (puppet *Puppet) ProcessResponse(resp *mautrix.RespSync, _ string) error {
|
2019-08-24 21:39:12 +02:00
|
|
|
if !puppet.customUser.IsConnected() {
|
|
|
|
puppet.log.Debugln("Skipping sync processing: custom user not connected to whatsapp")
|
2019-05-27 13:01:30 +02:00
|
|
|
return nil
|
2019-05-27 12:46:04 +02:00
|
|
|
}
|
|
|
|
for roomID, events := range resp.Rooms.Join {
|
|
|
|
portal := puppet.bridge.GetPortalByMXID(roomID)
|
|
|
|
if portal == nil {
|
|
|
|
continue
|
|
|
|
}
|
2020-05-08 21:32:22 +02:00
|
|
|
for _, evt := range events.Ephemeral.Events {
|
|
|
|
err := evt.Content.ParseRaw(evt.Type)
|
|
|
|
if err != nil {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
switch evt.Type {
|
|
|
|
case event.EphemeralEventReceipt:
|
2020-07-10 15:26:55 +02:00
|
|
|
if puppet.EnableReceipts {
|
2020-07-10 13:53:18 +02:00
|
|
|
go puppet.handleReceiptEvent(portal, evt)
|
|
|
|
}
|
2020-05-08 21:32:22 +02:00
|
|
|
case event.EphemeralEventTyping:
|
|
|
|
go puppet.handleTypingEvent(portal, evt)
|
2019-05-27 12:46:04 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-07-10 13:53:18 +02:00
|
|
|
if puppet.EnablePresence {
|
|
|
|
for _, evt := range resp.Presence.Events {
|
|
|
|
if evt.Sender != puppet.CustomMXID {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
err := evt.Content.ParseRaw(evt.Type)
|
|
|
|
if err != nil {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
go puppet.handlePresenceEvent(evt)
|
2020-05-08 21:32:22 +02:00
|
|
|
}
|
2019-05-27 12:46:04 +02:00
|
|
|
}
|
2019-05-24 01:33:26 +02:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-05-08 21:32:22 +02:00
|
|
|
func (puppet *Puppet) handlePresenceEvent(event *event.Event) {
|
2019-05-27 12:46:04 +02:00
|
|
|
presence := whatsapp.PresenceAvailable
|
|
|
|
if event.Content.Raw["presence"].(string) != "online" {
|
|
|
|
presence = whatsapp.PresenceUnavailable
|
2020-05-24 16:47:05 +02:00
|
|
|
puppet.customUser.log.Debugln("Marking offline")
|
2019-05-27 12:46:04 +02:00
|
|
|
} else {
|
2020-05-24 16:47:05 +02:00
|
|
|
puppet.customUser.log.Debugln("Marking online")
|
2019-05-27 12:46:04 +02:00
|
|
|
}
|
|
|
|
_, err := puppet.customUser.Conn.Presence("", presence)
|
|
|
|
if err != nil {
|
|
|
|
puppet.customUser.log.Warnln("Failed to set presence:", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-08 21:32:22 +02:00
|
|
|
func (puppet *Puppet) handleReceiptEvent(portal *Portal, event *event.Event) {
|
|
|
|
for eventID, receipts := range *event.Content.AsReceipt() {
|
|
|
|
if _, ok := receipts.Read[puppet.CustomMXID]; !ok {
|
2019-05-27 12:46:04 +02:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
message := puppet.bridge.DB.Message.GetByMXID(eventID)
|
|
|
|
if message == nil {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
puppet.customUser.log.Infofln("Marking %s/%s in %s/%s as read", message.JID, message.MXID, portal.Key.JID, portal.MXID)
|
|
|
|
_, err := puppet.customUser.Conn.Read(portal.Key.JID, message.JID)
|
|
|
|
if err != nil {
|
|
|
|
puppet.customUser.log.Warnln("Error marking read:", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-08 21:32:22 +02:00
|
|
|
func (puppet *Puppet) handleTypingEvent(portal *Portal, evt *event.Event) {
|
2019-05-27 12:46:04 +02:00
|
|
|
isTyping := false
|
2020-05-08 21:32:22 +02:00
|
|
|
for _, userID := range evt.Content.AsTyping().UserIDs {
|
2019-05-27 12:46:04 +02:00
|
|
|
if userID == puppet.CustomMXID {
|
|
|
|
isTyping = true
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
2020-05-08 21:32:22 +02:00
|
|
|
if puppet.customTypingIn[evt.RoomID] != isTyping {
|
|
|
|
puppet.customTypingIn[evt.RoomID] = isTyping
|
2019-05-27 12:46:04 +02:00
|
|
|
presence := whatsapp.PresenceComposing
|
|
|
|
if !isTyping {
|
|
|
|
puppet.customUser.log.Infofln("Marking not typing in %s/%s", portal.Key.JID, portal.MXID)
|
|
|
|
presence = whatsapp.PresencePaused
|
|
|
|
} else {
|
|
|
|
puppet.customUser.log.Infofln("Marking typing in %s/%s", portal.Key.JID, portal.MXID)
|
|
|
|
}
|
|
|
|
_, err := puppet.customUser.Conn.Presence(portal.Key.JID, presence)
|
|
|
|
if err != nil {
|
|
|
|
puppet.customUser.log.Warnln("Error setting typing:", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-10 13:53:18 +02:00
|
|
|
func (puppet *Puppet) OnFailedSync(_ *mautrix.RespSync, err error) (time.Duration, error) {
|
2019-05-24 01:33:26 +02:00
|
|
|
puppet.log.Warnln("Sync error:", err)
|
|
|
|
return 10 * time.Second, nil
|
|
|
|
}
|
|
|
|
|
2020-05-08 21:32:22 +02:00
|
|
|
func (puppet *Puppet) GetFilterJSON(_ id.UserID) *mautrix.Filter {
|
|
|
|
everything := []event.Type{{Type: "*"}}
|
|
|
|
return &mautrix.Filter{
|
|
|
|
Presence: mautrix.FilterPart{
|
|
|
|
Senders: []id.UserID{puppet.CustomMXID},
|
|
|
|
Types: []event.Type{event.EphemeralEventPresence},
|
|
|
|
},
|
|
|
|
AccountData: mautrix.FilterPart{NotTypes: everything},
|
|
|
|
Room: mautrix.RoomFilter{
|
|
|
|
Ephemeral: mautrix.FilterPart{Types: []event.Type{event.EphemeralEventTyping, event.EphemeralEventReceipt}},
|
|
|
|
IncludeLeave: false,
|
|
|
|
AccountData: mautrix.FilterPart{NotTypes: everything},
|
|
|
|
State: mautrix.FilterPart{NotTypes: everything},
|
|
|
|
Timeline: mautrix.FilterPart{NotTypes: everything},
|
|
|
|
},
|
|
|
|
}
|
2019-05-24 01:33:26 +02:00
|
|
|
}
|
|
|
|
|
2020-07-10 13:53:18 +02:00
|
|
|
func (puppet *Puppet) SaveFilterID(_ id.UserID, _ string) {}
|
|
|
|
func (puppet *Puppet) SaveNextBatch(_ id.UserID, nbt string) { puppet.NextBatch = nbt; puppet.Update() }
|
|
|
|
func (puppet *Puppet) SaveRoom(_ *mautrix.Room) {}
|
|
|
|
func (puppet *Puppet) LoadFilterID(_ id.UserID) string { return "" }
|
|
|
|
func (puppet *Puppet) LoadNextBatch(_ id.UserID) string { return puppet.NextBatch }
|
|
|
|
func (puppet *Puppet) LoadRoom(_ id.RoomID) *mautrix.Room { return nil }
|