8
8
9
9
"google.golang.org/protobuf/proto"
10
10
11
- waProto "go.mau.fi/whatsmeow/binary/proto"
11
+ "go.mau.fi/whatsmeow/proto/waCommon"
12
+ "go.mau.fi/whatsmeow/proto/waServerSync"
13
+ "go.mau.fi/whatsmeow/proto/waSyncAction"
12
14
"go.mau.fi/whatsmeow/types"
13
15
"go.mau.fi/whatsmeow/util/cbcutil"
14
16
)
@@ -20,7 +22,7 @@ type MutationInfo struct {
20
22
// Version is a static number that depends on the thing being mutated.
21
23
Version int32
22
24
// Value contains the data for the mutation.
23
- Value * waProto .SyncActionValue
25
+ Value * waSyncAction .SyncActionValue
24
26
}
25
27
26
28
// PatchInfo contains information about a patch to the app state.
@@ -48,8 +50,8 @@ func BuildMute(target types.JID, mute bool, muteDuration time.Duration) PatchInf
48
50
Mutations : []MutationInfo {{
49
51
Index : []string {IndexMute , target .String ()},
50
52
Version : 2 ,
51
- Value : & waProto .SyncActionValue {
52
- MuteAction : & waProto .MuteAction {
53
+ Value : & waSyncAction .SyncActionValue {
54
+ MuteAction : & waSyncAction .MuteAction {
53
55
Muted : proto .Bool (mute ),
54
56
MuteEndTimestamp : muteEndTimestamp ,
55
57
},
@@ -62,8 +64,8 @@ func newPinMutationInfo(target types.JID, pin bool) MutationInfo {
62
64
return MutationInfo {
63
65
Index : []string {IndexPin , target .String ()},
64
66
Version : 5 ,
65
- Value : & waProto .SyncActionValue {
66
- PinAction : & waProto .PinAction {
67
+ Value : & waSyncAction .SyncActionValue {
68
+ PinAction : & waSyncAction .PinAction {
67
69
Pinned : & pin ,
68
70
},
69
71
},
@@ -85,17 +87,17 @@ func BuildPin(target types.JID, pin bool) PatchInfo {
85
87
// The last message timestamp and last message key are optional and can be set to zero values (`time.Time{}` and `nil`).
86
88
//
87
89
// Archiving a chat will also unpin it automatically.
88
- func BuildArchive (target types.JID , archive bool , lastMessageTimestamp time.Time , lastMessageKey * waProto .MessageKey ) PatchInfo {
90
+ func BuildArchive (target types.JID , archive bool , lastMessageTimestamp time.Time , lastMessageKey * waCommon .MessageKey ) PatchInfo {
89
91
if lastMessageTimestamp .IsZero () {
90
92
lastMessageTimestamp = time .Now ()
91
93
}
92
94
archiveMutationInfo := MutationInfo {
93
95
Index : []string {IndexArchive , target .String ()},
94
96
Version : 3 ,
95
- Value : & waProto .SyncActionValue {
96
- ArchiveChatAction : & waProto .ArchiveChatAction {
97
+ Value : & waSyncAction .SyncActionValue {
98
+ ArchiveChatAction : & waSyncAction .ArchiveChatAction {
97
99
Archived : & archive ,
98
- MessageRange : & waProto .SyncActionMessageRange {
100
+ MessageRange : & waSyncAction .SyncActionMessageRange {
99
101
LastMessageTimestamp : proto .Int64 (lastMessageTimestamp .Unix ()),
100
102
// TODO set LastSystemMessageTimestamp?
101
103
},
@@ -104,7 +106,7 @@ func BuildArchive(target types.JID, archive bool, lastMessageTimestamp time.Time
104
106
}
105
107
106
108
if lastMessageKey != nil {
107
- archiveMutationInfo .Value .ArchiveChatAction .MessageRange .Messages = []* waProto .SyncActionMessage {{
109
+ archiveMutationInfo .Value .ArchiveChatAction .MessageRange .Messages = []* waSyncAction .SyncActionMessage {{
108
110
Key : lastMessageKey ,
109
111
Timestamp : proto .Int64 (lastMessageTimestamp .Unix ()),
110
112
}}
@@ -127,8 +129,8 @@ func newLabelChatMutation(target types.JID, labelID string, labeled bool) Mutati
127
129
return MutationInfo {
128
130
Index : []string {IndexLabelAssociationChat , labelID , target .String ()},
129
131
Version : 3 ,
130
- Value : & waProto .SyncActionValue {
131
- LabelAssociationAction : & waProto .LabelAssociationAction {
132
+ Value : & waSyncAction .SyncActionValue {
133
+ LabelAssociationAction : & waSyncAction .LabelAssociationAction {
132
134
Labeled : & labeled ,
133
135
},
134
136
},
@@ -149,8 +151,8 @@ func newLabelMessageMutation(target types.JID, labelID, messageID string, labele
149
151
return MutationInfo {
150
152
Index : []string {IndexLabelAssociationMessage , labelID , target .String (), messageID , "0" , "0" },
151
153
Version : 3 ,
152
- Value : & waProto .SyncActionValue {
153
- LabelAssociationAction : & waProto .LabelAssociationAction {
154
+ Value : & waSyncAction .SyncActionValue {
155
+ LabelAssociationAction : & waSyncAction .LabelAssociationAction {
154
156
Labeled : & labeled ,
155
157
},
156
158
},
@@ -171,8 +173,8 @@ func newLabelEditMutation(labelID string, labelName string, labelColor int32, de
171
173
return MutationInfo {
172
174
Index : []string {IndexLabelEdit , labelID },
173
175
Version : 3 ,
174
- Value : & waProto .SyncActionValue {
175
- LabelEditAction : & waProto .LabelEditAction {
176
+ Value : & waSyncAction .SyncActionValue {
177
+ LabelEditAction : & waSyncAction .LabelEditAction {
176
178
Name : & labelName ,
177
179
Color : & labelColor ,
178
180
Deleted : & deleted ,
@@ -195,8 +197,8 @@ func newSettingPushNameMutation(pushName string) MutationInfo {
195
197
return MutationInfo {
196
198
Index : []string {IndexSettingPushName },
197
199
Version : 1 ,
198
- Value : & waProto .SyncActionValue {
199
- PushNameSetting : & waProto .PushNameSetting {
200
+ Value : & waSyncAction .SyncActionValue {
201
+ PushNameSetting : & waSyncAction .PushNameSetting {
200
202
Name : & pushName ,
201
203
},
202
204
},
@@ -217,8 +219,8 @@ func newStarMutation(targetJID, senderJID string, messageID types.MessageID, fro
217
219
return MutationInfo {
218
220
Index : []string {IndexStar , targetJID , messageID , fromMe , senderJID },
219
221
Version : 2 ,
220
- Value : & waProto .SyncActionValue {
221
- StarAction : & waProto .StarAction {
222
+ Value : & waSyncAction .SyncActionValue {
223
+ StarAction : & waSyncAction .StarAction {
222
224
Starred : & starred ,
223
225
},
224
226
},
@@ -253,7 +255,7 @@ func (proc *Processor) EncodePatch(keyID []byte, state HashState, patchInfo Patc
253
255
patchInfo .Timestamp = time .Now ()
254
256
}
255
257
256
- mutations := make ([]* waProto .SyncdMutation , 0 , len (patchInfo .Mutations ))
258
+ mutations := make ([]* waServerSync .SyncdMutation , 0 , len (patchInfo .Mutations ))
257
259
for _ , mutationInfo := range patchInfo .Mutations {
258
260
mutationInfo .Value .Timestamp = proto .Int64 (patchInfo .Timestamp .UnixMilli ())
259
261
@@ -262,7 +264,7 @@ func (proc *Processor) EncodePatch(keyID []byte, state HashState, patchInfo Patc
262
264
return nil , fmt .Errorf ("failed to marshal mutation index: %w" , err )
263
265
}
264
266
265
- pbObj := & waProto .SyncActionData {
267
+ pbObj := & waSyncAction .SyncActionData {
266
268
Index : indexBytes ,
267
269
Value : mutationInfo .Value ,
268
270
Padding : []byte {},
@@ -279,15 +281,15 @@ func (proc *Processor) EncodePatch(keyID []byte, state HashState, patchInfo Patc
279
281
return nil , fmt .Errorf ("failed to encrypt mutation: %w" , err )
280
282
}
281
283
282
- valueMac := generateContentMAC (waProto .SyncdMutation_SET , encryptedContent , keyID , keys .ValueMAC )
284
+ valueMac := generateContentMAC (waServerSync .SyncdMutation_SET , encryptedContent , keyID , keys .ValueMAC )
283
285
indexMac := concatAndHMAC (sha256 .New , keys .Index , indexBytes )
284
286
285
- mutations = append (mutations , & waProto .SyncdMutation {
286
- Operation : waProto .SyncdMutation_SET .Enum (),
287
- Record : & waProto .SyncdRecord {
288
- Index : & waProto .SyncdIndex {Blob : indexMac },
289
- Value : & waProto .SyncdValue {Blob : append (encryptedContent , valueMac ... )},
290
- KeyID : & waProto .KeyId {ID : keyID },
287
+ mutations = append (mutations , & waServerSync .SyncdMutation {
288
+ Operation : waServerSync .SyncdMutation_SET .Enum (),
289
+ Record : & waServerSync .SyncdRecord {
290
+ Index : & waServerSync .SyncdIndex {Blob : indexMac },
291
+ Value : & waServerSync .SyncdValue {Blob : append (encryptedContent , valueMac ... )},
292
+ KeyID : & waServerSync .KeyId {ID : keyID },
291
293
},
292
294
})
293
295
}
@@ -304,9 +306,9 @@ func (proc *Processor) EncodePatch(keyID []byte, state HashState, patchInfo Patc
304
306
305
307
state .Version += 1
306
308
307
- syncdPatch := & waProto .SyncdPatch {
309
+ syncdPatch := & waServerSync .SyncdPatch {
308
310
SnapshotMAC : state .generateSnapshotMAC (patchInfo .Type , keys .SnapshotMAC ),
309
- KeyID : & waProto .KeyId {ID : keyID },
311
+ KeyID : & waServerSync .KeyId {ID : keyID },
310
312
Mutations : mutations ,
311
313
}
312
314
syncdPatch .PatchMAC = generatePatchMAC (syncdPatch , patchInfo .Type , keys .PatchMAC , state .Version )
0 commit comments