slidge-whatsapp 0.2.5__cp311-cp311-manylinux_2_36_aarch64.whl → 0.2.7__cp311-cp311-manylinux_2_36_aarch64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of slidge-whatsapp might be problematic. Click here for more details.
- slidge_whatsapp/config.py +3 -0
- slidge_whatsapp/event.go +31 -26
- slidge_whatsapp/gateway.go +13 -9
- slidge_whatsapp/gateway.py +2 -2
- slidge_whatsapp/generated/_whatsapp.cpython-311-aarch64-linux-gnu.h +170 -170
- slidge_whatsapp/generated/_whatsapp.cpython-311-aarch64-linux-gnu.so +0 -0
- slidge_whatsapp/generated/build.py +135 -135
- slidge_whatsapp/generated/whatsapp.c +1496 -1496
- slidge_whatsapp/generated/whatsapp.go +1137 -1137
- slidge_whatsapp/generated/whatsapp.py +1216 -1216
- slidge_whatsapp/generated/whatsapp_go.h +170 -170
- slidge_whatsapp/go.mod +15 -12
- slidge_whatsapp/go.sum +35 -29
- slidge_whatsapp/media/media.go +21 -11
- slidge_whatsapp/session.go +73 -66
- slidge_whatsapp/vendor/github.com/ebitengine/purego/dlfcn.go +4 -4
- slidge_whatsapp/vendor/github.com/ebitengine/purego/dlfcn_darwin.go +0 -5
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/go_libinit.go +3 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/symbols.go +40 -20
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/CHANGELOG.md +14 -1
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/ffi.go +2 -2
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/fun.go +10 -2
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/lib.go +1 -1
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/lib_unix.go +1 -1
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/lib_windows.go +1 -1
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/README.md +2 -7
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/callback.go +2 -1
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3-binding.c +8510 -5090
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3-binding.h +344 -150
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3.go +57 -23
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_unlock_notify.c +4 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_unlock_notify.go +4 -0
- slidge_whatsapp/vendor/github.com/petermattis/goid/.gitignore +4 -0
- slidge_whatsapp/vendor/github.com/petermattis/goid/LICENSE +202 -0
- slidge_whatsapp/vendor/github.com/petermattis/goid/README.md +4 -0
- slidge_whatsapp/vendor/github.com/petermattis/goid/goid.go +35 -0
- slidge_whatsapp/vendor/github.com/petermattis/goid/goid_gccgo.go +26 -0
- slidge_whatsapp/vendor/github.com/petermattis/goid/goid_go1.3.c +23 -0
- slidge_whatsapp/vendor/github.com/petermattis/goid/goid_go1.3.go +22 -0
- slidge_whatsapp/vendor/github.com/petermattis/goid/goid_go1.4.go +35 -0
- slidge_whatsapp/vendor/github.com/petermattis/goid/goid_go1.4.s +18 -0
- slidge_whatsapp/vendor/github.com/petermattis/goid/goid_go1.5.go +28 -0
- slidge_whatsapp/vendor/github.com/petermattis/goid/goid_go1.5.s +44 -0
- slidge_whatsapp/vendor/github.com/petermattis/goid/goid_slow.go +24 -0
- slidge_whatsapp/vendor/github.com/petermattis/goid/runtime_gccgo_go1.8.go +17 -0
- slidge_whatsapp/vendor/github.com/petermattis/goid/runtime_go1.23.go +38 -0
- slidge_whatsapp/vendor/github.com/petermattis/goid/runtime_go1.5.go +57 -0
- slidge_whatsapp/vendor/github.com/petermattis/goid/runtime_go1.6.go +43 -0
- slidge_whatsapp/vendor/github.com/petermattis/goid/runtime_go1.9.go +37 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/CONTRIBUTING.md +43 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/README.md +31 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/console.go +20 -5
- slidge_whatsapp/vendor/github.com/rs/zerolog/log/log.go +131 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/log.go +1 -1
- slidge_whatsapp/vendor/github.com/rs/zerolog/sampler.go +4 -1
- slidge_whatsapp/vendor/github.com/rs/zerolog/writer.go +9 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/groups/GroupCipher.go +17 -6
- slidge_whatsapp/vendor/go.mau.fi/libsignal/groups/GroupSessionBuilder.go +17 -7
- slidge_whatsapp/vendor/go.mau.fi/libsignal/groups/state/store/SenderKeyStore.go +4 -2
- slidge_whatsapp/vendor/go.mau.fi/libsignal/keys/chain/ChainKey.go +1 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/keys/identity/IdentityKey.go +1 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/logger/DefaultLogger.go +2 -2
- slidge_whatsapp/vendor/go.mau.fi/libsignal/serialize/FingerprintProtocol.pb.go +3 -2
- slidge_whatsapp/vendor/go.mau.fi/libsignal/serialize/LocalStorageProtocol.pb.go +3 -2
- slidge_whatsapp/vendor/go.mau.fi/libsignal/serialize/WhisperTextProtocol.pb.go +3 -2
- slidge_whatsapp/vendor/go.mau.fi/libsignal/session/Session.go +41 -17
- slidge_whatsapp/vendor/go.mau.fi/libsignal/session/SessionCipher.go +64 -30
- slidge_whatsapp/vendor/go.mau.fi/libsignal/state/store/IdentityKeyStore.go +5 -3
- slidge_whatsapp/vendor/go.mau.fi/libsignal/state/store/MessageKeyStore.go +6 -4
- slidge_whatsapp/vendor/go.mau.fi/libsignal/state/store/PreKeyStore.go +6 -4
- slidge_whatsapp/vendor/go.mau.fi/libsignal/state/store/SessionStore.go +8 -6
- slidge_whatsapp/vendor/go.mau.fi/libsignal/state/store/SignedPreKeyStore.go +7 -5
- slidge_whatsapp/vendor/go.mau.fi/util/dbutil/connlog.go +257 -0
- slidge_whatsapp/vendor/go.mau.fi/util/dbutil/database.go +309 -0
- slidge_whatsapp/vendor/go.mau.fi/util/dbutil/iter.go +233 -0
- slidge_whatsapp/vendor/go.mau.fi/util/dbutil/json.go +47 -0
- slidge_whatsapp/vendor/go.mau.fi/util/dbutil/log.go +129 -0
- slidge_whatsapp/vendor/go.mau.fi/util/dbutil/massinsert.go +164 -0
- slidge_whatsapp/vendor/go.mau.fi/util/dbutil/queryhelper.go +137 -0
- slidge_whatsapp/vendor/go.mau.fi/util/dbutil/reflectscan.go +30 -0
- slidge_whatsapp/vendor/go.mau.fi/util/dbutil/transaction.go +180 -0
- slidge_whatsapp/vendor/go.mau.fi/util/dbutil/upgrades.go +250 -0
- slidge_whatsapp/vendor/go.mau.fi/util/dbutil/upgradetable.go +331 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exerrors/dualerror.go +33 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exerrors/must.go +23 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exhttp/cors.go +32 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exhttp/handleerrors.go +64 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exhttp/json.go +36 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exhttp/middleware.go +30 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exhttp/networkerror.go +37 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exstrings/stringutil.go +76 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exsync/event.go +88 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exsync/returnonce.go +25 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exsync/ringbuffer.go +139 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exsync/syncmap.go +94 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exsync/syncset.go +136 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exzerolog/callermarshal.go +28 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exzerolog/defaults.go +32 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exzerolog/generics.go +45 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exzerolog/writer.go +81 -0
- slidge_whatsapp/vendor/go.mau.fi/util/ptr/ptr.go +43 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate/decode.go +27 -26
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate/encode.go +4 -3
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate/keys.go +5 -4
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate.go +27 -25
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/armadillomessage.go +40 -7
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/binary/encoder.go +1 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/broadcast.go +5 -4
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/call.go +1 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/client.go +119 -37
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/connectionevents.go +29 -11
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/download-to-file.go +63 -30
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/download.go +74 -34
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/errors.go +1 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/group.go +61 -31
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/internals.go +188 -152
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/keepalive.go +3 -2
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/mediaconn.go +5 -3
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/mediaretry.go +2 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/message.go +444 -135
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/msgsecret.go +118 -31
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/notification.go +78 -42
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/pair-code.go +7 -4
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/pair.go +42 -18
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/prekeys.go +9 -5
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/presence.go +2 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/privacysettings.go +10 -11
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/extra.go +7 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloAddMessage/InstamadilloAddMessage.pb.go +983 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloAddMessage/InstamadilloAddMessage.proto +85 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloAddMessage/extra.go +3 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeActionLog/InstamadilloCoreTypeActionLog.pb.go +197 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeActionLog/InstamadilloCoreTypeActionLog.proto +13 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeAdminMessage/InstamadilloCoreTypeAdminMessage.pb.go +279 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeAdminMessage/InstamadilloCoreTypeAdminMessage.proto +21 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeCollection/InstamadilloCoreTypeCollection.pb.go +137 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeCollection/InstamadilloCoreTypeCollection.proto +10 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeLink/InstamadilloCoreTypeLink.pb.go +313 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeLink/InstamadilloCoreTypeLink.proto +27 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeMedia/InstamadilloCoreTypeMedia.pb.go +1299 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeMedia/InstamadilloCoreTypeMedia.proto +112 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeText/InstamadilloCoreTypeText.pb.go +514 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeText/InstamadilloCoreTypeText.proto +47 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloDeleteMessage/InstamadilloDeleteMessage.pb.go +123 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloDeleteMessage/InstamadilloDeleteMessage.proto +7 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloDeleteMessage/extra.go +3 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloSupplementMessage/InstamadilloSupplementMessage.pb.go +720 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloSupplementMessage/InstamadilloSupplementMessage.proto +59 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloSupplementMessage/extra.go +3 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloTransportPayload/InstamadilloTransportPayload.pb.go +365 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloTransportPayload/InstamadilloTransportPayload.proto +33 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloXmaContentRef/InstamadilloXmaContentRef.pb.go +1238 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloXmaContentRef/InstamadilloXmaContentRef.proto +105 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waAdv/WAAdv.pb.go +39 -9
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloApplication/WAArmadilloApplication.pb.go +354 -175
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloApplication/WAArmadilloApplication.proto +5 -5
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloXMA/WAArmadilloXMA.pb.go +170 -15
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloXMA/WAArmadilloXMA.proto +4 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCert/WACert.pb.go +29 -9
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waChatLockSettings/WAProtobufsChatLockSettings.pb.go +13 -9
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCommon/WACommon.pb.go +344 -31
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCommon/WACommon.proto +26 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCompanionReg/{WAWebProtobufsCompanionReg.pb.go → WACompanionReg.pb.go} +184 -89
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCompanionReg/{WAWebProtobufsCompanionReg.proto → WACompanionReg.proto} +2 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waConsumerApplication/WAConsumerApplication.pb.go +173 -9
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waDeviceCapabilities/WAProtobufsDeviceCapabilities.pb.go +78 -16
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waDeviceCapabilities/WAProtobufsDeviceCapabilities.proto +5 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waE2E/WAWebProtobufsE2E.pb.go +7428 -2151
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waE2E/WAWebProtobufsE2E.proto +373 -44
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waHistorySync/WAWebProtobufsHistorySync.pb.go +456 -135
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waHistorySync/WAWebProtobufsHistorySync.proto +14 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waLidMigrationSyncPayload/WAWebProtobufLidMigrationSyncPayload.pb.go +198 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waLidMigrationSyncPayload/WAWebProtobufLidMigrationSyncPayload.proto +14 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMediaTransport/WAMediaTransport.pb.go +162 -9
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMediaTransport/WAMediaTransport.proto +1 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMmsRetry/WAMmsRetry.pb.go +32 -9
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMmsRetry/WAMmsRetry.proto +1 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMsgApplication/WAMsgApplication.pb.go +192 -52
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMsgApplication/WAMsgApplication.proto +8 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMsgTransport/WAMsgTransport.pb.go +60 -9
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMsgTransport/extra.go +7 -6
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMultiDevice/WAMultiDevice.pb.go +39 -9
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waServerSync/WAServerSync.pb.go +61 -9
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waStatusAttributions/WAStatusAttributions.pb.go +800 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waStatusAttributions/WAStatusAttributions.proto +72 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waSyncAction/WASyncAction.pb.go +1344 -438
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waSyncAction/WASyncAction.proto +52 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waUserPassword/WAProtobufsUserPassword.pb.go +27 -9
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waVnameCert/WAWebProtobufsVnameCert.pb.go +59 -9
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWa6/WAWebProtobufsWa6.pb.go +382 -78
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWa6/WAWebProtobufsWa6.proto +8 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWeb/WAWebProtobufsWeb.pb.go +563 -9
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWeb/WAWebProtobufsWeb.proto +4 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/receipt.go +25 -9
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/reportingfields.json +1 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/reportingtoken.go +176 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/retry.go +39 -21
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/send.go +261 -75
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/sendfb.go +28 -16
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/clientpayload.go +3 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/noop.go +85 -43
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/signal.go +75 -88
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/container.go +86 -65
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/lidmap.go +186 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/store.go +291 -167
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/00-latest-schema.sql +155 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/03-message-secrets.sql +11 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/04-privacy-tokens.sql +8 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/05-account-jid-format.sql +2 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/06-facebook-uuid.sql +2 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/07-account-lid.sql +2 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/08-lid-mapping.sql +5 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/09-decryption-buffer.sql +10 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/10-chat-db-lid-migration-ts.sql +2 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/upgrades.go +22 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/store.go +107 -56
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/botmap.go +210 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/events/events.go +13 -2
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/group.go +15 -6
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/jid.go +7 -8
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/message.go +18 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/update.go +3 -2
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/upload.go +1 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/user.go +47 -29
- slidge_whatsapp/vendor/golang.org/x/exp/LICENSE +27 -0
- slidge_whatsapp/vendor/golang.org/x/exp/PATENTS +22 -0
- slidge_whatsapp/vendor/golang.org/x/exp/constraints/constraints.go +54 -0
- slidge_whatsapp/vendor/golang.org/x/net/http/httpguts/guts.go +50 -0
- slidge_whatsapp/vendor/golang.org/x/net/http/httpguts/httplex.go +347 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/.gitignore +2 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/ascii.go +53 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/ciphers.go +641 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/client_conn_pool.go +311 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/config.go +122 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/config_go124.go +61 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/config_pre_go124.go +16 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/databuffer.go +149 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/errors.go +145 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/flow.go +120 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/frame.go +1702 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/gotrack.go +170 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/hpack/encode.go +245 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/hpack/hpack.go +523 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/hpack/huffman.go +226 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/hpack/static_table.go +188 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/hpack/tables.go +403 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/http2.go +432 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/pipe.go +184 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/server.go +3350 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/timer.go +20 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/transport.go +3287 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/unencrypted.go +32 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/write.go +381 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/writesched.go +251 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/writesched_priority.go +451 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/writesched_random.go +77 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/writesched_roundrobin.go +119 -0
- slidge_whatsapp/vendor/golang.org/x/net/idna/go118.go +13 -0
- slidge_whatsapp/vendor/golang.org/x/net/idna/idna10.0.0.go +769 -0
- slidge_whatsapp/vendor/golang.org/x/net/idna/idna9.0.0.go +717 -0
- slidge_whatsapp/vendor/golang.org/x/net/idna/pre_go118.go +11 -0
- slidge_whatsapp/vendor/golang.org/x/net/idna/punycode.go +217 -0
- slidge_whatsapp/vendor/golang.org/x/net/idna/tables10.0.0.go +4559 -0
- slidge_whatsapp/vendor/golang.org/x/net/idna/tables11.0.0.go +4653 -0
- slidge_whatsapp/vendor/golang.org/x/net/idna/tables12.0.0.go +4733 -0
- slidge_whatsapp/vendor/golang.org/x/net/idna/tables13.0.0.go +4959 -0
- slidge_whatsapp/vendor/golang.org/x/net/idna/tables15.0.0.go +5144 -0
- slidge_whatsapp/vendor/golang.org/x/net/idna/tables9.0.0.go +4486 -0
- slidge_whatsapp/vendor/golang.org/x/net/idna/trie.go +51 -0
- slidge_whatsapp/vendor/golang.org/x/net/idna/trie12.0.0.go +30 -0
- slidge_whatsapp/vendor/golang.org/x/net/idna/trie13.0.0.go +30 -0
- slidge_whatsapp/vendor/golang.org/x/net/idna/trieval.go +119 -0
- slidge_whatsapp/vendor/golang.org/x/net/internal/httpcommon/ascii.go +53 -0
- slidge_whatsapp/vendor/golang.org/x/net/internal/httpcommon/headermap.go +115 -0
- slidge_whatsapp/vendor/golang.org/x/net/internal/httpcommon/request.go +467 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_darwin.go +148 -1
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux.go +16 -26
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.go +84 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.s +20 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.go +84 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.s +20 -0
- slidge_whatsapp/vendor/golang.org/x/sys/windows/security_windows.go +44 -5
- slidge_whatsapp/vendor/golang.org/x/sys/windows/syscall_windows.go +4 -2
- slidge_whatsapp/vendor/golang.org/x/sys/windows/types_windows.go +239 -0
- slidge_whatsapp/vendor/golang.org/x/sys/windows/zsyscall_windows.go +9 -0
- slidge_whatsapp/vendor/golang.org/x/text/LICENSE +27 -0
- slidge_whatsapp/vendor/golang.org/x/text/PATENTS +22 -0
- slidge_whatsapp/vendor/golang.org/x/text/secure/bidirule/bidirule.go +336 -0
- slidge_whatsapp/vendor/golang.org/x/text/secure/bidirule/bidirule10.0.0.go +11 -0
- slidge_whatsapp/vendor/golang.org/x/text/secure/bidirule/bidirule9.0.0.go +14 -0
- slidge_whatsapp/vendor/golang.org/x/text/transform/transform.go +709 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/bidi.go +359 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/bracket.go +335 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/core.go +1071 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/prop.go +206 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/tables10.0.0.go +1815 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/tables11.0.0.go +1887 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/tables12.0.0.go +1923 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/tables13.0.0.go +1955 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/tables15.0.0.go +2042 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/tables9.0.0.go +1781 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/trieval.go +48 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/composition.go +512 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/forminfo.go +279 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/input.go +109 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/iter.go +458 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/normalize.go +610 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/readwriter.go +125 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/tables10.0.0.go +7657 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/tables11.0.0.go +7693 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/tables12.0.0.go +7710 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/tables13.0.0.go +7760 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/tables15.0.0.go +7907 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/tables9.0.0.go +7637 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/transform.go +88 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/trie.go +54 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/editiondefaults/editions_defaults.binpb +0 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/filedesc/editions.go +3 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/descriptor_gen.go +16 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/strs/{strings_unsafe_go121.go → strings_unsafe.go} +0 -2
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/version/version.go +1 -1
- slidge_whatsapp/vendor/google.golang.org/protobuf/proto/merge.go +6 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/reflect/protoreflect/source_gen.go +2 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/reflect/protoreflect/{value_unsafe_go121.go → value_unsafe.go} +0 -2
- slidge_whatsapp/vendor/modules.txt +52 -13
- {slidge_whatsapp-0.2.5.dist-info → slidge_whatsapp-0.2.7.dist-info}/METADATA +1 -1
- {slidge_whatsapp-0.2.5.dist-info → slidge_whatsapp-0.2.7.dist-info}/RECORD +330 -184
- {slidge_whatsapp-0.2.5.dist-info → slidge_whatsapp-0.2.7.dist-info}/WHEEL +1 -1
- slidge_whatsapp/vendor/github.com/rs/zerolog/CNAME +0 -1
- slidge_whatsapp/vendor/github.com/rs/zerolog/_config.yml +0 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waAdv/WAAdv.pb.raw +0 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloApplication/WAArmadilloApplication.pb.raw +0 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloXMA/WAArmadilloXMA.pb.raw +0 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCert/WACert.pb.raw +0 -23
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waChatLockSettings/WAProtobufsChatLockSettings.pb.raw +0 -7
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCommon/WACommon.pb.raw +0 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCompanionReg/WAWebProtobufsCompanionReg.pb.raw +0 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waConsumerApplication/WAConsumerApplication.pb.raw +0 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waDeviceCapabilities/WAProtobufsDeviceCapabilities.pb.raw +0 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waE2E/WAWebProtobufsE2E.pb.raw +0 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waHistorySync/WAWebProtobufsHistorySync.pb.raw +0 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMediaTransport/WAMediaTransport.pb.raw +0 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMmsRetry/WAMmsRetry.pb.raw +0 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMsgApplication/WAMsgApplication.pb.raw +0 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMsgTransport/WAMsgTransport.pb.raw +0 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMultiDevice/WAMultiDevice.pb.raw +0 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waServerSync/WAServerSync.pb.raw +0 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waSyncAction/WASyncAction.pb.raw +0 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waUserPassword/WAProtobufsUserPassword.pb.raw +0 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waVnameCert/WAWebProtobufsVnameCert.pb.raw +0 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWa6/WAWebProtobufsWa6.pb.raw +0 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWeb/WAWebProtobufsWeb.pb.raw +0 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrade.go +0 -296
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/strs/strings_unsafe_go120.go +0 -94
- slidge_whatsapp/vendor/google.golang.org/protobuf/reflect/protoreflect/value_unsafe_go120.go +0 -98
- {slidge_whatsapp-0.2.5.dist-info → slidge_whatsapp-0.2.7.dist-info}/LICENSE +0 -0
- {slidge_whatsapp-0.2.5.dist-info → slidge_whatsapp-0.2.7.dist-info}/entry_points.txt +0 -0
|
@@ -33,7 +33,7 @@ type DangerousInternalClient struct {
|
|
|
33
33
|
c *Client
|
|
34
34
|
}
|
|
35
35
|
|
|
36
|
-
// DangerousInternals allows access to
|
|
36
|
+
// DangerousInternals allows access to all unexported methods in Client.
|
|
37
37
|
//
|
|
38
38
|
// Deprecated: dangerous
|
|
39
39
|
func (cli *Client) DangerousInternals() *DangerousInternalClient {
|
|
@@ -47,16 +47,16 @@ func (int *DangerousInternalClient) FilterContacts(mutations []appstate.Mutation
|
|
|
47
47
|
return int.c.filterContacts(mutations)
|
|
48
48
|
}
|
|
49
49
|
|
|
50
|
-
func (int *DangerousInternalClient) DispatchAppState(mutation appstate.Mutation, fullSync bool, emitOnFullSync bool) {
|
|
51
|
-
int.c.dispatchAppState(mutation, fullSync, emitOnFullSync)
|
|
50
|
+
func (int *DangerousInternalClient) DispatchAppState(ctx context.Context, mutation appstate.Mutation, fullSync bool, emitOnFullSync bool) {
|
|
51
|
+
int.c.dispatchAppState(ctx, mutation, fullSync, emitOnFullSync)
|
|
52
52
|
}
|
|
53
53
|
|
|
54
|
-
func (int *DangerousInternalClient) DownloadExternalAppStateBlob(ref *waServerSync.ExternalBlobReference) ([]byte, error) {
|
|
55
|
-
return int.c.downloadExternalAppStateBlob(ref)
|
|
54
|
+
func (int *DangerousInternalClient) DownloadExternalAppStateBlob(ctx context.Context, ref *waServerSync.ExternalBlobReference) ([]byte, error) {
|
|
55
|
+
return int.c.downloadExternalAppStateBlob(ctx, ref)
|
|
56
56
|
}
|
|
57
57
|
|
|
58
|
-
func (int *DangerousInternalClient) FetchAppStatePatches(name appstate.WAPatchName, fromVersion uint64, snapshot bool) (*appstate.PatchList, error) {
|
|
59
|
-
return int.c.fetchAppStatePatches(name, fromVersion, snapshot)
|
|
58
|
+
func (int *DangerousInternalClient) FetchAppStatePatches(ctx context.Context, name appstate.WAPatchName, fromVersion uint64, snapshot bool) (*appstate.PatchList, error) {
|
|
59
|
+
return int.c.fetchAppStatePatches(ctx, name, fromVersion, snapshot)
|
|
60
60
|
}
|
|
61
61
|
|
|
62
62
|
func (int *DangerousInternalClient) RequestMissingAppStateKeys(ctx context.Context, patches *appstate.PatchList) {
|
|
@@ -67,16 +67,16 @@ func (int *DangerousInternalClient) RequestAppStateKeys(ctx context.Context, raw
|
|
|
67
67
|
int.c.requestAppStateKeys(ctx, rawKeyIDs)
|
|
68
68
|
}
|
|
69
69
|
|
|
70
|
-
func (int *DangerousInternalClient) HandleDecryptedArmadillo(info *types.MessageInfo, decrypted []byte, retryCount int) bool {
|
|
71
|
-
return int.c.handleDecryptedArmadillo(info, decrypted, retryCount)
|
|
70
|
+
func (int *DangerousInternalClient) HandleDecryptedArmadillo(ctx context.Context, info *types.MessageInfo, decrypted []byte, retryCount int) (handled, handlerFailed bool) {
|
|
71
|
+
return int.c.handleDecryptedArmadillo(ctx, info, decrypted, retryCount)
|
|
72
72
|
}
|
|
73
73
|
|
|
74
|
-
func (int *DangerousInternalClient) GetBroadcastListParticipants(jid types.JID) ([]types.JID, error) {
|
|
75
|
-
return int.c.getBroadcastListParticipants(jid)
|
|
74
|
+
func (int *DangerousInternalClient) GetBroadcastListParticipants(ctx context.Context, jid types.JID) ([]types.JID, error) {
|
|
75
|
+
return int.c.getBroadcastListParticipants(ctx, jid)
|
|
76
76
|
}
|
|
77
77
|
|
|
78
|
-
func (int *DangerousInternalClient) GetStatusBroadcastRecipients() ([]types.JID, error) {
|
|
79
|
-
return int.c.getStatusBroadcastRecipients()
|
|
78
|
+
func (int *DangerousInternalClient) GetStatusBroadcastRecipients(ctx context.Context) ([]types.JID, error) {
|
|
79
|
+
return int.c.getStatusBroadcastRecipients(ctx)
|
|
80
80
|
}
|
|
81
81
|
|
|
82
82
|
func (int *DangerousInternalClient) HandleCallEvent(node *waBinary.Node) {
|
|
@@ -95,6 +95,18 @@ func (int *DangerousInternalClient) GetOwnID() types.JID {
|
|
|
95
95
|
return int.c.getOwnID()
|
|
96
96
|
}
|
|
97
97
|
|
|
98
|
+
func (int *DangerousInternalClient) GetOwnLID() types.JID {
|
|
99
|
+
return int.c.getOwnLID()
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
func (int *DangerousInternalClient) Connect() error {
|
|
103
|
+
return int.c.connect()
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
func (int *DangerousInternalClient) UnlockedConnect() error {
|
|
107
|
+
return int.c.unlockedConnect()
|
|
108
|
+
}
|
|
109
|
+
|
|
98
110
|
func (int *DangerousInternalClient) OnDisconnect(ns *socket.NoiseSocket, remote bool) {
|
|
99
111
|
int.c.onDisconnect(ns, remote)
|
|
100
112
|
}
|
|
@@ -135,8 +147,8 @@ func (int *DangerousInternalClient) SendNode(node waBinary.Node) error {
|
|
|
135
147
|
return int.c.sendNode(node)
|
|
136
148
|
}
|
|
137
149
|
|
|
138
|
-
func (int *DangerousInternalClient) DispatchEvent(evt any) {
|
|
139
|
-
int.c.dispatchEvent(evt)
|
|
150
|
+
func (int *DangerousInternalClient) DispatchEvent(evt any) (handlerFailed bool) {
|
|
151
|
+
return int.c.dispatchEvent(evt)
|
|
140
152
|
}
|
|
141
153
|
|
|
142
154
|
func (int *DangerousInternalClient) HandleStreamError(node *waBinary.Node) {
|
|
@@ -155,40 +167,40 @@ func (int *DangerousInternalClient) HandleConnectSuccess(node *waBinary.Node) {
|
|
|
155
167
|
int.c.handleConnectSuccess(node)
|
|
156
168
|
}
|
|
157
169
|
|
|
158
|
-
func (int *DangerousInternalClient) DownloadAndDecrypt(url string, mediaKey []byte, appInfo MediaType, fileLength int, fileEncSHA256, fileSHA256 []byte) (data []byte, err error) {
|
|
159
|
-
return int.c.downloadAndDecrypt(url, mediaKey, appInfo, fileLength, fileEncSHA256, fileSHA256)
|
|
170
|
+
func (int *DangerousInternalClient) DownloadAndDecrypt(ctx context.Context, url string, mediaKey []byte, appInfo MediaType, fileLength int, fileEncSHA256, fileSHA256 []byte) (data []byte, err error) {
|
|
171
|
+
return int.c.downloadAndDecrypt(ctx, url, mediaKey, appInfo, fileLength, fileEncSHA256, fileSHA256)
|
|
160
172
|
}
|
|
161
173
|
|
|
162
|
-
func (int *DangerousInternalClient) DownloadPossiblyEncryptedMediaWithRetries(url string, checksum []byte) (file, mac []byte, err error) {
|
|
163
|
-
return int.c.downloadPossiblyEncryptedMediaWithRetries(url, checksum)
|
|
174
|
+
func (int *DangerousInternalClient) DownloadPossiblyEncryptedMediaWithRetries(ctx context.Context, url string, checksum []byte) (file, mac []byte, err error) {
|
|
175
|
+
return int.c.downloadPossiblyEncryptedMediaWithRetries(ctx, url, checksum)
|
|
164
176
|
}
|
|
165
177
|
|
|
166
|
-
func (int *DangerousInternalClient) DoMediaDownloadRequest(url string) (*http.Response, error) {
|
|
167
|
-
return int.c.doMediaDownloadRequest(url)
|
|
178
|
+
func (int *DangerousInternalClient) DoMediaDownloadRequest(ctx context.Context, url string) (*http.Response, error) {
|
|
179
|
+
return int.c.doMediaDownloadRequest(ctx, url)
|
|
168
180
|
}
|
|
169
181
|
|
|
170
|
-
func (int *DangerousInternalClient) DownloadMedia(url string) ([]byte, error) {
|
|
171
|
-
return int.c.downloadMedia(url)
|
|
182
|
+
func (int *DangerousInternalClient) DownloadMedia(ctx context.Context, url string) ([]byte, error) {
|
|
183
|
+
return int.c.downloadMedia(ctx, url)
|
|
172
184
|
}
|
|
173
185
|
|
|
174
|
-
func (int *DangerousInternalClient) DownloadEncryptedMedia(url string, checksum []byte) (file, mac []byte, err error) {
|
|
175
|
-
return int.c.downloadEncryptedMedia(url, checksum)
|
|
186
|
+
func (int *DangerousInternalClient) DownloadEncryptedMedia(ctx context.Context, url string, checksum []byte) (file, mac []byte, err error) {
|
|
187
|
+
return int.c.downloadEncryptedMedia(ctx, url, checksum)
|
|
176
188
|
}
|
|
177
189
|
|
|
178
|
-
func (int *DangerousInternalClient) DownloadAndDecryptToFile(url string, mediaKey []byte, appInfo MediaType, fileLength int, fileEncSHA256, fileSHA256 []byte, file File) error {
|
|
179
|
-
return int.c.downloadAndDecryptToFile(url, mediaKey, appInfo, fileLength, fileEncSHA256, fileSHA256, file)
|
|
190
|
+
func (int *DangerousInternalClient) DownloadAndDecryptToFile(ctx context.Context, url string, mediaKey []byte, appInfo MediaType, fileLength int, fileEncSHA256, fileSHA256 []byte, file File) error {
|
|
191
|
+
return int.c.downloadAndDecryptToFile(ctx, url, mediaKey, appInfo, fileLength, fileEncSHA256, fileSHA256, file)
|
|
180
192
|
}
|
|
181
193
|
|
|
182
|
-
func (int *DangerousInternalClient) DownloadPossiblyEncryptedMediaWithRetriesToFile(url string, checksum []byte, file File) (mac []byte, err error) {
|
|
183
|
-
return int.c.downloadPossiblyEncryptedMediaWithRetriesToFile(url, checksum, file)
|
|
194
|
+
func (int *DangerousInternalClient) DownloadPossiblyEncryptedMediaWithRetriesToFile(ctx context.Context, url string, checksum []byte, file File) (mac []byte, err error) {
|
|
195
|
+
return int.c.downloadPossiblyEncryptedMediaWithRetriesToFile(ctx, url, checksum, file)
|
|
184
196
|
}
|
|
185
197
|
|
|
186
|
-
func (int *DangerousInternalClient) DownloadMediaToFile(url string, file io.Writer) (int64, []byte, error) {
|
|
187
|
-
return int.c.downloadMediaToFile(url, file)
|
|
198
|
+
func (int *DangerousInternalClient) DownloadMediaToFile(ctx context.Context, url string, file io.Writer) (int64, []byte, error) {
|
|
199
|
+
return int.c.downloadMediaToFile(ctx, url, file)
|
|
188
200
|
}
|
|
189
201
|
|
|
190
|
-
func (int *DangerousInternalClient) DownloadEncryptedMediaToFile(url string, checksum []byte, file File) ([]byte, error) {
|
|
191
|
-
return int.c.downloadEncryptedMediaToFile(url, checksum, file)
|
|
202
|
+
func (int *DangerousInternalClient) DownloadEncryptedMediaToFile(ctx context.Context, url string, checksum []byte, file File) ([]byte, error) {
|
|
203
|
+
return int.c.downloadEncryptedMediaToFile(ctx, url, checksum, file)
|
|
192
204
|
}
|
|
193
205
|
|
|
194
206
|
func (int *DangerousInternalClient) SendGroupIQ(ctx context.Context, iqType infoQueryType, jid types.JID, content waBinary.Node) (*waBinary.Node, error) {
|
|
@@ -199,16 +211,16 @@ func (int *DangerousInternalClient) GetGroupInfo(ctx context.Context, jid types.
|
|
|
199
211
|
return int.c.getGroupInfo(ctx, jid, lockParticipantCache)
|
|
200
212
|
}
|
|
201
213
|
|
|
202
|
-
func (int *DangerousInternalClient)
|
|
203
|
-
return int.c.
|
|
214
|
+
func (int *DangerousInternalClient) GetCachedGroupData(ctx context.Context, jid types.JID) (*groupMetaCache, error) {
|
|
215
|
+
return int.c.getCachedGroupData(ctx, jid)
|
|
204
216
|
}
|
|
205
217
|
|
|
206
218
|
func (int *DangerousInternalClient) ParseGroupNode(groupNode *waBinary.Node) (*types.GroupInfo, error) {
|
|
207
219
|
return int.c.parseGroupNode(groupNode)
|
|
208
220
|
}
|
|
209
221
|
|
|
210
|
-
func (int *DangerousInternalClient) ParseGroupCreate(node *waBinary.Node) (*events.JoinedGroup, error) {
|
|
211
|
-
return int.c.parseGroupCreate(node)
|
|
222
|
+
func (int *DangerousInternalClient) ParseGroupCreate(parentNode, node *waBinary.Node) (*events.JoinedGroup, error) {
|
|
223
|
+
return int.c.parseGroupCreate(parentNode, node)
|
|
212
224
|
}
|
|
213
225
|
|
|
214
226
|
func (int *DangerousInternalClient) ParseGroupChange(node *waBinary.Node) (*events.GroupInfo, error) {
|
|
@@ -235,16 +247,16 @@ func (int *DangerousInternalClient) SendKeepAlive(ctx context.Context) (isSucces
|
|
|
235
247
|
return int.c.sendKeepAlive(ctx)
|
|
236
248
|
}
|
|
237
249
|
|
|
238
|
-
func (int *DangerousInternalClient) RefreshMediaConn(force bool) (*MediaConn, error) {
|
|
239
|
-
return int.c.refreshMediaConn(force)
|
|
250
|
+
func (int *DangerousInternalClient) RefreshMediaConn(ctx context.Context, force bool) (*MediaConn, error) {
|
|
251
|
+
return int.c.refreshMediaConn(ctx, force)
|
|
240
252
|
}
|
|
241
253
|
|
|
242
|
-
func (int *DangerousInternalClient) QueryMediaConn() (*MediaConn, error) {
|
|
243
|
-
return int.c.queryMediaConn()
|
|
254
|
+
func (int *DangerousInternalClient) QueryMediaConn(ctx context.Context) (*MediaConn, error) {
|
|
255
|
+
return int.c.queryMediaConn(ctx)
|
|
244
256
|
}
|
|
245
257
|
|
|
246
|
-
func (int *DangerousInternalClient) HandleMediaRetryNotification(node *waBinary.Node) {
|
|
247
|
-
int.c.handleMediaRetryNotification(node)
|
|
258
|
+
func (int *DangerousInternalClient) HandleMediaRetryNotification(ctx context.Context, node *waBinary.Node) {
|
|
259
|
+
int.c.handleMediaRetryNotification(ctx, node)
|
|
248
260
|
}
|
|
249
261
|
|
|
250
262
|
func (int *DangerousInternalClient) HandleEncryptedMessage(node *waBinary.Node) {
|
|
@@ -267,80 +279,84 @@ func (int *DangerousInternalClient) ParseMessageInfo(node *waBinary.Node) (*type
|
|
|
267
279
|
return int.c.parseMessageInfo(node)
|
|
268
280
|
}
|
|
269
281
|
|
|
270
|
-
func (int *DangerousInternalClient) HandlePlaintextMessage(info *types.MessageInfo, node *waBinary.Node) {
|
|
271
|
-
int.c.handlePlaintextMessage(info, node)
|
|
282
|
+
func (int *DangerousInternalClient) HandlePlaintextMessage(ctx context.Context, info *types.MessageInfo, node *waBinary.Node) bool {
|
|
283
|
+
return int.c.handlePlaintextMessage(ctx, info, node)
|
|
272
284
|
}
|
|
273
285
|
|
|
274
|
-
func (int *DangerousInternalClient)
|
|
275
|
-
int.c.
|
|
286
|
+
func (int *DangerousInternalClient) MigrateSessionStore(ctx context.Context, pn, lid types.JID) {
|
|
287
|
+
int.c.migrateSessionStore(ctx, pn, lid)
|
|
276
288
|
}
|
|
277
289
|
|
|
278
|
-
func (int *DangerousInternalClient)
|
|
279
|
-
int.c.
|
|
290
|
+
func (int *DangerousInternalClient) DecryptMessages(ctx context.Context, info *types.MessageInfo, node *waBinary.Node) (handlerFailed bool) {
|
|
291
|
+
return int.c.decryptMessages(ctx, info, node)
|
|
280
292
|
}
|
|
281
293
|
|
|
282
|
-
func (int *DangerousInternalClient)
|
|
283
|
-
return int.c.
|
|
294
|
+
func (int *DangerousInternalClient) ClearUntrustedIdentity(ctx context.Context, target types.JID) error {
|
|
295
|
+
return int.c.clearUntrustedIdentity(ctx, target)
|
|
284
296
|
}
|
|
285
297
|
|
|
286
|
-
func (int *DangerousInternalClient)
|
|
287
|
-
return int.c.
|
|
298
|
+
func (int *DangerousInternalClient) BufferedDecrypt(ctx context.Context, ciphertext []byte, serverTimestamp time.Time, decrypt func(context.Context) ([]byte, error)) (plaintext []byte, ciphertextHash [32]byte, err error) {
|
|
299
|
+
return int.c.bufferedDecrypt(ctx, ciphertext, serverTimestamp, decrypt)
|
|
288
300
|
}
|
|
289
301
|
|
|
290
|
-
func (int *DangerousInternalClient)
|
|
291
|
-
int.c.
|
|
302
|
+
func (int *DangerousInternalClient) DecryptDM(ctx context.Context, child *waBinary.Node, from types.JID, isPreKey bool, serverTS time.Time) ([]byte, *[32]byte, error) {
|
|
303
|
+
return int.c.decryptDM(ctx, child, from, isPreKey, serverTS)
|
|
292
304
|
}
|
|
293
305
|
|
|
294
|
-
func (int *DangerousInternalClient)
|
|
295
|
-
int.c.
|
|
306
|
+
func (int *DangerousInternalClient) DecryptGroupMsg(ctx context.Context, child *waBinary.Node, from types.JID, chat types.JID, serverTS time.Time) ([]byte, *[32]byte, error) {
|
|
307
|
+
return int.c.decryptGroupMsg(ctx, child, from, chat, serverTS)
|
|
296
308
|
}
|
|
297
309
|
|
|
298
|
-
func (int *DangerousInternalClient)
|
|
299
|
-
int.c.
|
|
310
|
+
func (int *DangerousInternalClient) HandleSenderKeyDistributionMessage(ctx context.Context, chat, from types.JID, axolotlSKDM []byte) {
|
|
311
|
+
int.c.handleSenderKeyDistributionMessage(ctx, chat, from, axolotlSKDM)
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
func (int *DangerousInternalClient) HandleHistorySyncNotificationLoop() {
|
|
315
|
+
int.c.handleHistorySyncNotificationLoop()
|
|
300
316
|
}
|
|
301
317
|
|
|
302
|
-
func (int *DangerousInternalClient) HandleAppStateSyncKeyShare(keys *waE2E.AppStateSyncKeyShare) {
|
|
303
|
-
int.c.handleAppStateSyncKeyShare(keys)
|
|
318
|
+
func (int *DangerousInternalClient) HandleAppStateSyncKeyShare(ctx context.Context, keys *waE2E.AppStateSyncKeyShare) {
|
|
319
|
+
int.c.handleAppStateSyncKeyShare(ctx, keys)
|
|
304
320
|
}
|
|
305
321
|
|
|
306
322
|
func (int *DangerousInternalClient) HandlePlaceholderResendResponse(msg *waE2E.PeerDataOperationRequestResponseMessage) {
|
|
307
323
|
int.c.handlePlaceholderResendResponse(msg)
|
|
308
324
|
}
|
|
309
325
|
|
|
310
|
-
func (int *DangerousInternalClient) HandleProtocolMessage(info *types.MessageInfo, msg *waE2E.Message) {
|
|
311
|
-
int.c.handleProtocolMessage(info, msg)
|
|
326
|
+
func (int *DangerousInternalClient) HandleProtocolMessage(ctx context.Context, info *types.MessageInfo, msg *waE2E.Message) {
|
|
327
|
+
int.c.handleProtocolMessage(ctx, info, msg)
|
|
312
328
|
}
|
|
313
329
|
|
|
314
|
-
func (int *DangerousInternalClient) ProcessProtocolParts(info *types.MessageInfo, msg *waE2E.Message) {
|
|
315
|
-
int.c.processProtocolParts(info, msg)
|
|
330
|
+
func (int *DangerousInternalClient) ProcessProtocolParts(ctx context.Context, info *types.MessageInfo, msg *waE2E.Message) {
|
|
331
|
+
int.c.processProtocolParts(ctx, info, msg)
|
|
316
332
|
}
|
|
317
333
|
|
|
318
|
-
func (int *DangerousInternalClient) StoreMessageSecret(info *types.MessageInfo, msg *waE2E.Message) {
|
|
319
|
-
int.c.storeMessageSecret(info, msg)
|
|
334
|
+
func (int *DangerousInternalClient) StoreMessageSecret(ctx context.Context, info *types.MessageInfo, msg *waE2E.Message) {
|
|
335
|
+
int.c.storeMessageSecret(ctx, info, msg)
|
|
320
336
|
}
|
|
321
337
|
|
|
322
|
-
func (int *DangerousInternalClient) StoreHistoricalMessageSecrets(conversations []*waHistorySync.Conversation) {
|
|
323
|
-
int.c.storeHistoricalMessageSecrets(conversations)
|
|
338
|
+
func (int *DangerousInternalClient) StoreHistoricalMessageSecrets(ctx context.Context, conversations []*waHistorySync.Conversation) {
|
|
339
|
+
int.c.storeHistoricalMessageSecrets(ctx, conversations)
|
|
324
340
|
}
|
|
325
341
|
|
|
326
|
-
func (int *DangerousInternalClient) HandleDecryptedMessage(info *types.MessageInfo, msg *waE2E.Message, retryCount int) {
|
|
327
|
-
int.c.handleDecryptedMessage(info, msg, retryCount)
|
|
342
|
+
func (int *DangerousInternalClient) HandleDecryptedMessage(ctx context.Context, info *types.MessageInfo, msg *waE2E.Message, retryCount int) bool {
|
|
343
|
+
return int.c.handleDecryptedMessage(ctx, info, msg, retryCount)
|
|
328
344
|
}
|
|
329
345
|
|
|
330
346
|
func (int *DangerousInternalClient) SendProtocolMessageReceipt(id types.MessageID, msgType types.ReceiptType) {
|
|
331
347
|
int.c.sendProtocolMessageReceipt(id, msgType)
|
|
332
348
|
}
|
|
333
349
|
|
|
334
|
-
func (int *DangerousInternalClient) DecryptMsgSecret(msg *events.Message, useCase MsgSecretType, encrypted messageEncryptedSecret, origMsgKey *waCommon.MessageKey) ([]byte, error) {
|
|
335
|
-
return int.c.decryptMsgSecret(msg, useCase, encrypted, origMsgKey)
|
|
350
|
+
func (int *DangerousInternalClient) DecryptMsgSecret(ctx context.Context, msg *events.Message, useCase MsgSecretType, encrypted messageEncryptedSecret, origMsgKey *waCommon.MessageKey) ([]byte, error) {
|
|
351
|
+
return int.c.decryptMsgSecret(ctx, msg, useCase, encrypted, origMsgKey)
|
|
336
352
|
}
|
|
337
353
|
|
|
338
|
-
func (int *DangerousInternalClient) EncryptMsgSecret(chat, origSender types.JID, origMsgID types.MessageID, useCase MsgSecretType, plaintext []byte) (ciphertext, iv []byte, err error) {
|
|
339
|
-
return int.c.encryptMsgSecret(chat, origSender, origMsgID, useCase, plaintext)
|
|
354
|
+
func (int *DangerousInternalClient) EncryptMsgSecret(ctx context.Context, ownID, chat, origSender types.JID, origMsgID types.MessageID, useCase MsgSecretType, plaintext []byte) (ciphertext, iv []byte, err error) {
|
|
355
|
+
return int.c.encryptMsgSecret(ctx, ownID, chat, origSender, origMsgID, useCase, plaintext)
|
|
340
356
|
}
|
|
341
357
|
|
|
342
|
-
func (int *DangerousInternalClient) DecryptBotMessage(messageSecret []byte, msMsg messageEncryptedSecret, messageID types.MessageID, targetSenderJID types.JID, info *types.MessageInfo) ([]byte, error) {
|
|
343
|
-
return int.c.decryptBotMessage(messageSecret, msMsg, messageID, targetSenderJID, info)
|
|
358
|
+
func (int *DangerousInternalClient) DecryptBotMessage(ctx context.Context, messageSecret []byte, msMsg messageEncryptedSecret, messageID types.MessageID, targetSenderJID types.JID, info *types.MessageInfo) ([]byte, error) {
|
|
359
|
+
return int.c.decryptBotMessage(ctx, messageSecret, msMsg, messageID, targetSenderJID, info)
|
|
344
360
|
}
|
|
345
361
|
|
|
346
362
|
func (int *DangerousInternalClient) SendMexIQ(ctx context.Context, queryID string, variables any) (json.RawMessage, error) {
|
|
@@ -351,68 +367,68 @@ func (int *DangerousInternalClient) GetNewsletterInfo(input map[string]any, fetc
|
|
|
351
367
|
return int.c.getNewsletterInfo(input, fetchViewerMeta)
|
|
352
368
|
}
|
|
353
369
|
|
|
354
|
-
func (int *DangerousInternalClient) HandleEncryptNotification(node *waBinary.Node) {
|
|
355
|
-
int.c.handleEncryptNotification(node)
|
|
370
|
+
func (int *DangerousInternalClient) HandleEncryptNotification(ctx context.Context, node *waBinary.Node) {
|
|
371
|
+
int.c.handleEncryptNotification(ctx, node)
|
|
356
372
|
}
|
|
357
373
|
|
|
358
|
-
func (int *DangerousInternalClient) HandleAppStateNotification(node *waBinary.Node) {
|
|
359
|
-
int.c.handleAppStateNotification(node)
|
|
374
|
+
func (int *DangerousInternalClient) HandleAppStateNotification(ctx context.Context, node *waBinary.Node) {
|
|
375
|
+
int.c.handleAppStateNotification(ctx, node)
|
|
360
376
|
}
|
|
361
377
|
|
|
362
|
-
func (int *DangerousInternalClient) HandlePictureNotification(node *waBinary.Node) {
|
|
363
|
-
int.c.handlePictureNotification(node)
|
|
378
|
+
func (int *DangerousInternalClient) HandlePictureNotification(ctx context.Context, node *waBinary.Node) {
|
|
379
|
+
int.c.handlePictureNotification(ctx, node)
|
|
364
380
|
}
|
|
365
381
|
|
|
366
|
-
func (int *DangerousInternalClient) HandleDeviceNotification(node *waBinary.Node) {
|
|
367
|
-
int.c.handleDeviceNotification(node)
|
|
382
|
+
func (int *DangerousInternalClient) HandleDeviceNotification(ctx context.Context, node *waBinary.Node) {
|
|
383
|
+
int.c.handleDeviceNotification(ctx, node)
|
|
368
384
|
}
|
|
369
385
|
|
|
370
|
-
func (int *DangerousInternalClient) HandleFBDeviceNotification(node *waBinary.Node) {
|
|
371
|
-
int.c.handleFBDeviceNotification(node)
|
|
386
|
+
func (int *DangerousInternalClient) HandleFBDeviceNotification(ctx context.Context, node *waBinary.Node) {
|
|
387
|
+
int.c.handleFBDeviceNotification(ctx, node)
|
|
372
388
|
}
|
|
373
389
|
|
|
374
|
-
func (int *DangerousInternalClient) HandleOwnDevicesNotification(node *waBinary.Node) {
|
|
375
|
-
int.c.handleOwnDevicesNotification(node)
|
|
390
|
+
func (int *DangerousInternalClient) HandleOwnDevicesNotification(ctx context.Context, node *waBinary.Node) {
|
|
391
|
+
int.c.handleOwnDevicesNotification(ctx, node)
|
|
376
392
|
}
|
|
377
393
|
|
|
378
|
-
func (int *DangerousInternalClient) HandleBlocklist(node *waBinary.Node) {
|
|
379
|
-
int.c.handleBlocklist(node)
|
|
394
|
+
func (int *DangerousInternalClient) HandleBlocklist(ctx context.Context, node *waBinary.Node) {
|
|
395
|
+
int.c.handleBlocklist(ctx, node)
|
|
380
396
|
}
|
|
381
397
|
|
|
382
|
-
func (int *DangerousInternalClient) HandleAccountSyncNotification(node *waBinary.Node) {
|
|
383
|
-
int.c.handleAccountSyncNotification(node)
|
|
398
|
+
func (int *DangerousInternalClient) HandleAccountSyncNotification(ctx context.Context, node *waBinary.Node) {
|
|
399
|
+
int.c.handleAccountSyncNotification(ctx, node)
|
|
384
400
|
}
|
|
385
401
|
|
|
386
|
-
func (int *DangerousInternalClient) HandlePrivacyTokenNotification(node *waBinary.Node) {
|
|
387
|
-
int.c.handlePrivacyTokenNotification(node)
|
|
402
|
+
func (int *DangerousInternalClient) HandlePrivacyTokenNotification(ctx context.Context, node *waBinary.Node) {
|
|
403
|
+
int.c.handlePrivacyTokenNotification(ctx, node)
|
|
388
404
|
}
|
|
389
405
|
|
|
390
406
|
func (int *DangerousInternalClient) ParseNewsletterMessages(node *waBinary.Node) []*types.NewsletterMessage {
|
|
391
407
|
return int.c.parseNewsletterMessages(node)
|
|
392
408
|
}
|
|
393
409
|
|
|
394
|
-
func (int *DangerousInternalClient) HandleNewsletterNotification(node *waBinary.Node) {
|
|
395
|
-
int.c.handleNewsletterNotification(node)
|
|
410
|
+
func (int *DangerousInternalClient) HandleNewsletterNotification(ctx context.Context, node *waBinary.Node) {
|
|
411
|
+
int.c.handleNewsletterNotification(ctx, node)
|
|
396
412
|
}
|
|
397
413
|
|
|
398
|
-
func (int *DangerousInternalClient) HandleMexNotification(node *waBinary.Node) {
|
|
399
|
-
int.c.handleMexNotification(node)
|
|
414
|
+
func (int *DangerousInternalClient) HandleMexNotification(ctx context.Context, node *waBinary.Node) {
|
|
415
|
+
int.c.handleMexNotification(ctx, node)
|
|
400
416
|
}
|
|
401
417
|
|
|
402
|
-
func (int *DangerousInternalClient) HandleStatusNotification(node *waBinary.Node) {
|
|
403
|
-
int.c.handleStatusNotification(node)
|
|
418
|
+
func (int *DangerousInternalClient) HandleStatusNotification(ctx context.Context, node *waBinary.Node) {
|
|
419
|
+
int.c.handleStatusNotification(ctx, node)
|
|
404
420
|
}
|
|
405
421
|
|
|
406
422
|
func (int *DangerousInternalClient) HandleNotification(node *waBinary.Node) {
|
|
407
423
|
int.c.handleNotification(node)
|
|
408
424
|
}
|
|
409
425
|
|
|
410
|
-
func (int *DangerousInternalClient) TryHandleCodePairNotification(parentNode *waBinary.Node) {
|
|
411
|
-
int.c.tryHandleCodePairNotification(parentNode)
|
|
426
|
+
func (int *DangerousInternalClient) TryHandleCodePairNotification(ctx context.Context, parentNode *waBinary.Node) {
|
|
427
|
+
int.c.tryHandleCodePairNotification(ctx, parentNode)
|
|
412
428
|
}
|
|
413
429
|
|
|
414
|
-
func (int *DangerousInternalClient) HandleCodePairNotification(parentNode *waBinary.Node) error {
|
|
415
|
-
return int.c.handleCodePairNotification(parentNode)
|
|
430
|
+
func (int *DangerousInternalClient) HandleCodePairNotification(ctx context.Context, parentNode *waBinary.Node) error {
|
|
431
|
+
return int.c.handleCodePairNotification(ctx, parentNode)
|
|
416
432
|
}
|
|
417
433
|
|
|
418
434
|
func (int *DangerousInternalClient) HandleIQ(node *waBinary.Node) {
|
|
@@ -431,20 +447,20 @@ func (int *DangerousInternalClient) HandlePairSuccess(node *waBinary.Node) {
|
|
|
431
447
|
int.c.handlePairSuccess(node)
|
|
432
448
|
}
|
|
433
449
|
|
|
434
|
-
func (int *DangerousInternalClient) HandlePair(deviceIdentityBytes []byte, reqID, businessName, platform string, jid types.JID) error {
|
|
435
|
-
return int.c.handlePair(deviceIdentityBytes, reqID, businessName, platform, jid)
|
|
450
|
+
func (int *DangerousInternalClient) HandlePair(ctx context.Context, deviceIdentityBytes []byte, reqID, businessName, platform string, jid, lid types.JID) error {
|
|
451
|
+
return int.c.handlePair(ctx, deviceIdentityBytes, reqID, businessName, platform, jid, lid)
|
|
436
452
|
}
|
|
437
453
|
|
|
438
454
|
func (int *DangerousInternalClient) SendPairError(id string, code int, text string) {
|
|
439
455
|
int.c.sendPairError(id, code, text)
|
|
440
456
|
}
|
|
441
457
|
|
|
442
|
-
func (int *DangerousInternalClient) GetServerPreKeyCount() (int, error) {
|
|
443
|
-
return int.c.getServerPreKeyCount()
|
|
458
|
+
func (int *DangerousInternalClient) GetServerPreKeyCount(ctx context.Context) (int, error) {
|
|
459
|
+
return int.c.getServerPreKeyCount(ctx)
|
|
444
460
|
}
|
|
445
461
|
|
|
446
|
-
func (int *DangerousInternalClient) UploadPreKeys() {
|
|
447
|
-
int.c.uploadPreKeys()
|
|
462
|
+
func (int *DangerousInternalClient) UploadPreKeys(ctx context.Context) {
|
|
463
|
+
int.c.uploadPreKeys(ctx)
|
|
448
464
|
}
|
|
449
465
|
|
|
450
466
|
func (int *DangerousInternalClient) FetchPreKeys(ctx context.Context, users []types.JID) (map[types.JID]preKeyResp, error) {
|
|
@@ -463,8 +479,8 @@ func (int *DangerousInternalClient) ParsePrivacySettings(privacyNode *waBinary.N
|
|
|
463
479
|
return int.c.parsePrivacySettings(privacyNode, settings)
|
|
464
480
|
}
|
|
465
481
|
|
|
466
|
-
func (int *DangerousInternalClient) HandlePrivacySettingsNotification(privacyNode *waBinary.Node) {
|
|
467
|
-
int.c.handlePrivacySettingsNotification(privacyNode)
|
|
482
|
+
func (int *DangerousInternalClient) HandlePrivacySettingsNotification(ctx context.Context, privacyNode *waBinary.Node) {
|
|
483
|
+
int.c.handlePrivacySettingsNotification(ctx, privacyNode)
|
|
468
484
|
}
|
|
469
485
|
|
|
470
486
|
func (int *DangerousInternalClient) HandleReceipt(node *waBinary.Node) {
|
|
@@ -479,8 +495,8 @@ func (int *DangerousInternalClient) ParseReceipt(node *waBinary.Node) (*events.R
|
|
|
479
495
|
return int.c.parseReceipt(node)
|
|
480
496
|
}
|
|
481
497
|
|
|
482
|
-
func (int *DangerousInternalClient) MaybeDeferredAck(node *waBinary.Node) func() {
|
|
483
|
-
return int.c.maybeDeferredAck(node)
|
|
498
|
+
func (int *DangerousInternalClient) MaybeDeferredAck(ctx context.Context, node *waBinary.Node) func(...*bool) {
|
|
499
|
+
return int.c.maybeDeferredAck(ctx, node)
|
|
484
500
|
}
|
|
485
501
|
|
|
486
502
|
func (int *DangerousInternalClient) SendAck(node *waBinary.Node) {
|
|
@@ -535,16 +551,16 @@ func (int *DangerousInternalClient) GetRecentMessage(to types.JID, id types.Mess
|
|
|
535
551
|
return int.c.getRecentMessage(to, id)
|
|
536
552
|
}
|
|
537
553
|
|
|
538
|
-
func (int *DangerousInternalClient) GetMessageForRetry(receipt *events.Receipt, messageID types.MessageID) (RecentMessage, error) {
|
|
539
|
-
return int.c.getMessageForRetry(receipt, messageID)
|
|
554
|
+
func (int *DangerousInternalClient) GetMessageForRetry(ctx context.Context, receipt *events.Receipt, messageID types.MessageID) (RecentMessage, error) {
|
|
555
|
+
return int.c.getMessageForRetry(ctx, receipt, messageID)
|
|
540
556
|
}
|
|
541
557
|
|
|
542
|
-
func (int *DangerousInternalClient) ShouldRecreateSession(retryCount int, jid types.JID) (reason string, recreate bool) {
|
|
543
|
-
return int.c.shouldRecreateSession(retryCount, jid)
|
|
558
|
+
func (int *DangerousInternalClient) ShouldRecreateSession(ctx context.Context, retryCount int, jid types.JID) (reason string, recreate bool) {
|
|
559
|
+
return int.c.shouldRecreateSession(ctx, retryCount, jid)
|
|
544
560
|
}
|
|
545
561
|
|
|
546
|
-
func (int *DangerousInternalClient) HandleRetryReceipt(receipt *events.Receipt, node *waBinary.Node) error {
|
|
547
|
-
return int.c.handleRetryReceipt(receipt, node)
|
|
562
|
+
func (int *DangerousInternalClient) HandleRetryReceipt(ctx context.Context, receipt *events.Receipt, node *waBinary.Node) error {
|
|
563
|
+
return int.c.handleRetryReceipt(ctx, receipt, node)
|
|
548
564
|
}
|
|
549
565
|
|
|
550
566
|
func (int *DangerousInternalClient) CancelDelayedRequestFromPhone(msgID types.MessageID) {
|
|
@@ -555,8 +571,16 @@ func (int *DangerousInternalClient) DelayedRequestMessageFromPhone(info *types.M
|
|
|
555
571
|
int.c.delayedRequestMessageFromPhone(info)
|
|
556
572
|
}
|
|
557
573
|
|
|
558
|
-
func (int *DangerousInternalClient)
|
|
559
|
-
int.c.
|
|
574
|
+
func (int *DangerousInternalClient) ImmediateRequestMessageFromPhone(ctx context.Context, info *types.MessageInfo) {
|
|
575
|
+
int.c.immediateRequestMessageFromPhone(ctx, info)
|
|
576
|
+
}
|
|
577
|
+
|
|
578
|
+
func (int *DangerousInternalClient) ClearDelayedMessageRequests() {
|
|
579
|
+
int.c.clearDelayedMessageRequests()
|
|
580
|
+
}
|
|
581
|
+
|
|
582
|
+
func (int *DangerousInternalClient) SendRetryReceipt(ctx context.Context, node *waBinary.Node, info *types.MessageInfo, forceIncludeIdentity bool) {
|
|
583
|
+
int.c.sendRetryReceipt(ctx, node, info, forceIncludeIdentity)
|
|
560
584
|
}
|
|
561
585
|
|
|
562
586
|
func (int *DangerousInternalClient) SendGroupV3(ctx context.Context, to, ownID types.JID, id types.MessageID, messageApp []byte, msgAttrs messageAttrs, frankingTag []byte, timings *MessageDebugTimings) (string, []byte, error) {
|
|
@@ -575,56 +599,56 @@ func (int *DangerousInternalClient) EncryptMessageForDevicesV3(ctx context.Conte
|
|
|
575
599
|
return int.c.encryptMessageForDevicesV3(ctx, allDevices, ownID, id, payload, skdm, dsm, encAttrs)
|
|
576
600
|
}
|
|
577
601
|
|
|
578
|
-
func (int *DangerousInternalClient) EncryptMessageForDeviceAndWrapV3(payload *waMsgTransport.MessageTransport_Payload, skdm *waMsgTransport.MessageTransport_Protocol_Ancillary_SenderKeyDistributionMessage, dsm *waMsgTransport.MessageTransport_Protocol_Integral_DeviceSentMessage, to types.JID, bundle *prekey.Bundle, encAttrs waBinary.Attrs) (*waBinary.Node, error) {
|
|
579
|
-
return int.c.encryptMessageForDeviceAndWrapV3(payload, skdm, dsm, to, bundle, encAttrs)
|
|
602
|
+
func (int *DangerousInternalClient) EncryptMessageForDeviceAndWrapV3(ctx context.Context, payload *waMsgTransport.MessageTransport_Payload, skdm *waMsgTransport.MessageTransport_Protocol_Ancillary_SenderKeyDistributionMessage, dsm *waMsgTransport.MessageTransport_Protocol_Integral_DeviceSentMessage, to types.JID, bundle *prekey.Bundle, encAttrs waBinary.Attrs) (*waBinary.Node, error) {
|
|
603
|
+
return int.c.encryptMessageForDeviceAndWrapV3(ctx, payload, skdm, dsm, to, bundle, encAttrs)
|
|
580
604
|
}
|
|
581
605
|
|
|
582
|
-
func (int *DangerousInternalClient) EncryptMessageForDeviceV3(payload *waMsgTransport.MessageTransport_Payload, skdm *waMsgTransport.MessageTransport_Protocol_Ancillary_SenderKeyDistributionMessage, dsm *waMsgTransport.MessageTransport_Protocol_Integral_DeviceSentMessage, to types.JID, bundle *prekey.Bundle, extraAttrs waBinary.Attrs) (*waBinary.Node, error) {
|
|
583
|
-
return int.c.encryptMessageForDeviceV3(payload, skdm, dsm, to, bundle, extraAttrs)
|
|
606
|
+
func (int *DangerousInternalClient) EncryptMessageForDeviceV3(ctx context.Context, payload *waMsgTransport.MessageTransport_Payload, skdm *waMsgTransport.MessageTransport_Protocol_Ancillary_SenderKeyDistributionMessage, dsm *waMsgTransport.MessageTransport_Protocol_Integral_DeviceSentMessage, to types.JID, bundle *prekey.Bundle, extraAttrs waBinary.Attrs) (*waBinary.Node, error) {
|
|
607
|
+
return int.c.encryptMessageForDeviceV3(ctx, payload, skdm, dsm, to, bundle, extraAttrs)
|
|
584
608
|
}
|
|
585
609
|
|
|
586
610
|
func (int *DangerousInternalClient) SendNewsletter(to types.JID, id types.MessageID, message *waE2E.Message, mediaID string, timings *MessageDebugTimings) ([]byte, error) {
|
|
587
611
|
return int.c.sendNewsletter(to, id, message, mediaID, timings)
|
|
588
612
|
}
|
|
589
613
|
|
|
590
|
-
func (int *DangerousInternalClient) SendGroup(ctx context.Context, to,
|
|
591
|
-
return int.c.sendGroup(ctx, to,
|
|
614
|
+
func (int *DangerousInternalClient) SendGroup(ctx context.Context, ownID, to types.JID, participants []types.JID, id types.MessageID, message *waE2E.Message, timings *MessageDebugTimings, extraParams nodeExtraParams) (string, []byte, error) {
|
|
615
|
+
return int.c.sendGroup(ctx, ownID, to, participants, id, message, timings, extraParams)
|
|
592
616
|
}
|
|
593
617
|
|
|
594
|
-
func (int *DangerousInternalClient) SendPeerMessage(to types.JID, id types.MessageID, message *waE2E.Message, timings *MessageDebugTimings) ([]byte, error) {
|
|
595
|
-
return int.c.sendPeerMessage(to, id, message, timings)
|
|
618
|
+
func (int *DangerousInternalClient) SendPeerMessage(ctx context.Context, to types.JID, id types.MessageID, message *waE2E.Message, timings *MessageDebugTimings) ([]byte, error) {
|
|
619
|
+
return int.c.sendPeerMessage(ctx, to, id, message, timings)
|
|
596
620
|
}
|
|
597
621
|
|
|
598
|
-
func (int *DangerousInternalClient) SendDM(ctx context.Context,
|
|
599
|
-
return int.c.sendDM(ctx,
|
|
622
|
+
func (int *DangerousInternalClient) SendDM(ctx context.Context, ownID, to types.JID, id types.MessageID, message *waE2E.Message, timings *MessageDebugTimings, extraParams nodeExtraParams) ([]byte, error) {
|
|
623
|
+
return int.c.sendDM(ctx, ownID, to, id, message, timings, extraParams)
|
|
600
624
|
}
|
|
601
625
|
|
|
602
|
-
func (int *DangerousInternalClient) PreparePeerMessageNode(to types.JID, id types.MessageID, message *waE2E.Message, timings *MessageDebugTimings) (*waBinary.Node, error) {
|
|
603
|
-
return int.c.preparePeerMessageNode(to, id, message, timings)
|
|
626
|
+
func (int *DangerousInternalClient) PreparePeerMessageNode(ctx context.Context, to types.JID, id types.MessageID, message *waE2E.Message, timings *MessageDebugTimings) (*waBinary.Node, error) {
|
|
627
|
+
return int.c.preparePeerMessageNode(ctx, to, id, message, timings)
|
|
604
628
|
}
|
|
605
629
|
|
|
606
|
-
func (int *DangerousInternalClient) GetMessageContent(baseNode waBinary.Node, message *waE2E.Message, msgAttrs waBinary.Attrs, includeIdentity bool,
|
|
607
|
-
return int.c.getMessageContent(baseNode, message, msgAttrs, includeIdentity,
|
|
630
|
+
func (int *DangerousInternalClient) GetMessageContent(baseNode waBinary.Node, message *waE2E.Message, msgAttrs waBinary.Attrs, includeIdentity bool, extraParams nodeExtraParams) []waBinary.Node {
|
|
631
|
+
return int.c.getMessageContent(baseNode, message, msgAttrs, includeIdentity, extraParams)
|
|
608
632
|
}
|
|
609
633
|
|
|
610
|
-
func (int *DangerousInternalClient) PrepareMessageNode(ctx context.Context, to
|
|
611
|
-
return int.c.prepareMessageNode(ctx, to,
|
|
634
|
+
func (int *DangerousInternalClient) PrepareMessageNode(ctx context.Context, to types.JID, id types.MessageID, message *waE2E.Message, participants []types.JID, plaintext, dsmPlaintext []byte, timings *MessageDebugTimings, extraParams nodeExtraParams) (*waBinary.Node, []types.JID, error) {
|
|
635
|
+
return int.c.prepareMessageNode(ctx, to, id, message, participants, plaintext, dsmPlaintext, timings, extraParams)
|
|
612
636
|
}
|
|
613
637
|
|
|
614
638
|
func (int *DangerousInternalClient) MakeDeviceIdentityNode() waBinary.Node {
|
|
615
639
|
return int.c.makeDeviceIdentityNode()
|
|
616
640
|
}
|
|
617
641
|
|
|
618
|
-
func (int *DangerousInternalClient) EncryptMessageForDevices(ctx context.Context, allDevices []types.JID,
|
|
619
|
-
return int.c.encryptMessageForDevices(ctx, allDevices,
|
|
642
|
+
func (int *DangerousInternalClient) EncryptMessageForDevices(ctx context.Context, allDevices []types.JID, id string, msgPlaintext, dsmPlaintext []byte, encAttrs waBinary.Attrs) ([]waBinary.Node, bool) {
|
|
643
|
+
return int.c.encryptMessageForDevices(ctx, allDevices, id, msgPlaintext, dsmPlaintext, encAttrs)
|
|
620
644
|
}
|
|
621
645
|
|
|
622
|
-
func (int *DangerousInternalClient) EncryptMessageForDeviceAndWrap(plaintext []byte,
|
|
623
|
-
return int.c.encryptMessageForDeviceAndWrap(plaintext,
|
|
646
|
+
func (int *DangerousInternalClient) EncryptMessageForDeviceAndWrap(ctx context.Context, plaintext []byte, wireIdentity, encryptionIdentity types.JID, bundle *prekey.Bundle, encAttrs waBinary.Attrs) (*waBinary.Node, bool, error) {
|
|
647
|
+
return int.c.encryptMessageForDeviceAndWrap(ctx, plaintext, wireIdentity, encryptionIdentity, bundle, encAttrs)
|
|
624
648
|
}
|
|
625
649
|
|
|
626
|
-
func (int *DangerousInternalClient) EncryptMessageForDevice(plaintext []byte, to types.JID, bundle *prekey.Bundle, extraAttrs waBinary.Attrs) (*waBinary.Node, bool, error) {
|
|
627
|
-
return int.c.encryptMessageForDevice(plaintext, to, bundle, extraAttrs)
|
|
650
|
+
func (int *DangerousInternalClient) EncryptMessageForDevice(ctx context.Context, plaintext []byte, to types.JID, bundle *prekey.Bundle, extraAttrs waBinary.Attrs) (*waBinary.Node, bool, error) {
|
|
651
|
+
return int.c.encryptMessageForDevice(ctx, plaintext, to, bundle, extraAttrs)
|
|
628
652
|
}
|
|
629
653
|
|
|
630
654
|
func (int *DangerousInternalClient) RawUpload(ctx context.Context, dataToUpload io.Reader, uploadSize uint64, fileHash []byte, appInfo MediaType, newsletter bool, resp *UploadResponse) error {
|
|
@@ -635,19 +659,23 @@ func (int *DangerousInternalClient) ParseBusinessProfile(node *waBinary.Node) (*
|
|
|
635
659
|
return int.c.parseBusinessProfile(node)
|
|
636
660
|
}
|
|
637
661
|
|
|
638
|
-
func (int *DangerousInternalClient) HandleHistoricalPushNames(names []*waHistorySync.Pushname) {
|
|
639
|
-
int.c.handleHistoricalPushNames(names)
|
|
662
|
+
func (int *DangerousInternalClient) HandleHistoricalPushNames(ctx context.Context, names []*waHistorySync.Pushname) {
|
|
663
|
+
int.c.handleHistoricalPushNames(ctx, names)
|
|
640
664
|
}
|
|
641
665
|
|
|
642
|
-
func (int *DangerousInternalClient) UpdatePushName(user types.JID, messageInfo *types.MessageInfo, name string) {
|
|
643
|
-
int.c.updatePushName(user, messageInfo, name)
|
|
666
|
+
func (int *DangerousInternalClient) UpdatePushName(ctx context.Context, user types.JID, messageInfo *types.MessageInfo, name string) {
|
|
667
|
+
int.c.updatePushName(ctx, user, messageInfo, name)
|
|
644
668
|
}
|
|
645
669
|
|
|
646
|
-
func (int *DangerousInternalClient) UpdateBusinessName(user types.JID, messageInfo *types.MessageInfo, name string) {
|
|
647
|
-
int.c.updateBusinessName(user, messageInfo, name)
|
|
670
|
+
func (int *DangerousInternalClient) UpdateBusinessName(ctx context.Context, user types.JID, messageInfo *types.MessageInfo, name string) {
|
|
671
|
+
int.c.updateBusinessName(ctx, user, messageInfo, name)
|
|
648
672
|
}
|
|
649
673
|
|
|
650
|
-
func (int *DangerousInternalClient)
|
|
674
|
+
func (int *DangerousInternalClient) GetFBIDDevicesInternal(ctx context.Context, jids []types.JID) (*waBinary.Node, error) {
|
|
675
|
+
return int.c.getFBIDDevicesInternal(ctx, jids)
|
|
676
|
+
}
|
|
677
|
+
|
|
678
|
+
func (int *DangerousInternalClient) GetFBIDDevices(ctx context.Context, jids []types.JID) ([]types.JID, error) {
|
|
651
679
|
return int.c.getFBIDDevices(ctx, jids)
|
|
652
680
|
}
|
|
653
681
|
|
|
@@ -658,3 +686,11 @@ func (int *DangerousInternalClient) Usync(ctx context.Context, jids []types.JID,
|
|
|
658
686
|
func (int *DangerousInternalClient) ParseBlocklist(node *waBinary.Node) *types.Blocklist {
|
|
659
687
|
return int.c.parseBlocklist(node)
|
|
660
688
|
}
|
|
689
|
+
|
|
690
|
+
func (int *DangerousInternalClient) ShouldIncludeReportingToken(message *waE2E.Message) bool {
|
|
691
|
+
return int.c.shouldIncludeReportingToken(message)
|
|
692
|
+
}
|
|
693
|
+
|
|
694
|
+
func (int *DangerousInternalClient) GetMessageReportingToken(msgProtobuf []byte, msg *waE2E.Message, senderJID, remoteJID types.JID, messageID types.MessageID) waBinary.Node {
|
|
695
|
+
return int.c.getMessageReportingToken(msgProtobuf, msg, senderJID, remoteJID, messageID)
|
|
696
|
+
}
|
|
@@ -8,7 +8,7 @@ package whatsmeow
|
|
|
8
8
|
|
|
9
9
|
import (
|
|
10
10
|
"context"
|
|
11
|
-
"math/rand"
|
|
11
|
+
"math/rand/v2"
|
|
12
12
|
"time"
|
|
13
13
|
|
|
14
14
|
"go.mau.fi/whatsmeow/types"
|
|
@@ -31,7 +31,7 @@ func (cli *Client) keepAliveLoop(ctx context.Context) {
|
|
|
31
31
|
lastSuccess := time.Now()
|
|
32
32
|
var errorCount int
|
|
33
33
|
for {
|
|
34
|
-
interval := rand.
|
|
34
|
+
interval := rand.Int64N(KeepAliveIntervalMax.Milliseconds()-KeepAliveIntervalMin.Milliseconds()) + KeepAliveIntervalMin.Milliseconds()
|
|
35
35
|
select {
|
|
36
36
|
case <-time.After(time.Duration(interval) * time.Millisecond):
|
|
37
37
|
isSuccess, shouldContinue := cli.sendKeepAlive(ctx)
|
|
@@ -46,6 +46,7 @@ func (cli *Client) keepAliveLoop(ctx context.Context) {
|
|
|
46
46
|
if cli.EnableAutoReconnect && time.Since(lastSuccess) > KeepAliveMaxFailTime {
|
|
47
47
|
cli.Log.Debugf("Forcing reconnect due to keepalive failure")
|
|
48
48
|
cli.Disconnect()
|
|
49
|
+
cli.resetExpectedDisconnect()
|
|
49
50
|
go cli.autoReconnect()
|
|
50
51
|
}
|
|
51
52
|
} else {
|