Skip to content
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 event and prekey function #777

Closed
wants to merge 0 commits into from
Closed

Conversation

CharlesWone
Copy link

prekeys: query the last time the public key was uploaded
prekeys: publicize the FetchPreKeys function
events: add keep alive success event
events: logout event adds current jid

@@ -39,7 +39,7 @@ func (cli *Client) handleStreamError(node *waBinary.Node) {
case code == "401" && conflictType == "device_removed":
cli.expectDisconnect()
cli.Log.Infof("Got device removed stream error, sending LoggedOut event and deleting session")
go cli.dispatchEvent(&events.LoggedOut{OnConnect: false, Reason: events.ConnectFailureLoggedOut})
go cli.dispatchEvent(&events.LoggedOut{Jid: cli.Store.ID, OnConnect: false, Reason: events.ConnectFailureLoggedOut})
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These are unnecessary and won't be added, the user is expected to remember which client an event came from

keepalive.go Outdated
go cli.dispatchEvent(&events.KeepAliveSuccess{
Jid: cli.Store.ID,
LastSuccess: lastSuccess,
})
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What's the point of this? There are already events for keepalive failing and restoring

prekeys.go Outdated
return cli.fetchPreKeys(ctx, users)
}

func (cli *Client) FetchPreKeyTimes(ctx context.Context, users []types.JID) (map[types.JID]int64, error) {
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

And what's the point of this? The library handles prekeys internally, users don't need to care about them

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants