Skip to content

Commit 493635f

Browse files
authored
client: chunk getFBIDDevices requests to prevent timeout (#782)
1 parent 5c699c4 commit 493635f

File tree

2 files changed

+25
-12
lines changed

2 files changed

+25
-12
lines changed

internals.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

user.go

+24-11
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ import (
1010
"context"
1111
"errors"
1212
"fmt"
13+
"slices"
1314
"strings"
1415

1516
"google.golang.org/protobuf/proto"
@@ -464,19 +465,11 @@ func (cli *Client) GetUserDevicesContext(ctx context.Context, jids []types.JID)
464465
}
465466

466467
if len(fbJIDsToSync) > 0 {
467-
list, err := cli.getFBIDDevices(ctx, fbJIDsToSync)
468+
userDevices, err := cli.getFBIDDevices(ctx, fbJIDsToSync)
468469
if err != nil {
469470
return nil, err
470471
}
471-
for _, user := range list.GetChildren() {
472-
jid, jidOK := user.Attrs["jid"].(types.JID)
473-
if user.Tag != "user" || !jidOK {
474-
continue
475-
}
476-
userDevices := parseFBDeviceList(jid, user.GetChildByTag("devices"))
477-
cli.userDevicesCache[jid] = userDevices
478-
devices = append(devices, userDevices.devices...)
479-
}
472+
devices = append(devices, userDevices...)
480473
}
481474

482475
return devices, nil
@@ -703,7 +696,7 @@ func parseFBDeviceList(user types.JID, deviceList waBinary.Node) deviceCache {
703696
}
704697
}
705698

706-
func (cli *Client) getFBIDDevices(ctx context.Context, jids []types.JID) (*waBinary.Node, error) {
699+
func (cli *Client) getFBIDDevicesInternal(ctx context.Context, jids []types.JID) (*waBinary.Node, error) {
707700
users := make([]waBinary.Node, len(jids))
708701
for i, jid := range jids {
709702
users[i].Tag = "user"
@@ -729,6 +722,26 @@ func (cli *Client) getFBIDDevices(ctx context.Context, jids []types.JID) (*waBin
729722
}
730723
}
731724

725+
func (cli *Client) getFBIDDevices(ctx context.Context, jids []types.JID) ([]types.JID, error) {
726+
var devices []types.JID
727+
for chunk := range slices.Chunk(jids, 15) {
728+
list, err := cli.getFBIDDevicesInternal(ctx, chunk)
729+
if err != nil {
730+
return nil, err
731+
}
732+
for _, user := range list.GetChildren() {
733+
jid, jidOK := user.Attrs["jid"].(types.JID)
734+
if user.Tag != "user" || !jidOK {
735+
continue
736+
}
737+
userDevices := parseFBDeviceList(jid, user.GetChildByTag("devices"))
738+
cli.userDevicesCache[jid] = userDevices
739+
devices = append(devices, userDevices.devices...)
740+
}
741+
}
742+
return devices, nil
743+
}
744+
732745
type UsyncQueryExtras struct {
733746
BotListInfo []types.BotListInfo
734747
}

0 commit comments

Comments
 (0)