-
-
Notifications
You must be signed in to change notification settings - Fork 520
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add BuildContact and CRUD functionality for contacts #749
Open
fourjr
wants to merge
4
commits into
tulir:main
Choose a base branch
from
fourjr:contact-crud
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
7e804f1
Add BuildContact and CRUD functionality for contacts
fourjr fe33c47
Fix bug where contact remove events were being ignored
fourjr 3637734
Change syntax to RemoveContact
fourjr c05ea7b
Fix a race condition where mutation.Action is nil and causes a panic …
fourjr File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change | ||||||||
---|---|---|---|---|---|---|---|---|---|---|
|
@@ -32,6 +32,8 @@ type PatchInfo struct { | |||||||||
Timestamp time.Time | ||||||||||
// Type is the app state type being mutated. | ||||||||||
Type WAPatchName | ||||||||||
// Operation is SET / REMOVE | ||||||||||
Operation waServerSync.SyncdMutation_SyncdOperation | ||||||||||
// Mutations contains the individual mutations to apply to the app state in this patch. | ||||||||||
Mutations []MutationInfo | ||||||||||
} | ||||||||||
|
@@ -46,7 +48,8 @@ func BuildMute(target types.JID, mute bool, muteDuration time.Duration) PatchInf | |||||||||
} | ||||||||||
|
||||||||||
return PatchInfo{ | ||||||||||
Type: WAPatchRegularHigh, | ||||||||||
Type: WAPatchRegularHigh, | ||||||||||
Operation: waServerSync.SyncdMutation_SET, | ||||||||||
Mutations: []MutationInfo{{ | ||||||||||
Index: []string{IndexMute, target.String()}, | ||||||||||
Version: 2, | ||||||||||
|
@@ -60,6 +63,37 @@ func BuildMute(target types.JID, mute bool, muteDuration time.Duration) PatchInf | |||||||||
} | ||||||||||
} | ||||||||||
|
||||||||||
func BuildContact(target types.JID, fullName string) PatchInfo { | ||||||||||
return PatchInfo{ | ||||||||||
Type: WAPatchCriticalUnblockLow, | ||||||||||
Operation: waServerSync.SyncdMutation_SET, | ||||||||||
Mutations: []MutationInfo{{ | ||||||||||
Index: []string{IndexContact, target.String()}, | ||||||||||
Version: 2, | ||||||||||
Value: &waSyncAction.SyncActionValue{ | ||||||||||
ContactAction: &waSyncAction.ContactAction{ | ||||||||||
FullName: &fullName, | ||||||||||
SaveOnPrimaryAddressbook: proto.Bool(true), | ||||||||||
}, | ||||||||||
}, | ||||||||||
}}, | ||||||||||
} | ||||||||||
} | ||||||||||
|
||||||||||
func RemoveContact(target types.JID) PatchInfo { | ||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
OR
Suggested change
|
||||||||||
return PatchInfo{ | ||||||||||
Type: WAPatchCriticalUnblockLow, | ||||||||||
Operation: waServerSync.SyncdMutation_REMOVE, | ||||||||||
Mutations: []MutationInfo{{ | ||||||||||
Index: []string{IndexContact, target.String()}, | ||||||||||
Version: 2, | ||||||||||
Value: &waSyncAction.SyncActionValue{ | ||||||||||
ContactAction: &waSyncAction.ContactAction{}, | ||||||||||
}, | ||||||||||
}}, | ||||||||||
} | ||||||||||
} | ||||||||||
|
||||||||||
func newPinMutationInfo(target types.JID, pin bool) MutationInfo { | ||||||||||
return MutationInfo{ | ||||||||||
Index: []string{IndexPin, target.String()}, | ||||||||||
|
@@ -75,7 +109,8 @@ func newPinMutationInfo(target types.JID, pin bool) MutationInfo { | |||||||||
// BuildPin builds an app state patch for pinning or unpinning a chat. | ||||||||||
func BuildPin(target types.JID, pin bool) PatchInfo { | ||||||||||
return PatchInfo{ | ||||||||||
Type: WAPatchRegularLow, | ||||||||||
Type: WAPatchRegularLow, | ||||||||||
Operation: waServerSync.SyncdMutation_SET, | ||||||||||
Mutations: []MutationInfo{ | ||||||||||
newPinMutationInfo(target, pin), | ||||||||||
}, | ||||||||||
|
@@ -119,6 +154,7 @@ func BuildArchive(target types.JID, archive bool, lastMessageTimestamp time.Time | |||||||||
|
||||||||||
result := PatchInfo{ | ||||||||||
Type: WAPatchRegularLow, | ||||||||||
Operation: waServerSync.SyncdMutation_SET, | ||||||||||
Mutations: mutations, | ||||||||||
} | ||||||||||
|
||||||||||
|
@@ -140,7 +176,8 @@ func newLabelChatMutation(target types.JID, labelID string, labeled bool) Mutati | |||||||||
// BuildLabelChat builds an app state patch for labeling or un(labeling) a chat. | ||||||||||
func BuildLabelChat(target types.JID, labelID string, labeled bool) PatchInfo { | ||||||||||
return PatchInfo{ | ||||||||||
Type: WAPatchRegular, | ||||||||||
Type: WAPatchRegular, | ||||||||||
Operation: waServerSync.SyncdMutation_SET, | ||||||||||
Mutations: []MutationInfo{ | ||||||||||
newLabelChatMutation(target, labelID, labeled), | ||||||||||
}, | ||||||||||
|
@@ -162,7 +199,8 @@ func newLabelMessageMutation(target types.JID, labelID, messageID string, labele | |||||||||
// BuildLabelMessage builds an app state patch for labeling or un(labeling) a message. | ||||||||||
func BuildLabelMessage(target types.JID, labelID, messageID string, labeled bool) PatchInfo { | ||||||||||
return PatchInfo{ | ||||||||||
Type: WAPatchRegular, | ||||||||||
Type: WAPatchRegular, | ||||||||||
Operation: waServerSync.SyncdMutation_SET, | ||||||||||
Mutations: []MutationInfo{ | ||||||||||
newLabelMessageMutation(target, labelID, messageID, labeled), | ||||||||||
}, | ||||||||||
|
@@ -186,7 +224,8 @@ func newLabelEditMutation(labelID string, labelName string, labelColor int32, de | |||||||||
// BuildLabelEdit builds an app state patch for editing a label. | ||||||||||
func BuildLabelEdit(labelID string, labelName string, labelColor int32, deleted bool) PatchInfo { | ||||||||||
return PatchInfo{ | ||||||||||
Type: WAPatchRegular, | ||||||||||
Type: WAPatchRegular, | ||||||||||
Operation: waServerSync.SyncdMutation_SET, | ||||||||||
Mutations: []MutationInfo{ | ||||||||||
newLabelEditMutation(labelID, labelName, labelColor, deleted), | ||||||||||
}, | ||||||||||
|
@@ -208,7 +247,8 @@ func newSettingPushNameMutation(pushName string) MutationInfo { | |||||||||
// BuildSettingPushName builds an app state patch for setting the push name. | ||||||||||
func BuildSettingPushName(pushName string) PatchInfo { | ||||||||||
return PatchInfo{ | ||||||||||
Type: WAPatchCriticalBlock, | ||||||||||
Type: WAPatchCriticalBlock, | ||||||||||
Operation: waServerSync.SyncdMutation_SET, | ||||||||||
Mutations: []MutationInfo{ | ||||||||||
newSettingPushNameMutation(pushName), | ||||||||||
}, | ||||||||||
|
@@ -238,7 +278,8 @@ func BuildStar(target, sender types.JID, messageID types.MessageID, fromMe, star | |||||||||
senderJID = "0" | ||||||||||
} | ||||||||||
return PatchInfo{ | ||||||||||
Type: WAPatchRegularHigh, | ||||||||||
Type: WAPatchRegularHigh, | ||||||||||
Operation: waServerSync.SyncdMutation_SET, | ||||||||||
Mutations: []MutationInfo{ | ||||||||||
newStarMutation(targetJID, senderJID, messageID, isFromMe, starred), | ||||||||||
}, | ||||||||||
|
@@ -281,11 +322,11 @@ func (proc *Processor) EncodePatch(keyID []byte, state HashState, patchInfo Patc | |||||||||
return nil, fmt.Errorf("failed to encrypt mutation: %w", err) | ||||||||||
} | ||||||||||
|
||||||||||
valueMac := generateContentMAC(waServerSync.SyncdMutation_SET, encryptedContent, keyID, keys.ValueMAC) | ||||||||||
valueMac := generateContentMAC(patchInfo.Operation, encryptedContent, keyID, keys.ValueMAC) | ||||||||||
indexMac := concatAndHMAC(sha256.New, keys.Index, indexBytes) | ||||||||||
|
||||||||||
mutations = append(mutations, &waServerSync.SyncdMutation{ | ||||||||||
Operation: waServerSync.SyncdMutation_SET.Enum(), | ||||||||||
Operation: patchInfo.Operation.Enum(), | ||||||||||
Record: &waServerSync.SyncdRecord{ | ||||||||||
Index: &waServerSync.SyncdIndex{Blob: indexMac}, | ||||||||||
Value: &waServerSync.SyncdValue{Blob: append(encryptedContent, valueMac...)}, | ||||||||||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
OR