File tree 1 file changed +29
-20
lines changed
1 file changed +29
-20
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,8 @@ import (
10
10
"context"
11
11
"encoding/base64"
12
12
13
+ "go.mau.fi/util/random"
14
+
13
15
waBinary "go.mau.fi/whatsmeow/binary"
14
16
"go.mau.fi/whatsmeow/types"
15
17
)
@@ -31,30 +33,37 @@ func (fpc *FCMPushConfig) GetPushConfigAttrs() waBinary.Attrs {
31
33
}
32
34
33
35
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"`
35
39
}
36
40
37
41
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
57
65
}
66
+ return attrs
58
67
}
59
68
60
69
type WebPushConfig struct {
You can’t perform that action at this time.
0 commit comments