Skip to content

Commit 8a34d8f

Browse files
committed
event: allow blocking acks on event handling
1 parent 495e4eb commit 8a34d8f

File tree

5 files changed

+27
-14
lines changed

5 files changed

+27
-14
lines changed

call.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import (
1313
)
1414

1515
func (cli *Client) handleCallEvent(node *waBinary.Node) {
16-
go cli.sendAck(node)
16+
defer cli.maybeDeferredAck(node)
1717

1818
if len(node.GetChildren()) != 1 {
1919
cli.dispatchEvent(&events.UnknownCallEvent{Node: node})

client.go

+2
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,8 @@ type Client struct {
7272
// AutoReconnectHook is called when auto-reconnection fails. If the function returns false,
7373
// the client will not attempt to reconnect. The number of retries can be read from AutoReconnectErrors.
7474
AutoReconnectHook func(error) bool
75+
// If SynchronousAck is set, acks for messages will only be sent after all event handlers return.
76+
SynchronousAck bool
7577

7678
DisableLoginAutoReconnect bool
7779

message.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ func (cli *Client) handleEncryptedMessage(node *waBinary.Node) {
4646
if len(info.PushName) > 0 && info.PushName != "-" {
4747
go cli.updatePushName(info.Sender, info, info.PushName)
4848
}
49-
go cli.sendAck(node)
49+
defer cli.maybeDeferredAck(node)
5050
if info.Sender.Server == types.NewsletterServer {
5151
cli.handlePlaintextMessage(info, node)
5252
} else {

notification.go

+10-10
Original file line numberDiff line numberDiff line change
@@ -377,7 +377,7 @@ func (cli *Client) handleNotification(node *waBinary.Node) {
377377
if !ag.OK() {
378378
return
379379
}
380-
go cli.sendAck(node)
380+
defer cli.maybeDeferredAck(node)
381381
switch notifType {
382382
case "encrypt":
383383
go cli.handleEncryptNotification(node)
@@ -386,30 +386,30 @@ func (cli *Client) handleNotification(node *waBinary.Node) {
386386
case "account_sync":
387387
go cli.handleAccountSyncNotification(node)
388388
case "devices":
389-
go cli.handleDeviceNotification(node)
389+
cli.handleDeviceNotification(node)
390390
case "fbid:devices":
391-
go cli.handleFBDeviceNotification(node)
391+
cli.handleFBDeviceNotification(node)
392392
case "w:gp2":
393393
evt, err := cli.parseGroupNotification(node)
394394
if err != nil {
395395
cli.Log.Errorf("Failed to parse group notification: %v", err)
396396
} else {
397-
go cli.dispatchEvent(evt)
397+
cli.dispatchEvent(evt)
398398
}
399399
case "picture":
400-
go cli.handlePictureNotification(node)
400+
cli.handlePictureNotification(node)
401401
case "mediaretry":
402-
go cli.handleMediaRetryNotification(node)
402+
cli.handleMediaRetryNotification(node)
403403
case "privacy_token":
404-
go cli.handlePrivacyTokenNotification(node)
404+
cli.handlePrivacyTokenNotification(node)
405405
case "link_code_companion_reg":
406406
go cli.tryHandleCodePairNotification(node)
407407
case "newsletter":
408-
go cli.handleNewsletterNotification(node)
408+
cli.handleNewsletterNotification(node)
409409
case "mex":
410-
go cli.handleMexNotification(node)
410+
cli.handleMexNotification(node)
411411
case "status":
412-
go cli.handleStatusNotification(node)
412+
cli.handleStatusNotification(node)
413413
// Other types: business, disappearing_mode, server, status, pay, psa
414414
default:
415415
cli.Log.Debugf("Unhandled notification with type %s", notifType)

receipt.go

+13-2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ import (
1616
)
1717

1818
func (cli *Client) handleReceipt(node *waBinary.Node) {
19+
defer cli.maybeDeferredAck(node)
1920
receipt, err := cli.parseReceipt(node)
2021
if err != nil {
2122
cli.Log.Warnf("Failed to parse receipt: %v", err)
@@ -28,9 +29,8 @@ func (cli *Client) handleReceipt(node *waBinary.Node) {
2829
}
2930
}()
3031
}
31-
go cli.dispatchEvent(receipt)
32+
cli.dispatchEvent(receipt)
3233
}
33-
go cli.sendAck(node)
3434
}
3535

3636
func (cli *Client) handleGroupedReceipt(partialReceipt events.Receipt, participants *waBinary.Node) {
@@ -96,6 +96,17 @@ func (cli *Client) parseReceipt(node *waBinary.Node) (*events.Receipt, error) {
9696
return &receipt, nil
9797
}
9898

99+
func (cli *Client) maybeDeferredAck(node *waBinary.Node) func() {
100+
if cli.SynchronousAck {
101+
return func() {
102+
go cli.sendAck(node)
103+
}
104+
} else {
105+
go cli.sendAck(node)
106+
return func() {}
107+
}
108+
}
109+
99110
func (cli *Client) sendAck(node *waBinary.Node) {
100111
attrs := waBinary.Attrs{
101112
"class": node.Tag,

0 commit comments

Comments
 (0)