-
-
Notifications
You must be signed in to change notification settings - Fork 518
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
base: main
Are you sure you want to change the base?
Conversation
That is awesome! It could probably prevent some bans |
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.
looks pretty good to me
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.
Idk how for others, but I'd expect method RemoveContact
to actually "remove the contact".
For consistency with other methods, we could apply the changes, so the function name makes sense, because it actually "builds remove contact" data - so BuildRemoveContact
The same for BuildAddContact
Or even
BuildAddContactPatch
BuildRemoveContactPatch
a bit wordy, but show what the methods actually do
@@ -60,6 +63,37 @@ func BuildMute(target types.JID, mute bool, muteDuration time.Duration) PatchInf | |||
} | |||
} | |||
|
|||
func BuildContact(target types.JID, fullName string) PatchInfo { |
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.
func BuildContact(target types.JID, fullName string) PatchInfo { | |
func BuildAddContact(target types.JID, fullName string) PatchInfo { |
OR
func BuildContact(target types.JID, fullName string) PatchInfo { | |
func BuildAddContactPatch(target types.JID, fullName string) PatchInfo { |
} | ||
} | ||
|
||
func RemoveContact(target types.JID) PatchInfo { |
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.
func RemoveContact(target types.JID) PatchInfo { | |
func BuildRemoveContact(target types.JID) PatchInfo { |
OR
func RemoveContact(target types.JID) PatchInfo { | |
func BuildRemoveContactPatch(target types.JID) PatchInfo { |
nice to have and i am abit lost when something with contacts management, LGTM |
This functionality does not work on all WhatsApp mobile apps. I suggest testing using a WhatsApp desktop client as the contact changes are reflected there.
Example Usage