2019-06-18 14:28:30 +00:00
|
|
|
package xmpp
|
2016-01-06 15:51:12 +00:00
|
|
|
|
|
|
|
import (
|
2019-10-29 09:49:01 +00:00
|
|
|
"context"
|
2016-01-06 15:51:12 +00:00
|
|
|
"encoding/xml"
|
|
|
|
"errors"
|
2019-09-27 14:30:12 +00:00
|
|
|
"io"
|
2016-01-06 15:51:12 +00:00
|
|
|
"net"
|
2016-02-17 12:45:39 +00:00
|
|
|
"time"
|
2019-06-26 15:14:52 +00:00
|
|
|
|
|
|
|
"gosrc.io/xmpp/stanza"
|
2016-01-06 15:51:12 +00:00
|
|
|
)
|
|
|
|
|
2019-06-06 09:58:50 +00:00
|
|
|
//=============================================================================
|
2019-06-08 16:09:22 +00:00
|
|
|
// EventManager
|
2018-09-26 15:26:14 +00:00
|
|
|
|
2019-06-06 09:58:50 +00:00
|
|
|
// ConnState represents the current connection state.
|
|
|
|
type ConnState = uint8
|
2018-09-26 15:26:14 +00:00
|
|
|
|
2019-06-06 09:58:50 +00:00
|
|
|
// This is a the list of events happening on the connection that the
|
|
|
|
// client can be notified about.
|
|
|
|
const (
|
|
|
|
StateDisconnected ConnState = iota
|
|
|
|
StateConnected
|
|
|
|
StateSessionEstablished
|
2019-06-08 09:15:51 +00:00
|
|
|
StateStreamError
|
2019-11-08 11:07:55 +00:00
|
|
|
StatePermanentError
|
2019-06-06 09:58:50 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// Event is a structure use to convey event changes related to client state. This
|
|
|
|
// is for example used to notify the client when the client get disconnected.
|
|
|
|
type Event struct {
|
|
|
|
State ConnState
|
|
|
|
Description string
|
2019-06-08 09:15:51 +00:00
|
|
|
StreamError string
|
2019-07-31 16:47:30 +00:00
|
|
|
SMState SMState
|
|
|
|
}
|
|
|
|
|
|
|
|
// SMState holds Stream Management information regarding the session that can be
|
|
|
|
// used to resume session after disconnect
|
|
|
|
type SMState struct {
|
|
|
|
// Stream Management ID
|
|
|
|
Id string
|
|
|
|
// Inbound stanza count
|
|
|
|
Inbound uint
|
|
|
|
// TODO Store location for IP affinity
|
|
|
|
// TODO Store max and timestamp, to check if we should retry resumption or not
|
2018-09-26 15:26:14 +00:00
|
|
|
}
|
|
|
|
|
2019-06-06 09:58:50 +00:00
|
|
|
// EventHandler is use to pass events about state of the connection to
|
|
|
|
// client implementation.
|
2019-11-28 16:15:15 +00:00
|
|
|
type EventHandler func(Event) error
|
2019-06-06 09:58:50 +00:00
|
|
|
|
|
|
|
type EventManager struct {
|
|
|
|
// Store current state
|
|
|
|
CurrentState ConnState
|
|
|
|
|
|
|
|
// Callback used to propagate connection state changes
|
|
|
|
Handler EventHandler
|
2018-09-26 15:26:14 +00:00
|
|
|
}
|
|
|
|
|
2019-12-09 11:30:37 +00:00
|
|
|
func (em *EventManager) updateState(state ConnState) {
|
2019-06-06 09:58:50 +00:00
|
|
|
em.CurrentState = state
|
|
|
|
if em.Handler != nil {
|
|
|
|
em.Handler(Event{State: em.CurrentState})
|
|
|
|
}
|
2018-09-26 15:26:14 +00:00
|
|
|
}
|
|
|
|
|
2019-12-09 11:30:37 +00:00
|
|
|
func (em *EventManager) disconnected(state SMState) {
|
2019-07-31 16:47:30 +00:00
|
|
|
em.CurrentState = StateDisconnected
|
|
|
|
if em.Handler != nil {
|
|
|
|
em.Handler(Event{State: em.CurrentState, SMState: state})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-09 11:30:37 +00:00
|
|
|
func (em *EventManager) streamError(error, desc string) {
|
2019-06-08 09:15:51 +00:00
|
|
|
em.CurrentState = StateStreamError
|
|
|
|
if em.Handler != nil {
|
|
|
|
em.Handler(Event{State: em.CurrentState, StreamError: error, Description: desc})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-26 15:26:14 +00:00
|
|
|
// Client
|
|
|
|
// ============================================================================
|
|
|
|
|
2019-10-29 09:49:01 +00:00
|
|
|
var ErrCanOnlySendGetOrSetIq = errors.New("SendIQ can only send get and set IQ stanzas")
|
|
|
|
|
2018-02-13 21:07:15 +00:00
|
|
|
// Client is the main structure used to connect as a client on an XMPP
|
2016-02-15 10:05:44 +00:00
|
|
|
// server.
|
2016-01-06 15:51:12 +00:00
|
|
|
type Client struct {
|
2019-06-06 09:58:50 +00:00
|
|
|
// Store user defined options and states
|
2018-09-26 14:25:04 +00:00
|
|
|
config Config
|
2016-01-06 15:51:12 +00:00
|
|
|
// Session gather data that can be accessed by users of this library
|
2019-10-11 04:24:27 +00:00
|
|
|
Session *Session
|
2019-10-06 17:37:56 +00:00
|
|
|
transport Transport
|
2019-06-18 10:34:25 +00:00
|
|
|
// Router is used to dispatch packets
|
|
|
|
router *Router
|
2019-06-06 09:58:50 +00:00
|
|
|
// Track and broadcast connection state
|
|
|
|
EventManager
|
2019-12-05 17:12:00 +00:00
|
|
|
// Handle errors from client execution
|
|
|
|
ErrorHandler func(error)
|
2016-01-06 15:51:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Setting up the client / Checking the parameters
|
|
|
|
*/
|
|
|
|
|
2018-09-26 14:25:04 +00:00
|
|
|
// NewClient generates a new XMPP client, based on Config passed as parameters.
|
2018-09-23 16:43:46 +00:00
|
|
|
// If host is not specified, the DNS SRV should be used to find the host from the domainpart of the JID.
|
2016-02-13 16:01:06 +00:00
|
|
|
// Default the port to 5222.
|
2019-12-05 17:12:00 +00:00
|
|
|
func NewClient(config Config, r *Router, errorHandler func(error)) (c *Client, err error) {
|
2019-12-04 21:17:58 +00:00
|
|
|
if config.KeepaliveInterval == 0 {
|
|
|
|
config.KeepaliveInterval = time.Second * 30
|
|
|
|
}
|
2019-06-26 07:04:03 +00:00
|
|
|
// Parse JID
|
|
|
|
if config.parsedJid, err = NewJid(config.Jid); err != nil {
|
|
|
|
err = errors.New("missing jid")
|
2019-06-07 13:23:23 +00:00
|
|
|
return nil, NewConnError(err, true)
|
2016-01-06 15:51:12 +00:00
|
|
|
}
|
2019-06-26 10:29:39 +00:00
|
|
|
|
2019-10-01 08:59:55 +00:00
|
|
|
if config.Credential.secret == "" {
|
|
|
|
err = errors.New("missing credential")
|
2019-06-07 13:23:23 +00:00
|
|
|
return nil, NewConnError(err, true)
|
2016-01-06 15:51:12 +00:00
|
|
|
}
|
2019-06-26 10:29:39 +00:00
|
|
|
|
2019-07-27 22:19:32 +00:00
|
|
|
// Fallback to jid domain
|
2019-06-26 07:04:03 +00:00
|
|
|
if config.Address == "" {
|
|
|
|
config.Address = config.parsedJid.Domain
|
2019-07-27 16:22:04 +00:00
|
|
|
|
2019-07-27 22:19:32 +00:00
|
|
|
// Fetch SRV DNS-Entries
|
2019-07-17 23:27:11 +00:00
|
|
|
_, srvEntries, err := net.LookupSRV("xmpp-client", "tcp", config.parsedJid.Domain)
|
2019-07-27 16:22:04 +00:00
|
|
|
|
2019-07-17 23:27:11 +00:00
|
|
|
if err == nil && len(srvEntries) > 0 {
|
2019-07-27 22:19:32 +00:00
|
|
|
// If we found matching DNS records, use the entry with highest weight
|
2019-07-17 23:27:11 +00:00
|
|
|
bestSrv := srvEntries[0]
|
|
|
|
for _, srv := range srvEntries {
|
|
|
|
if srv.Priority <= bestSrv.Priority && srv.Weight >= bestSrv.Weight {
|
|
|
|
bestSrv = srv
|
2019-07-27 16:22:04 +00:00
|
|
|
config.Address = ensurePort(srv.Target, int(srv.Port))
|
2019-07-17 23:27:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-06-26 07:04:03 +00:00
|
|
|
}
|
2019-06-07 10:16:58 +00:00
|
|
|
c = new(Client)
|
|
|
|
c.config = config
|
2019-06-18 10:34:25 +00:00
|
|
|
c.router = r
|
2019-12-05 17:12:00 +00:00
|
|
|
c.ErrorHandler = errorHandler
|
2019-06-07 10:16:58 +00:00
|
|
|
|
2018-09-26 14:25:04 +00:00
|
|
|
if c.config.ConnectTimeout == 0 {
|
|
|
|
c.config.ConnectTimeout = 15 // 15 second as default
|
2016-02-17 12:45:39 +00:00
|
|
|
}
|
2019-06-06 09:58:50 +00:00
|
|
|
|
2019-10-18 18:29:54 +00:00
|
|
|
if config.TransportConfiguration.Domain == "" {
|
|
|
|
config.TransportConfiguration.Domain = config.parsedJid.Domain
|
|
|
|
}
|
2019-10-25 13:22:01 +00:00
|
|
|
c.transport = NewClientTransport(config.TransportConfiguration)
|
2019-10-11 04:24:27 +00:00
|
|
|
|
2019-10-18 18:29:54 +00:00
|
|
|
if config.StreamLogger != nil {
|
|
|
|
c.transport.LogTraffic(config.StreamLogger)
|
|
|
|
}
|
|
|
|
|
2016-01-06 15:51:12 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-02-13 16:01:06 +00:00
|
|
|
// Connect triggers actual TCP connection, based on previously defined parameters.
|
2019-07-31 16:47:30 +00:00
|
|
|
// Connect simply triggers resumption, with an empty session state.
|
2019-06-08 16:09:22 +00:00
|
|
|
func (c *Client) Connect() error {
|
2019-07-31 16:47:30 +00:00
|
|
|
var state SMState
|
|
|
|
return c.Resume(state)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Resume attempts resuming a Stream Managed session, based on the provided stream management
|
|
|
|
// state.
|
|
|
|
func (c *Client) Resume(state SMState) error {
|
2016-01-06 15:51:12 +00:00
|
|
|
var err error
|
2016-02-17 12:45:39 +00:00
|
|
|
|
2019-10-18 18:29:54 +00:00
|
|
|
streamId, err := c.transport.Connect()
|
2016-02-17 12:45:39 +00:00
|
|
|
if err != nil {
|
2019-06-08 16:09:22 +00:00
|
|
|
return err
|
2016-01-06 15:51:12 +00:00
|
|
|
}
|
2019-06-06 09:58:50 +00:00
|
|
|
c.updateState(StateConnected)
|
2016-01-06 15:51:12 +00:00
|
|
|
|
2019-06-08 16:52:19 +00:00
|
|
|
// Client is ok, we now open XMPP session
|
2019-10-06 17:37:56 +00:00
|
|
|
if c.Session, err = NewSession(c.transport, c.config, state); err != nil {
|
2019-10-21 08:16:45 +00:00
|
|
|
c.transport.Close()
|
2019-06-08 16:09:22 +00:00
|
|
|
return err
|
2016-01-06 15:51:12 +00:00
|
|
|
}
|
2019-10-18 18:29:54 +00:00
|
|
|
c.Session.StreamId = streamId
|
2019-06-06 09:58:50 +00:00
|
|
|
c.updateState(StateSessionEstablished)
|
2016-01-06 15:51:12 +00:00
|
|
|
|
2019-07-31 16:47:30 +00:00
|
|
|
// Start the keepalive go routine
|
|
|
|
keepaliveQuit := make(chan struct{})
|
2019-12-04 21:17:58 +00:00
|
|
|
go keepalive(c.transport, c.config.KeepaliveInterval, keepaliveQuit)
|
2019-07-31 16:47:30 +00:00
|
|
|
// Start the receiver go routine
|
|
|
|
state = c.Session.SMState
|
2019-12-05 17:12:00 +00:00
|
|
|
go c.recv(state, keepaliveQuit)
|
2019-07-31 16:47:30 +00:00
|
|
|
|
2016-01-06 15:51:12 +00:00
|
|
|
// We're connected and can now receive and send messages.
|
|
|
|
//fmt.Fprintf(client.conn, "<presence xml:lang='en'><show>%s</show><status>%s</status></presence>", "chat", "Online")
|
2016-01-06 16:08:51 +00:00
|
|
|
// TODO: Do we always want to send initial presence automatically ?
|
|
|
|
// Do we need an option to avoid that or do we rely on client to send the presence itself ?
|
2019-12-09 12:31:01 +00:00
|
|
|
err = c.sendWithWriter(c.transport, []byte("<presence/>"))
|
2016-01-06 15:51:12 +00:00
|
|
|
|
2019-06-08 16:09:22 +00:00
|
|
|
return err
|
2016-01-06 15:51:12 +00:00
|
|
|
}
|
|
|
|
|
2019-06-06 09:58:50 +00:00
|
|
|
func (c *Client) Disconnect() {
|
|
|
|
// TODO: Add a way to wait for stream close acknowledgement from the server for clean disconnect
|
2019-10-11 04:24:47 +00:00
|
|
|
if c.transport != nil {
|
|
|
|
_ = c.transport.Close()
|
2019-09-06 08:28:49 +00:00
|
|
|
}
|
2019-06-06 09:58:50 +00:00
|
|
|
}
|
|
|
|
|
2019-06-08 16:09:22 +00:00
|
|
|
func (c *Client) SetHandler(handler EventHandler) {
|
|
|
|
c.Handler = handler
|
|
|
|
}
|
|
|
|
|
2019-06-11 13:29:08 +00:00
|
|
|
// Send marshals XMPP stanza and sends it to the server.
|
2019-06-26 15:14:52 +00:00
|
|
|
func (c *Client) Send(packet stanza.Packet) error {
|
2019-10-06 17:37:56 +00:00
|
|
|
conn := c.transport
|
2019-06-26 13:58:42 +00:00
|
|
|
if conn == nil {
|
|
|
|
return errors.New("client is not connected")
|
|
|
|
}
|
|
|
|
|
2018-01-26 08:55:39 +00:00
|
|
|
data, err := xml.Marshal(packet)
|
|
|
|
if err != nil {
|
|
|
|
return errors.New("cannot marshal packet " + err.Error())
|
|
|
|
}
|
|
|
|
|
2019-10-18 18:29:54 +00:00
|
|
|
return c.sendWithWriter(c.transport, data)
|
2018-01-26 08:55:39 +00:00
|
|
|
}
|
|
|
|
|
2019-10-29 09:49:01 +00:00
|
|
|
// SendIQ sends an IQ set or get stanza to the server. If a result is received
|
|
|
|
// the provided handler function will automatically be called.
|
|
|
|
//
|
|
|
|
// The provided context should have a timeout to prevent the client from waiting
|
|
|
|
// forever for an IQ result. For example:
|
|
|
|
//
|
|
|
|
// ctx, _ := context.WithTimeout(context.Background(), 30 * time.Second)
|
2019-10-29 10:37:49 +00:00
|
|
|
// result := <- client.SendIQ(ctx, iq)
|
2019-10-29 09:49:01 +00:00
|
|
|
//
|
2019-10-29 10:37:49 +00:00
|
|
|
func (c *Client) SendIQ(ctx context.Context, iq stanza.IQ) (chan stanza.IQ, error) {
|
2019-11-28 16:15:15 +00:00
|
|
|
if iq.Attrs.Type != stanza.IQTypeSet && iq.Attrs.Type != stanza.IQTypeGet {
|
2019-10-29 09:49:01 +00:00
|
|
|
return nil, ErrCanOnlySendGetOrSetIq
|
|
|
|
}
|
|
|
|
if err := c.Send(iq); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2019-10-29 10:37:49 +00:00
|
|
|
return c.router.NewIQResultRoute(ctx, iq.Attrs.Id), nil
|
2019-10-29 09:49:01 +00:00
|
|
|
}
|
|
|
|
|
2018-01-26 08:55:39 +00:00
|
|
|
// SendRaw sends an XMPP stanza as a string to the server.
|
|
|
|
// It can be invalid XML or XMPP content. In that case, the server will
|
|
|
|
// disconnect the client. It is up to the user of this method to
|
|
|
|
// carefully craft the XML content to produce valid XMPP.
|
|
|
|
func (c *Client) SendRaw(packet string) error {
|
2019-10-06 17:37:56 +00:00
|
|
|
conn := c.transport
|
2019-06-26 13:58:42 +00:00
|
|
|
if conn == nil {
|
|
|
|
return errors.New("client is not connected")
|
|
|
|
}
|
|
|
|
|
2019-10-18 18:29:54 +00:00
|
|
|
return c.sendWithWriter(c.transport, []byte(packet))
|
2019-06-29 08:45:25 +00:00
|
|
|
}
|
|
|
|
|
2019-09-27 14:30:12 +00:00
|
|
|
func (c *Client) sendWithWriter(writer io.Writer, packet []byte) error {
|
2019-06-06 09:58:50 +00:00
|
|
|
var err error
|
2019-09-27 14:30:12 +00:00
|
|
|
_, err = writer.Write(packet)
|
2019-06-06 09:58:50 +00:00
|
|
|
return err
|
2016-01-06 15:51:12 +00:00
|
|
|
}
|
|
|
|
|
2019-06-11 13:29:08 +00:00
|
|
|
// ============================================================================
|
|
|
|
// Go routines
|
|
|
|
|
|
|
|
// Loop: Receive data from server
|
2019-12-05 17:12:00 +00:00
|
|
|
func (c *Client) recv(state SMState, keepaliveQuit chan<- struct{}) {
|
2019-06-11 13:29:08 +00:00
|
|
|
for {
|
2019-10-18 18:29:54 +00:00
|
|
|
val, err := stanza.NextPacket(c.transport.GetDecoder())
|
2019-06-11 13:29:08 +00:00
|
|
|
if err != nil {
|
2019-12-05 17:12:00 +00:00
|
|
|
c.ErrorHandler(err)
|
2019-06-11 13:29:08 +00:00
|
|
|
close(keepaliveQuit)
|
2019-07-31 16:47:30 +00:00
|
|
|
c.disconnected(state)
|
2019-11-28 16:15:15 +00:00
|
|
|
return
|
2019-06-11 13:29:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Handle stream errors
|
|
|
|
switch packet := val.(type) {
|
2019-06-26 15:14:52 +00:00
|
|
|
case stanza.StreamError:
|
2019-06-24 09:13:25 +00:00
|
|
|
c.router.route(c, val)
|
2019-06-18 10:34:25 +00:00
|
|
|
close(keepaliveQuit)
|
2019-06-11 13:29:08 +00:00
|
|
|
c.streamError(packet.Error.Local, packet.Text)
|
2019-12-05 17:12:00 +00:00
|
|
|
c.ErrorHandler(errors.New("stream error: " + packet.Error.Local))
|
2019-11-28 16:15:15 +00:00
|
|
|
return
|
2019-07-31 16:47:30 +00:00
|
|
|
// Process Stream management nonzas
|
|
|
|
case stanza.SMRequest:
|
|
|
|
answer := stanza.SMAnswer{XMLName: xml.Name{
|
|
|
|
Space: stanza.NSStreamManagement,
|
|
|
|
Local: "a",
|
|
|
|
}, H: state.Inbound}
|
2019-11-28 16:15:15 +00:00
|
|
|
err = c.Send(answer)
|
|
|
|
if err != nil {
|
2019-12-05 17:12:00 +00:00
|
|
|
c.ErrorHandler(err)
|
2019-11-28 16:15:15 +00:00
|
|
|
return
|
|
|
|
}
|
2019-07-31 16:47:30 +00:00
|
|
|
default:
|
|
|
|
state.Inbound++
|
2019-06-11 13:29:08 +00:00
|
|
|
}
|
2019-10-29 10:37:49 +00:00
|
|
|
// Do normal route processing in a go-routine so we can immediately
|
|
|
|
// start receiving other stanzas. This also allows route handlers to
|
|
|
|
// send and receive more stanzas.
|
|
|
|
go c.router.route(c, val)
|
2019-06-11 13:29:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Loop: send whitespace keepalive to server
|
|
|
|
// This is use to keep the connection open, but also to detect connection loss
|
|
|
|
// and trigger proper client connection shutdown.
|
2019-12-04 21:17:58 +00:00
|
|
|
func keepalive(transport Transport, interval time.Duration, quit <-chan struct{}) {
|
|
|
|
ticker := time.NewTicker(interval)
|
2019-06-11 13:29:08 +00:00
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case <-ticker.C:
|
2019-10-15 18:56:11 +00:00
|
|
|
if err := transport.Ping(); err != nil {
|
|
|
|
// When keepalive fails, we force close the transport. In all cases, the recv will also fail.
|
2019-06-11 13:29:08 +00:00
|
|
|
ticker.Stop()
|
2019-10-06 17:37:56 +00:00
|
|
|
_ = transport.Close()
|
2019-06-11 13:29:08 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
case <-quit:
|
|
|
|
ticker.Stop()
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
2016-01-06 15:51:12 +00:00
|
|
|
}
|