Commit Graph

55 Commits (1822089db65677c9b7cc418bae66b5b5afcee31d)

Author SHA1 Message Date
remicorniere 1822089db6 Tests for Component and code style fixes (#129)
* Tests for Component and code style fixes
5 years ago
Mickael Remond 6aa1e668ee
Fix issues after refactor
Relates to #126
5 years ago
Wichert Akkerman a0e74051fd Use a channel based API for SendIQ
This makes sending IQ more idiomatic Go, but more importantly it solves
a problem with contexts that were not being cancelled correctly with
the previous API.

As a side-effect of this change `Route.route` must now be invoked in a
go-routine to prevent deadlocks. This also allows for stanzas to be processed
in parallel, which can result in a nice performance win.
5 years ago
Wichert Akkerman 83bc8581fd Cleanup the IQ result route API
Simplify the API in several ways:

- provide the context to the IQ result handler, making it possible to pass in
  extra context and handle timeouts within the handler.
- pass the stanza in as an IQ type, removing the need to always type-cast it
  in the handler
- remove Router.HandleIqResult and Router.HandleFuncIqResult. Since the router
  is private to Client nobody would ever use these, and they do not really make
  things simpler anyway.
5 years ago
Wichert Akkerman 8088e3fa7e Add Client.SendIQ method 5 years ago
Wichert Akkerman 33446ad0ba Create a new stream after StartTLS 5 years ago
Wichert Akkerman 60e2cdd088 Close the transport if NewSession fails
The makes sure we always send the `</stream:stream>` or `<close/>` correctly.
5 years ago
Wichert Akkerman 92329b48e6 Transports need to handle open/close stanzas
XMPP and WebSocket transports require different open and close stanzas. To
handle this the responsibility handling those and creating the XML decoder is
moved to the Transport.
5 years ago
Wichert Akkerman 36e153f981 Allow transports to define their own ping mechanism 5 years ago
Wichert Akkerman 8fb3e33a1f Only do ensurePort for XMPP transport
If we always do this the address gets mangled, breaking the transport
selection.
5 years ago
Wichert Akkerman 06a76160c8 Use transport factory function 5 years ago
Wichert Akkerman 7fa4b06705 Move address into transport config
This makes it possible to use a factory function to create a transport of the right type and not having to repeat the address when calling Transport.Connect()
5 years ago
Wichert Akkerman e97d290e2b Use Transport in Component 5 years ago
Wichert Akkerman 96fccbd399 Split out TransportConfiguration
This allows using the same transport configuration from both clients and components.
5 years ago
Wichert Akkerman a3c62e515e Introduce Transport interface 5 years ago
Mickael Remond 9c8353d081 Introduce Credential structure to define auth type
For now we are planning to support Password and OAuthToken.
In the future, we would like to add certificate-based authentication.
5 years ago
Mickael Remond 005c8823d9 Fixes issue with unescaped character %
Fixes #113
5 years ago
Mickael Remond 8794ea6ed8
Check if we have a connection open before trying to close it
Fixes #22
5 years ago
Mickael Remond 80d2e0fa1e Remove debug print-out 5 years ago
Mickael Remond 2e864ff7f6 Clean-up: remove test/debug code 5 years ago
Mickael Remond 3de99e0e0e Add initial support for stream management
For now it support enabling SM, replying to ack requests from server,
and trying resuming the session with existing Stream Management state.
5 years ago
Mickael Remond c41d068c9f
Improve comments 5 years ago
Mickael Remond 7deaf59642
Quickfix for build error
See #94
5 years ago
genofire fe6cea870d use highest DNS-SRV entry for client connection 5 years ago
Mickael Remond 5992cc2231 Fix XMPP logger consistency
- Rename socketProxy to StreamLogger
- Ensure client send traffic through the logger
5 years ago
Mickael Remond 428787d7ab
Refactor and move parsing and stanza to a separate package 5 years ago
Mickael Remond 445bb8efa3
Fix crash on send when disconnected
Fixes #74
5 years ago
Mickael Remond 1c792e61c6 Adding tests and always use brackets in IPV6 addresses
Code also ensures that brackets are properly added when encoding an IPV6 address.
5 years ago
genofire fde524ef98 fix connection to ipv6 address + use fallback to jid domain 5 years ago
Mickael Remond d6d371df4d Do not export Router.route as it is not supposed to be called directly 5 years ago
genofire d9fdff0839 Add constants (enumlike) for stanza types and simplify packet creation (#62)
* Add constants (enumlike) for stanza types
* NewIQ, NewMessage and NewPresence are now initialized with the Attrs struct
* Update examples
* Do not export backoff code. For now, we do not need to expose backoff in the documentation
* Make presence priority an int8
5 years ago
Mickael Remond 4d015e5b29
With go modules, we should be able to remove import comments 5 years ago
Mickael Remond 45c7ca74b1 Make client use the new Router 5 years ago
Mickaël Rémond 4d4710463d
Add basic support for keep-alive (#48)
Fix #35 

This should also help with #8
5 years ago
Mickael Remond 411619c2ef
Make channel type more specific (Packet instead of interface{})
Thanks to Genofire for spotting this
5 years ago
Mickael Remond 909cf753c9 Fix missing default channel creation 5 years ago
Mickael Remond 736a60cd1b Use StreamClient interface in StreamManager 5 years ago
Mickael Remond 021f6d3740 Refactor ClientManager into a more generic StreamManager 5 years ago
Mickael Remond b7461ae97f
Do not reconnect on "connection replaced" stream errors
Fix #45
5 years ago
Mickael Remond 2d8d4516fd
Handling basic unrecoverable errors
Fix #43
5 years ago
Mickael Remond d45dd6a44a
Returned client will be nil if parameter are incorrect 5 years ago
Mickaël Rémond 2f391fde80
Add Client Manager to monitor connection state and trigger reconnect (#39)
- Support for exponential backoff on reconnect to be gentle on the server.
- Clean up client by moving metrics and retry strategy to the connection manager.
- Update echo_client to use client manager
- Fix echo client XMPP message matching

Fixes #21
Improvements for #8
5 years ago
Mickaël Rémond 91a7cc9c64
Merge pull request #16 from TheoMcGinley/infinite-retries-fix
Fixed infinite retries for failed TCP dial
5 years ago
Theo McGinley 48bc14b3e0 Closed receiver chan on error 5 years ago
Theo McGinley adf2c13a8c Fixed infinite retries for failed TCP dial 5 years ago
Mickael Remond 5eae7f4ef7
Move project to gosrc.io/xmpp
The URL will be more permanent as this is a place we dedicate as short URL for our go projects.
6 years ago
Mickael Remond 95585866c2
Add timing metrics in client.
This can be used to monitor/troubleshoot server performance.
6 years ago
Mickael Remond fa5590e921
Rename Options to Config 6 years ago
Mickael Remond 1c3aaad174
Minor: comment reformat. 6 years ago
Mickael Remond d6bedfb033
Minor cleanup 6 years ago