Skip to content

Commit daf102b

Browse files
committed
push: update apns push config
1 parent ae5c492 commit daf102b

File tree

1 file changed

+29
-20
lines changed

1 file changed

+29
-20
lines changed

push.go

+29-20
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ import (
1010
"context"
1111
"encoding/base64"
1212

13+
"go.mau.fi/util/random"
14+
1315
waBinary "go.mau.fi/whatsmeow/binary"
1416
"go.mau.fi/whatsmeow/types"
1517
)
@@ -31,30 +33,37 @@ func (fpc *FCMPushConfig) GetPushConfigAttrs() waBinary.Attrs {
3133
}
3234

3335
type APNsPushConfig struct {
34-
Token string `json:"token"`
36+
Token string `json:"token"`
37+
VoIPToken string `json:"voip_token"`
38+
MsgIDEncKey []byte `json:"msg_id_enc_key"`
3539
}
3640

3741
func (apc *APNsPushConfig) GetPushConfigAttrs() waBinary.Attrs {
38-
return waBinary.Attrs{
39-
"id": apc.Token,
40-
"platform": "apple",
41-
"version": 2,
42-
"reg_push": 1,
43-
"preview": 1,
44-
45-
/*
46-
"background_location": 0,
47-
"call": "Opening.m4r",
48-
"default": "note.m4r",
49-
"groups": "note.m4r",
50-
"lg": "en",
51-
"lc": "US",
52-
"nse_call": 0,
53-
"nse_ver": 0,
54-
"voip": apc.VoIPToken,
55-
"voip_payload_type": 0,
56-
*/
42+
if len(apc.MsgIDEncKey) != 32 {
43+
apc.MsgIDEncKey = random.Bytes(32)
44+
}
45+
attrs := waBinary.Attrs{
46+
"id": apc.Token,
47+
"platform": "apple",
48+
"version": 2,
49+
"reg_push": 1,
50+
"preview": 1,
51+
"pkey": base64.RawURLEncoding.EncodeToString(apc.MsgIDEncKey),
52+
"background_location": 1, // or 0
53+
"call": "Opening.m4r",
54+
"default": "note.m4r",
55+
"groups": "note.m4r",
56+
"lg": "en",
57+
"lc": "US",
58+
"nse_call": 0,
59+
"nse_ver": 2,
60+
"nse_read": 0,
61+
"voip_payload_type": 2,
62+
}
63+
if apc.VoIPToken != "" {
64+
attrs["voip"] = apc.VoIPToken
5765
}
66+
return attrs
5867
}
5968

6069
type WebPushConfig struct {

0 commit comments

Comments
 (0)