slidge-whatsapp 0.2.5__cp311-cp311-manylinux_2_36_aarch64.whl → 0.3.0__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/contact.py +15 -3
- slidge_whatsapp/event.go +171 -70
- slidge_whatsapp/gateway.go +16 -68
- slidge_whatsapp/gateway.py +4 -5
- slidge_whatsapp/generated/_whatsapp.cpython-311-aarch64-linux-gnu.h +168 -151
- slidge_whatsapp/generated/_whatsapp.cpython-311-aarch64-linux-gnu.so +0 -0
- slidge_whatsapp/generated/build.py +142 -128
- slidge_whatsapp/generated/whatsapp.c +1689 -1417
- slidge_whatsapp/generated/whatsapp.go +1011 -900
- slidge_whatsapp/generated/whatsapp.py +1175 -1050
- slidge_whatsapp/generated/whatsapp_go.h +168 -151
- slidge_whatsapp/go.mod +21 -15
- slidge_whatsapp/go.sum +49 -31
- slidge_whatsapp/group.py +34 -30
- slidge_whatsapp/media/media.go +22 -12
- slidge_whatsapp/session.go +106 -82
- slidge_whatsapp/session.py +46 -14
- slidge_whatsapp/vendor/github.com/beeper/argo-go/LICENSE +9 -0
- slidge_whatsapp/vendor/github.com/beeper/argo-go/block/blockreader.go +329 -0
- slidge_whatsapp/vendor/github.com/beeper/argo-go/block/blockwriter.go +417 -0
- slidge_whatsapp/vendor/github.com/beeper/argo-go/codec/decoder.go +652 -0
- slidge_whatsapp/vendor/github.com/beeper/argo-go/codec/encoder.go +985 -0
- slidge_whatsapp/vendor/github.com/beeper/argo-go/header/header.go +135 -0
- slidge_whatsapp/vendor/github.com/beeper/argo-go/internal/util/util.go +133 -0
- slidge_whatsapp/vendor/github.com/beeper/argo-go/label/label.go +384 -0
- slidge_whatsapp/vendor/github.com/beeper/argo-go/label/wiremarkers.go +37 -0
- slidge_whatsapp/vendor/github.com/beeper/argo-go/pkg/bitset/bitset.go +197 -0
- slidge_whatsapp/vendor/github.com/beeper/argo-go/pkg/buf/buf.go +420 -0
- slidge_whatsapp/vendor/github.com/beeper/argo-go/pkg/varint/varint.go +246 -0
- slidge_whatsapp/vendor/github.com/beeper/argo-go/wire/wire.go +614 -0
- slidge_whatsapp/vendor/github.com/beeper/argo-go/wirecodec/decode.go +341 -0
- 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/elliotchance/orderedmap/v3/LICENSE +21 -0
- slidge_whatsapp/vendor/github.com/elliotchance/orderedmap/v3/list.go +95 -0
- slidge_whatsapp/vendor/github.com/elliotchance/orderedmap/v3/orderedmap.go +187 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/fitz.go +1 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/fitz_cgo.go +3 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/fitz_nocgo.go +4 -5
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/purego_darwin.go +11 -1
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/purego_linux.go +10 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/purego_windows.go +12 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/.gitignore +0 -2
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/CHANGELOG.md +44 -1
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/COPYRIGHT.txt +6 -1
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/README.md +14 -17
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/abi.go +1 -1
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/abi2.go +7 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/assets/libffi/LICENSE +21 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/assets/libffi/darwin_amd64/libffi.8.dylib +0 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/assets/libffi/darwin_arm64/libffi.8.dylib +0 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/assets/libffi/windows_amd64/libffi-8.dll +0 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/cif.go +15 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/cif_arm64.go +16 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/embed.go +49 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/embed_darwin_amd64.go +10 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/embed_darwin_arm64.go +10 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/embed_windows_amd64.go +10 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/ffi.go +53 -15
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/fun.go +10 -2
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/init.go +22 -9
- 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 +4 -7
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/callback.go +2 -1
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3-binding.c +11545 -6680
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3-binding.h +527 -273
- 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/mattn/go-sqlite3/sqlite3_opt_userauth.go +13 -140
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3ext.h +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.25.go +37 -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/github.com/vektah/gqlparser/v2/LICENSE +19 -0
- slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/argmap.go +37 -0
- slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/collections.go +148 -0
- slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/comment.go +31 -0
- slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/decode.go +216 -0
- slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/definition.go +110 -0
- slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/directive.go +43 -0
- slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/document.go +89 -0
- slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/dumper.go +159 -0
- slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/fragment.go +41 -0
- slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/operation.go +32 -0
- slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/path.go +72 -0
- slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/selection.go +41 -0
- slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/source.go +19 -0
- slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/type.go +68 -0
- slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/value.go +122 -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 +98 -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 +38 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exstrings/stringutil.go +104 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exsync/event.go +104 -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/.pre-commit-config.yaml +3 -3
- 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/hash.go +1 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate/keys.go +5 -4
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate.go +32 -26
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/argo/argo-wire-type-store.argo +63 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/argo/argo.go +62 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/argo/name-to-queryids.json +306 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/armadillomessage.go +42 -8
- 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 +2 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/client.go +134 -55
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/connectionevents.go +34 -11
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/download-to-file.go +63 -30
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/download.go +78 -34
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/errors.go +4 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/group.go +157 -55
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/internals.go +202 -154
- 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 +448 -138
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/msgsecret.go +106 -31
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/newsletter.go +83 -7
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/notification.go +83 -43
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/pair-code.go +9 -6
- 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 +17 -7
- 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/waBotMetadata/WABotMetadata.pb.go +5156 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waBotMetadata/WABotMetadata.proto +516 -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} +211 -89
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCompanionReg/{WAWebProtobufsCompanionReg.proto → WACompanionReg.proto} +5 -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 +7463 -5180
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waE2E/WAWebProtobufsE2E.proto +366 -343
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waHistorySync/WAWebProtobufsHistorySync.pb.go +485 -135
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waHistorySync/WAWebProtobufsHistorySync.proto +17 -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 +952 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waStatusAttributions/WAStatusAttributions.proto +88 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waSyncAction/WASyncAction.pb.go +1802 -453
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waSyncAction/WASyncAction.proto +92 -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 +435 -109
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWa6/WAWebProtobufsWa6.proto +11 -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 +32 -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 +267 -79
- 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 +87 -44
- 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 +314 -170
- 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 +109 -56
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/botmap.go +210 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/call.go +1 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/events/events.go +21 -2
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/group.go +15 -6
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/jid.go +9 -9
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/message.go +18 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/user.go +2 -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 +59 -37
- slidge_whatsapp/vendor/golang.org/x/crypto/curve25519/curve25519.go +1 -1
- 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 +164 -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 +181 -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 +410 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/pipe.go +184 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/server.go +3332 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/transport.go +3233 -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/affinity_linux.go +1 -3
- slidge_whatsapp/vendor/golang.org/x/sys/unix/mkerrors.sh +3 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_darwin.go +93 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux.go +16 -26
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_solaris.go +1 -1
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux.go +47 -16
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_386.go +3 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go +3 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_arm.go +3 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go +3 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_loong64.go +3 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_mips.go +3 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_mips64.go +3 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go +3 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go +3 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_ppc.go +3 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go +3 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go +3 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_riscv64.go +3 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go +3 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.go +3 -0
- 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/unix/zsyscall_solaris_amd64.go +4 -4
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_386.go +1 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_amd64.go +1 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_arm.go +1 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_arm64.go +1 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_loong64.go +1 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_mips.go +1 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64.go +1 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64le.go +1 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_mipsle.go +1 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc.go +1 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64.go +1 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64le.go +1 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_riscv64.go +1 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_s390x.go +1 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_sparc64.go +1 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux.go +168 -12
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_386.go +17 -1
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_amd64.go +16 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_arm.go +18 -2
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_arm64.go +16 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_loong64.go +16 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_mips.go +17 -1
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_mips64.go +16 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_mips64le.go +16 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_mipsle.go +17 -1
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_ppc.go +18 -2
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64.go +16 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64le.go +16 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_riscv64.go +16 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_s390x.go +16 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_sparc64.go +16 -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 +245 -0
- slidge_whatsapp/vendor/golang.org/x/sys/windows/zsyscall_windows.go +491 -482
- 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/encoding/protowire/wire.go +25 -1
- 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 +13 -5
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/filedesc/presence.go +33 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/api_gen.go +6 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/descriptor_gen.go +81 -19
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/codec_message_opaque.go +2 -1
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/message_opaque.go +8 -37
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/presence.go +0 -3
- 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 +10 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/reflect/protoreflect/{value_unsafe_go121.go → value_unsafe.go} +0 -2
- slidge_whatsapp/vendor/modules.txt +80 -21
- {slidge_whatsapp-0.2.5.dist-info → slidge_whatsapp-0.3.0.dist-info}/METADATA +5 -4
- {slidge_whatsapp-0.2.5.dist-info → slidge_whatsapp-0.3.0.dist-info}/RECORD +456 -263
- {slidge_whatsapp-0.2.5.dist-info → slidge_whatsapp-0.3.0.dist-info}/WHEEL +1 -1
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/abi_amd64.go +0 -7
- 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.3.0.dist-info}/entry_points.txt +0 -0
- {slidge_whatsapp-0.2.5.dist-info → slidge_whatsapp-0.3.0.dist-info/licenses}/LICENSE +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,19 +211,19 @@ 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, []store.LIDMapping, error) {
|
|
223
|
+
return int.c.parseGroupCreate(parentNode, node)
|
|
212
224
|
}
|
|
213
225
|
|
|
214
|
-
func (int *DangerousInternalClient) ParseGroupChange(node *waBinary.Node) (*events.GroupInfo, error) {
|
|
226
|
+
func (int *DangerousInternalClient) ParseGroupChange(node *waBinary.Node) (*events.GroupInfo, []store.LIDMapping, error) {
|
|
215
227
|
return int.c.parseGroupChange(node)
|
|
216
228
|
}
|
|
217
229
|
|
|
@@ -219,7 +231,7 @@ func (int *DangerousInternalClient) UpdateGroupParticipantCache(evt *events.Grou
|
|
|
219
231
|
int.c.updateGroupParticipantCache(evt)
|
|
220
232
|
}
|
|
221
233
|
|
|
222
|
-
func (int *DangerousInternalClient) ParseGroupNotification(node *waBinary.Node) (any, error) {
|
|
234
|
+
func (int *DangerousInternalClient) ParseGroupNotification(node *waBinary.Node) (any, []store.LIDMapping, error) {
|
|
223
235
|
return int.c.parseGroupNotification(node)
|
|
224
236
|
}
|
|
225
237
|
|
|
@@ -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,96 @@ 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) (handlerFailed 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)
|
|
304
|
+
}
|
|
305
|
+
|
|
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)
|
|
308
|
+
}
|
|
309
|
+
|
|
310
|
+
func (int *DangerousInternalClient) HandleSenderKeyDistributionMessage(ctx context.Context, chat, from types.JID, axolotlSKDM []byte) {
|
|
311
|
+
int.c.handleSenderKeyDistributionMessage(ctx, chat, from, axolotlSKDM)
|
|
292
312
|
}
|
|
293
313
|
|
|
294
314
|
func (int *DangerousInternalClient) HandleHistorySyncNotificationLoop() {
|
|
295
315
|
int.c.handleHistorySyncNotificationLoop()
|
|
296
316
|
}
|
|
297
317
|
|
|
298
|
-
func (int *DangerousInternalClient)
|
|
299
|
-
int.c.
|
|
318
|
+
func (int *DangerousInternalClient) HandleAppStateSyncKeyShare(ctx context.Context, keys *waE2E.AppStateSyncKeyShare) {
|
|
319
|
+
int.c.handleAppStateSyncKeyShare(ctx, keys)
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
func (int *DangerousInternalClient) HandlePlaceholderResendResponse(msg *waE2E.PeerDataOperationRequestResponseMessage) (ok bool) {
|
|
323
|
+
return int.c.handlePlaceholderResendResponse(msg)
|
|
300
324
|
}
|
|
301
325
|
|
|
302
|
-
func (int *DangerousInternalClient)
|
|
303
|
-
int.c.
|
|
326
|
+
func (int *DangerousInternalClient) HandleProtocolMessage(ctx context.Context, info *types.MessageInfo, msg *waE2E.Message) (ok bool) {
|
|
327
|
+
return int.c.handleProtocolMessage(ctx, info, msg)
|
|
304
328
|
}
|
|
305
329
|
|
|
306
|
-
func (int *DangerousInternalClient)
|
|
307
|
-
int.c.
|
|
330
|
+
func (int *DangerousInternalClient) ProcessProtocolParts(ctx context.Context, info *types.MessageInfo, msg *waE2E.Message) (ok bool) {
|
|
331
|
+
return int.c.processProtocolParts(ctx, info, msg)
|
|
308
332
|
}
|
|
309
333
|
|
|
310
|
-
func (int *DangerousInternalClient)
|
|
311
|
-
int.c.
|
|
334
|
+
func (int *DangerousInternalClient) StoreMessageSecret(ctx context.Context, info *types.MessageInfo, msg *waE2E.Message) {
|
|
335
|
+
int.c.storeMessageSecret(ctx, info, msg)
|
|
312
336
|
}
|
|
313
337
|
|
|
314
|
-
func (int *DangerousInternalClient)
|
|
315
|
-
int.c.
|
|
338
|
+
func (int *DangerousInternalClient) StoreHistoricalMessageSecrets(ctx context.Context, conversations []*waHistorySync.Conversation) {
|
|
339
|
+
int.c.storeHistoricalMessageSecrets(ctx, conversations)
|
|
316
340
|
}
|
|
317
341
|
|
|
318
|
-
func (int *DangerousInternalClient)
|
|
319
|
-
int.c.
|
|
342
|
+
func (int *DangerousInternalClient) StoreLIDSyncMessage(ctx context.Context, msg []byte) {
|
|
343
|
+
int.c.storeLIDSyncMessage(ctx, msg)
|
|
320
344
|
}
|
|
321
345
|
|
|
322
|
-
func (int *DangerousInternalClient)
|
|
323
|
-
int.c.
|
|
346
|
+
func (int *DangerousInternalClient) StoreGlobalSettings(ctx context.Context, settings *waHistorySync.GlobalSettings) {
|
|
347
|
+
int.c.storeGlobalSettings(ctx, settings)
|
|
324
348
|
}
|
|
325
349
|
|
|
326
|
-
func (int *DangerousInternalClient)
|
|
327
|
-
int.c.
|
|
350
|
+
func (int *DangerousInternalClient) StoreHistoricalPNLIDMappings(ctx context.Context, mappings []*waHistorySync.PhoneNumberToLIDMapping) {
|
|
351
|
+
int.c.storeHistoricalPNLIDMappings(ctx, mappings)
|
|
352
|
+
}
|
|
353
|
+
|
|
354
|
+
func (int *DangerousInternalClient) HandleDecryptedMessage(ctx context.Context, info *types.MessageInfo, msg *waE2E.Message, retryCount int) bool {
|
|
355
|
+
return int.c.handleDecryptedMessage(ctx, info, msg, retryCount)
|
|
328
356
|
}
|
|
329
357
|
|
|
330
358
|
func (int *DangerousInternalClient) SendProtocolMessageReceipt(id types.MessageID, msgType types.ReceiptType) {
|
|
331
359
|
int.c.sendProtocolMessageReceipt(id, msgType)
|
|
332
360
|
}
|
|
333
361
|
|
|
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)
|
|
362
|
+
func (int *DangerousInternalClient) DecryptMsgSecret(ctx context.Context, msg *events.Message, useCase MsgSecretType, encrypted messageEncryptedSecret, origMsgKey *waCommon.MessageKey) ([]byte, error) {
|
|
363
|
+
return int.c.decryptMsgSecret(ctx, msg, useCase, encrypted, origMsgKey)
|
|
336
364
|
}
|
|
337
365
|
|
|
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)
|
|
366
|
+
func (int *DangerousInternalClient) EncryptMsgSecret(ctx context.Context, ownID, chat, origSender types.JID, origMsgID types.MessageID, useCase MsgSecretType, plaintext []byte) (ciphertext, iv []byte, err error) {
|
|
367
|
+
return int.c.encryptMsgSecret(ctx, ownID, chat, origSender, origMsgID, useCase, plaintext)
|
|
340
368
|
}
|
|
341
369
|
|
|
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)
|
|
370
|
+
func (int *DangerousInternalClient) DecryptBotMessage(ctx context.Context, messageSecret []byte, msMsg messageEncryptedSecret, messageID types.MessageID, targetSenderJID types.JID, info *types.MessageInfo) ([]byte, error) {
|
|
371
|
+
return int.c.decryptBotMessage(ctx, messageSecret, msMsg, messageID, targetSenderJID, info)
|
|
344
372
|
}
|
|
345
373
|
|
|
346
374
|
func (int *DangerousInternalClient) SendMexIQ(ctx context.Context, queryID string, variables any) (json.RawMessage, error) {
|
|
@@ -351,68 +379,68 @@ func (int *DangerousInternalClient) GetNewsletterInfo(input map[string]any, fetc
|
|
|
351
379
|
return int.c.getNewsletterInfo(input, fetchViewerMeta)
|
|
352
380
|
}
|
|
353
381
|
|
|
354
|
-
func (int *DangerousInternalClient) HandleEncryptNotification(node *waBinary.Node) {
|
|
355
|
-
int.c.handleEncryptNotification(node)
|
|
382
|
+
func (int *DangerousInternalClient) HandleEncryptNotification(ctx context.Context, node *waBinary.Node) {
|
|
383
|
+
int.c.handleEncryptNotification(ctx, node)
|
|
356
384
|
}
|
|
357
385
|
|
|
358
|
-
func (int *DangerousInternalClient) HandleAppStateNotification(node *waBinary.Node) {
|
|
359
|
-
int.c.handleAppStateNotification(node)
|
|
386
|
+
func (int *DangerousInternalClient) HandleAppStateNotification(ctx context.Context, node *waBinary.Node) {
|
|
387
|
+
int.c.handleAppStateNotification(ctx, node)
|
|
360
388
|
}
|
|
361
389
|
|
|
362
|
-
func (int *DangerousInternalClient) HandlePictureNotification(node *waBinary.Node) {
|
|
363
|
-
int.c.handlePictureNotification(node)
|
|
390
|
+
func (int *DangerousInternalClient) HandlePictureNotification(ctx context.Context, node *waBinary.Node) {
|
|
391
|
+
int.c.handlePictureNotification(ctx, node)
|
|
364
392
|
}
|
|
365
393
|
|
|
366
|
-
func (int *DangerousInternalClient) HandleDeviceNotification(node *waBinary.Node) {
|
|
367
|
-
int.c.handleDeviceNotification(node)
|
|
394
|
+
func (int *DangerousInternalClient) HandleDeviceNotification(ctx context.Context, node *waBinary.Node) {
|
|
395
|
+
int.c.handleDeviceNotification(ctx, node)
|
|
368
396
|
}
|
|
369
397
|
|
|
370
|
-
func (int *DangerousInternalClient) HandleFBDeviceNotification(node *waBinary.Node) {
|
|
371
|
-
int.c.handleFBDeviceNotification(node)
|
|
398
|
+
func (int *DangerousInternalClient) HandleFBDeviceNotification(ctx context.Context, node *waBinary.Node) {
|
|
399
|
+
int.c.handleFBDeviceNotification(ctx, node)
|
|
372
400
|
}
|
|
373
401
|
|
|
374
|
-
func (int *DangerousInternalClient) HandleOwnDevicesNotification(node *waBinary.Node) {
|
|
375
|
-
int.c.handleOwnDevicesNotification(node)
|
|
402
|
+
func (int *DangerousInternalClient) HandleOwnDevicesNotification(ctx context.Context, node *waBinary.Node) {
|
|
403
|
+
int.c.handleOwnDevicesNotification(ctx, node)
|
|
376
404
|
}
|
|
377
405
|
|
|
378
|
-
func (int *DangerousInternalClient) HandleBlocklist(node *waBinary.Node) {
|
|
379
|
-
int.c.handleBlocklist(node)
|
|
406
|
+
func (int *DangerousInternalClient) HandleBlocklist(ctx context.Context, node *waBinary.Node) {
|
|
407
|
+
int.c.handleBlocklist(ctx, node)
|
|
380
408
|
}
|
|
381
409
|
|
|
382
|
-
func (int *DangerousInternalClient) HandleAccountSyncNotification(node *waBinary.Node) {
|
|
383
|
-
int.c.handleAccountSyncNotification(node)
|
|
410
|
+
func (int *DangerousInternalClient) HandleAccountSyncNotification(ctx context.Context, node *waBinary.Node) {
|
|
411
|
+
int.c.handleAccountSyncNotification(ctx, node)
|
|
384
412
|
}
|
|
385
413
|
|
|
386
|
-
func (int *DangerousInternalClient) HandlePrivacyTokenNotification(node *waBinary.Node) {
|
|
387
|
-
int.c.handlePrivacyTokenNotification(node)
|
|
414
|
+
func (int *DangerousInternalClient) HandlePrivacyTokenNotification(ctx context.Context, node *waBinary.Node) {
|
|
415
|
+
int.c.handlePrivacyTokenNotification(ctx, node)
|
|
388
416
|
}
|
|
389
417
|
|
|
390
418
|
func (int *DangerousInternalClient) ParseNewsletterMessages(node *waBinary.Node) []*types.NewsletterMessage {
|
|
391
419
|
return int.c.parseNewsletterMessages(node)
|
|
392
420
|
}
|
|
393
421
|
|
|
394
|
-
func (int *DangerousInternalClient) HandleNewsletterNotification(node *waBinary.Node) {
|
|
395
|
-
int.c.handleNewsletterNotification(node)
|
|
422
|
+
func (int *DangerousInternalClient) HandleNewsletterNotification(ctx context.Context, node *waBinary.Node) {
|
|
423
|
+
int.c.handleNewsletterNotification(ctx, node)
|
|
396
424
|
}
|
|
397
425
|
|
|
398
|
-
func (int *DangerousInternalClient) HandleMexNotification(node *waBinary.Node) {
|
|
399
|
-
int.c.handleMexNotification(node)
|
|
426
|
+
func (int *DangerousInternalClient) HandleMexNotification(ctx context.Context, node *waBinary.Node) {
|
|
427
|
+
int.c.handleMexNotification(ctx, node)
|
|
400
428
|
}
|
|
401
429
|
|
|
402
|
-
func (int *DangerousInternalClient) HandleStatusNotification(node *waBinary.Node) {
|
|
403
|
-
int.c.handleStatusNotification(node)
|
|
430
|
+
func (int *DangerousInternalClient) HandleStatusNotification(ctx context.Context, node *waBinary.Node) {
|
|
431
|
+
int.c.handleStatusNotification(ctx, node)
|
|
404
432
|
}
|
|
405
433
|
|
|
406
434
|
func (int *DangerousInternalClient) HandleNotification(node *waBinary.Node) {
|
|
407
435
|
int.c.handleNotification(node)
|
|
408
436
|
}
|
|
409
437
|
|
|
410
|
-
func (int *DangerousInternalClient) TryHandleCodePairNotification(parentNode *waBinary.Node) {
|
|
411
|
-
int.c.tryHandleCodePairNotification(parentNode)
|
|
438
|
+
func (int *DangerousInternalClient) TryHandleCodePairNotification(ctx context.Context, parentNode *waBinary.Node) {
|
|
439
|
+
int.c.tryHandleCodePairNotification(ctx, parentNode)
|
|
412
440
|
}
|
|
413
441
|
|
|
414
|
-
func (int *DangerousInternalClient) HandleCodePairNotification(parentNode *waBinary.Node) error {
|
|
415
|
-
return int.c.handleCodePairNotification(parentNode)
|
|
442
|
+
func (int *DangerousInternalClient) HandleCodePairNotification(ctx context.Context, parentNode *waBinary.Node) error {
|
|
443
|
+
return int.c.handleCodePairNotification(ctx, parentNode)
|
|
416
444
|
}
|
|
417
445
|
|
|
418
446
|
func (int *DangerousInternalClient) HandleIQ(node *waBinary.Node) {
|
|
@@ -431,20 +459,20 @@ func (int *DangerousInternalClient) HandlePairSuccess(node *waBinary.Node) {
|
|
|
431
459
|
int.c.handlePairSuccess(node)
|
|
432
460
|
}
|
|
433
461
|
|
|
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)
|
|
462
|
+
func (int *DangerousInternalClient) HandlePair(ctx context.Context, deviceIdentityBytes []byte, reqID, businessName, platform string, jid, lid types.JID) error {
|
|
463
|
+
return int.c.handlePair(ctx, deviceIdentityBytes, reqID, businessName, platform, jid, lid)
|
|
436
464
|
}
|
|
437
465
|
|
|
438
466
|
func (int *DangerousInternalClient) SendPairError(id string, code int, text string) {
|
|
439
467
|
int.c.sendPairError(id, code, text)
|
|
440
468
|
}
|
|
441
469
|
|
|
442
|
-
func (int *DangerousInternalClient) GetServerPreKeyCount() (int, error) {
|
|
443
|
-
return int.c.getServerPreKeyCount()
|
|
470
|
+
func (int *DangerousInternalClient) GetServerPreKeyCount(ctx context.Context) (int, error) {
|
|
471
|
+
return int.c.getServerPreKeyCount(ctx)
|
|
444
472
|
}
|
|
445
473
|
|
|
446
|
-
func (int *DangerousInternalClient) UploadPreKeys() {
|
|
447
|
-
int.c.uploadPreKeys()
|
|
474
|
+
func (int *DangerousInternalClient) UploadPreKeys(ctx context.Context) {
|
|
475
|
+
int.c.uploadPreKeys(ctx)
|
|
448
476
|
}
|
|
449
477
|
|
|
450
478
|
func (int *DangerousInternalClient) FetchPreKeys(ctx context.Context, users []types.JID) (map[types.JID]preKeyResp, error) {
|
|
@@ -463,8 +491,8 @@ func (int *DangerousInternalClient) ParsePrivacySettings(privacyNode *waBinary.N
|
|
|
463
491
|
return int.c.parsePrivacySettings(privacyNode, settings)
|
|
464
492
|
}
|
|
465
493
|
|
|
466
|
-
func (int *DangerousInternalClient) HandlePrivacySettingsNotification(privacyNode *waBinary.Node) {
|
|
467
|
-
int.c.handlePrivacySettingsNotification(privacyNode)
|
|
494
|
+
func (int *DangerousInternalClient) HandlePrivacySettingsNotification(ctx context.Context, privacyNode *waBinary.Node) {
|
|
495
|
+
int.c.handlePrivacySettingsNotification(ctx, privacyNode)
|
|
468
496
|
}
|
|
469
497
|
|
|
470
498
|
func (int *DangerousInternalClient) HandleReceipt(node *waBinary.Node) {
|
|
@@ -479,8 +507,8 @@ func (int *DangerousInternalClient) ParseReceipt(node *waBinary.Node) (*events.R
|
|
|
479
507
|
return int.c.parseReceipt(node)
|
|
480
508
|
}
|
|
481
509
|
|
|
482
|
-
func (int *DangerousInternalClient) MaybeDeferredAck(node *waBinary.Node) func() {
|
|
483
|
-
return int.c.maybeDeferredAck(node)
|
|
510
|
+
func (int *DangerousInternalClient) MaybeDeferredAck(ctx context.Context, node *waBinary.Node) func(...*bool) {
|
|
511
|
+
return int.c.maybeDeferredAck(ctx, node)
|
|
484
512
|
}
|
|
485
513
|
|
|
486
514
|
func (int *DangerousInternalClient) SendAck(node *waBinary.Node) {
|
|
@@ -535,16 +563,16 @@ func (int *DangerousInternalClient) GetRecentMessage(to types.JID, id types.Mess
|
|
|
535
563
|
return int.c.getRecentMessage(to, id)
|
|
536
564
|
}
|
|
537
565
|
|
|
538
|
-
func (int *DangerousInternalClient) GetMessageForRetry(receipt *events.Receipt, messageID types.MessageID) (RecentMessage, error) {
|
|
539
|
-
return int.c.getMessageForRetry(receipt, messageID)
|
|
566
|
+
func (int *DangerousInternalClient) GetMessageForRetry(ctx context.Context, receipt *events.Receipt, messageID types.MessageID) (RecentMessage, error) {
|
|
567
|
+
return int.c.getMessageForRetry(ctx, receipt, messageID)
|
|
540
568
|
}
|
|
541
569
|
|
|
542
|
-
func (int *DangerousInternalClient) ShouldRecreateSession(retryCount int, jid types.JID) (reason string, recreate bool) {
|
|
543
|
-
return int.c.shouldRecreateSession(retryCount, jid)
|
|
570
|
+
func (int *DangerousInternalClient) ShouldRecreateSession(ctx context.Context, retryCount int, jid types.JID) (reason string, recreate bool) {
|
|
571
|
+
return int.c.shouldRecreateSession(ctx, retryCount, jid)
|
|
544
572
|
}
|
|
545
573
|
|
|
546
|
-
func (int *DangerousInternalClient) HandleRetryReceipt(receipt *events.Receipt, node *waBinary.Node) error {
|
|
547
|
-
return int.c.handleRetryReceipt(receipt, node)
|
|
574
|
+
func (int *DangerousInternalClient) HandleRetryReceipt(ctx context.Context, receipt *events.Receipt, node *waBinary.Node) error {
|
|
575
|
+
return int.c.handleRetryReceipt(ctx, receipt, node)
|
|
548
576
|
}
|
|
549
577
|
|
|
550
578
|
func (int *DangerousInternalClient) CancelDelayedRequestFromPhone(msgID types.MessageID) {
|
|
@@ -555,8 +583,16 @@ func (int *DangerousInternalClient) DelayedRequestMessageFromPhone(info *types.M
|
|
|
555
583
|
int.c.delayedRequestMessageFromPhone(info)
|
|
556
584
|
}
|
|
557
585
|
|
|
558
|
-
func (int *DangerousInternalClient)
|
|
559
|
-
int.c.
|
|
586
|
+
func (int *DangerousInternalClient) ImmediateRequestMessageFromPhone(ctx context.Context, info *types.MessageInfo) {
|
|
587
|
+
int.c.immediateRequestMessageFromPhone(ctx, info)
|
|
588
|
+
}
|
|
589
|
+
|
|
590
|
+
func (int *DangerousInternalClient) ClearDelayedMessageRequests() {
|
|
591
|
+
int.c.clearDelayedMessageRequests()
|
|
592
|
+
}
|
|
593
|
+
|
|
594
|
+
func (int *DangerousInternalClient) SendRetryReceipt(ctx context.Context, node *waBinary.Node, info *types.MessageInfo, forceIncludeIdentity bool) {
|
|
595
|
+
int.c.sendRetryReceipt(ctx, node, info, forceIncludeIdentity)
|
|
560
596
|
}
|
|
561
597
|
|
|
562
598
|
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 +611,56 @@ func (int *DangerousInternalClient) EncryptMessageForDevicesV3(ctx context.Conte
|
|
|
575
611
|
return int.c.encryptMessageForDevicesV3(ctx, allDevices, ownID, id, payload, skdm, dsm, encAttrs)
|
|
576
612
|
}
|
|
577
613
|
|
|
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)
|
|
614
|
+
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) {
|
|
615
|
+
return int.c.encryptMessageForDeviceAndWrapV3(ctx, payload, skdm, dsm, to, bundle, encAttrs)
|
|
580
616
|
}
|
|
581
617
|
|
|
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)
|
|
618
|
+
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) {
|
|
619
|
+
return int.c.encryptMessageForDeviceV3(ctx, payload, skdm, dsm, to, bundle, extraAttrs)
|
|
584
620
|
}
|
|
585
621
|
|
|
586
622
|
func (int *DangerousInternalClient) SendNewsletter(to types.JID, id types.MessageID, message *waE2E.Message, mediaID string, timings *MessageDebugTimings) ([]byte, error) {
|
|
587
623
|
return int.c.sendNewsletter(to, id, message, mediaID, timings)
|
|
588
624
|
}
|
|
589
625
|
|
|
590
|
-
func (int *DangerousInternalClient) SendGroup(ctx context.Context, to,
|
|
591
|
-
return int.c.sendGroup(ctx, to,
|
|
626
|
+
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) {
|
|
627
|
+
return int.c.sendGroup(ctx, ownID, to, participants, id, message, timings, extraParams)
|
|
592
628
|
}
|
|
593
629
|
|
|
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)
|
|
630
|
+
func (int *DangerousInternalClient) SendPeerMessage(ctx context.Context, to types.JID, id types.MessageID, message *waE2E.Message, timings *MessageDebugTimings) ([]byte, error) {
|
|
631
|
+
return int.c.sendPeerMessage(ctx, to, id, message, timings)
|
|
596
632
|
}
|
|
597
633
|
|
|
598
|
-
func (int *DangerousInternalClient) SendDM(ctx context.Context,
|
|
599
|
-
return int.c.sendDM(ctx,
|
|
634
|
+
func (int *DangerousInternalClient) SendDM(ctx context.Context, ownID, to types.JID, id types.MessageID, message *waE2E.Message, timings *MessageDebugTimings, extraParams nodeExtraParams) ([]byte, error) {
|
|
635
|
+
return int.c.sendDM(ctx, ownID, to, id, message, timings, extraParams)
|
|
600
636
|
}
|
|
601
637
|
|
|
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)
|
|
638
|
+
func (int *DangerousInternalClient) PreparePeerMessageNode(ctx context.Context, to types.JID, id types.MessageID, message *waE2E.Message, timings *MessageDebugTimings) (*waBinary.Node, error) {
|
|
639
|
+
return int.c.preparePeerMessageNode(ctx, to, id, message, timings)
|
|
604
640
|
}
|
|
605
641
|
|
|
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,
|
|
642
|
+
func (int *DangerousInternalClient) GetMessageContent(baseNode waBinary.Node, message *waE2E.Message, msgAttrs waBinary.Attrs, includeIdentity bool, extraParams nodeExtraParams) []waBinary.Node {
|
|
643
|
+
return int.c.getMessageContent(baseNode, message, msgAttrs, includeIdentity, extraParams)
|
|
608
644
|
}
|
|
609
645
|
|
|
610
|
-
func (int *DangerousInternalClient) PrepareMessageNode(ctx context.Context, to
|
|
611
|
-
return int.c.prepareMessageNode(ctx, to,
|
|
646
|
+
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) {
|
|
647
|
+
return int.c.prepareMessageNode(ctx, to, id, message, participants, plaintext, dsmPlaintext, timings, extraParams)
|
|
612
648
|
}
|
|
613
649
|
|
|
614
650
|
func (int *DangerousInternalClient) MakeDeviceIdentityNode() waBinary.Node {
|
|
615
651
|
return int.c.makeDeviceIdentityNode()
|
|
616
652
|
}
|
|
617
653
|
|
|
618
|
-
func (int *DangerousInternalClient) EncryptMessageForDevices(ctx context.Context, allDevices []types.JID,
|
|
619
|
-
return int.c.encryptMessageForDevices(ctx, allDevices,
|
|
654
|
+
func (int *DangerousInternalClient) EncryptMessageForDevices(ctx context.Context, allDevices []types.JID, id string, msgPlaintext, dsmPlaintext []byte, encAttrs waBinary.Attrs) ([]waBinary.Node, bool) {
|
|
655
|
+
return int.c.encryptMessageForDevices(ctx, allDevices, id, msgPlaintext, dsmPlaintext, encAttrs)
|
|
620
656
|
}
|
|
621
657
|
|
|
622
|
-
func (int *DangerousInternalClient) EncryptMessageForDeviceAndWrap(plaintext []byte,
|
|
623
|
-
return int.c.encryptMessageForDeviceAndWrap(plaintext,
|
|
658
|
+
func (int *DangerousInternalClient) EncryptMessageForDeviceAndWrap(ctx context.Context, plaintext []byte, wireIdentity, encryptionIdentity types.JID, bundle *prekey.Bundle, encAttrs waBinary.Attrs) (*waBinary.Node, bool, error) {
|
|
659
|
+
return int.c.encryptMessageForDeviceAndWrap(ctx, plaintext, wireIdentity, encryptionIdentity, bundle, encAttrs)
|
|
624
660
|
}
|
|
625
661
|
|
|
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)
|
|
662
|
+
func (int *DangerousInternalClient) EncryptMessageForDevice(ctx context.Context, plaintext []byte, to types.JID, bundle *prekey.Bundle, extraAttrs waBinary.Attrs) (*waBinary.Node, bool, error) {
|
|
663
|
+
return int.c.encryptMessageForDevice(ctx, plaintext, to, bundle, extraAttrs)
|
|
628
664
|
}
|
|
629
665
|
|
|
630
666
|
func (int *DangerousInternalClient) RawUpload(ctx context.Context, dataToUpload io.Reader, uploadSize uint64, fileHash []byte, appInfo MediaType, newsletter bool, resp *UploadResponse) error {
|
|
@@ -635,19 +671,23 @@ func (int *DangerousInternalClient) ParseBusinessProfile(node *waBinary.Node) (*
|
|
|
635
671
|
return int.c.parseBusinessProfile(node)
|
|
636
672
|
}
|
|
637
673
|
|
|
638
|
-
func (int *DangerousInternalClient) HandleHistoricalPushNames(names []*waHistorySync.Pushname) {
|
|
639
|
-
int.c.handleHistoricalPushNames(names)
|
|
674
|
+
func (int *DangerousInternalClient) HandleHistoricalPushNames(ctx context.Context, names []*waHistorySync.Pushname) {
|
|
675
|
+
int.c.handleHistoricalPushNames(ctx, names)
|
|
640
676
|
}
|
|
641
677
|
|
|
642
|
-
func (int *DangerousInternalClient) UpdatePushName(user types.JID, messageInfo *types.MessageInfo, name string) {
|
|
643
|
-
int.c.updatePushName(user, messageInfo, name)
|
|
678
|
+
func (int *DangerousInternalClient) UpdatePushName(ctx context.Context, user types.JID, messageInfo *types.MessageInfo, name string) {
|
|
679
|
+
int.c.updatePushName(ctx, user, messageInfo, name)
|
|
644
680
|
}
|
|
645
681
|
|
|
646
|
-
func (int *DangerousInternalClient) UpdateBusinessName(user types.JID, messageInfo *types.MessageInfo, name string) {
|
|
647
|
-
int.c.updateBusinessName(user, messageInfo, name)
|
|
682
|
+
func (int *DangerousInternalClient) UpdateBusinessName(ctx context.Context, user types.JID, messageInfo *types.MessageInfo, name string) {
|
|
683
|
+
int.c.updateBusinessName(ctx, user, messageInfo, name)
|
|
648
684
|
}
|
|
649
685
|
|
|
650
|
-
func (int *DangerousInternalClient)
|
|
686
|
+
func (int *DangerousInternalClient) GetFBIDDevicesInternal(ctx context.Context, jids []types.JID) (*waBinary.Node, error) {
|
|
687
|
+
return int.c.getFBIDDevicesInternal(ctx, jids)
|
|
688
|
+
}
|
|
689
|
+
|
|
690
|
+
func (int *DangerousInternalClient) GetFBIDDevices(ctx context.Context, jids []types.JID) ([]types.JID, error) {
|
|
651
691
|
return int.c.getFBIDDevices(ctx, jids)
|
|
652
692
|
}
|
|
653
693
|
|
|
@@ -658,3 +698,11 @@ func (int *DangerousInternalClient) Usync(ctx context.Context, jids []types.JID,
|
|
|
658
698
|
func (int *DangerousInternalClient) ParseBlocklist(node *waBinary.Node) *types.Blocklist {
|
|
659
699
|
return int.c.parseBlocklist(node)
|
|
660
700
|
}
|
|
701
|
+
|
|
702
|
+
func (int *DangerousInternalClient) ShouldIncludeReportingToken(message *waE2E.Message) bool {
|
|
703
|
+
return int.c.shouldIncludeReportingToken(message)
|
|
704
|
+
}
|
|
705
|
+
|
|
706
|
+
func (int *DangerousInternalClient) GetMessageReportingToken(msgProtobuf []byte, msg *waE2E.Message, senderJID, remoteJID types.JID, messageID types.MessageID) waBinary.Node {
|
|
707
|
+
return int.c.getMessageReportingToken(msgProtobuf, msg, senderJID, remoteJID, messageID)
|
|
708
|
+
}
|