summaryrefslogtreecommitdiffstats
path: root/vendor/go.mau.fi/whatsmeow/keepalive.go
diff options
context:
space:
mode:
authorWim <wim@42.be>2022-01-31 00:27:37 +0100
committerWim <wim@42.be>2022-03-20 14:57:48 +0100
commite3cafeaf9292f67459ff1d186f68283bfaedf2ae (patch)
treeb69c39620aa91dba695b3b935c6651c0fb37ce75 /vendor/go.mau.fi/whatsmeow/keepalive.go
parente7b193788a56ee7cdb02a87a9db0ad6724ef66d5 (diff)
downloadmatterbridge-msglm-e3cafeaf9292f67459ff1d186f68283bfaedf2ae.tar.gz
matterbridge-msglm-e3cafeaf9292f67459ff1d186f68283bfaedf2ae.tar.bz2
matterbridge-msglm-e3cafeaf9292f67459ff1d186f68283bfaedf2ae.zip
Add dependencies/vendor (whatsapp)
Diffstat (limited to 'vendor/go.mau.fi/whatsmeow/keepalive.go')
-rw-r--r--vendor/go.mau.fi/whatsmeow/keepalive.go62
1 files changed, 62 insertions, 0 deletions
diff --git a/vendor/go.mau.fi/whatsmeow/keepalive.go b/vendor/go.mau.fi/whatsmeow/keepalive.go
new file mode 100644
index 00000000..ec05df1d
--- /dev/null
+++ b/vendor/go.mau.fi/whatsmeow/keepalive.go
@@ -0,0 +1,62 @@
+// Copyright (c) 2021 Tulir Asokan
+//
+// This Source Code Form is subject to the terms of the Mozilla Public
+// License, v. 2.0. If a copy of the MPL was not distributed with this
+// file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+package whatsmeow
+
+import (
+ "context"
+ "math/rand"
+ "time"
+
+ waBinary "go.mau.fi/whatsmeow/binary"
+ "go.mau.fi/whatsmeow/types"
+)
+
+var (
+ // KeepAliveResponseDeadline specifies the duration to wait for a response to websocket keepalive pings.
+ KeepAliveResponseDeadline = 10 * time.Second
+ // KeepAliveIntervalMin specifies the minimum interval for websocket keepalive pings.
+ KeepAliveIntervalMin = 20 * time.Second
+ // KeepAliveIntervalMax specifies the maximum interval for websocket keepalive pings.
+ KeepAliveIntervalMax = 30 * time.Second
+)
+
+func (cli *Client) keepAliveLoop(ctx context.Context) {
+ for {
+ interval := rand.Int63n(KeepAliveIntervalMax.Milliseconds()-KeepAliveIntervalMin.Milliseconds()) + KeepAliveIntervalMin.Milliseconds()
+ select {
+ case <-time.After(time.Duration(interval) * time.Millisecond):
+ if !cli.sendKeepAlive(ctx) {
+ return
+ }
+ case <-ctx.Done():
+ return
+ }
+ }
+}
+
+func (cli *Client) sendKeepAlive(ctx context.Context) bool {
+ respCh, err := cli.sendIQAsync(infoQuery{
+ Namespace: "w:p",
+ Type: "get",
+ To: types.ServerJID,
+ Content: []waBinary.Node{{Tag: "ping"}},
+ })
+ if err != nil {
+ cli.Log.Warnf("Failed to send keepalive: %v", err)
+ return true
+ }
+ select {
+ case <-respCh:
+ // All good
+ case <-time.After(KeepAliveResponseDeadline):
+ // TODO disconnect websocket?
+ cli.Log.Warnf("Keepalive timed out")
+ case <-ctx.Done():
+ return false
+ }
+ return true
+}