2019-06-18 14:28:30 +00:00
|
|
|
package xmpp
|
2016-01-06 15:51:12 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/xml"
|
|
|
|
"errors"
|
2017-10-21 13:14:13 +00:00
|
|
|
"fmt"
|
2016-01-06 15:51:12 +00:00
|
|
|
"io"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Reads and checks the opening XMPP stream element.
|
2018-01-11 22:00:59 +00:00
|
|
|
// TODO It returns a stream structure containing:
|
2016-01-06 15:51:12 +00:00
|
|
|
// - Host: You can check the host against the host you were expecting to connect to
|
|
|
|
// - Id: the Stream ID is a temporary shared secret used for some hash calculation. It is also used by ProcessOne
|
|
|
|
// reattach features (allowing to resume an existing stream at the point the connection was interrupted, without
|
|
|
|
// getting through the authentication process.
|
2018-01-11 22:00:59 +00:00
|
|
|
// TODO We should handle stream error from XEP-0114 ( <conflict/> or <host-unknown/> )
|
2019-06-22 09:13:33 +00:00
|
|
|
func initStream(p *xml.Decoder) (sessionID string, err error) {
|
2016-01-06 15:51:12 +00:00
|
|
|
for {
|
|
|
|
var t xml.Token
|
|
|
|
t, err = p.Token()
|
|
|
|
if err != nil {
|
2019-06-22 09:13:33 +00:00
|
|
|
return sessionID, err
|
2016-01-06 15:51:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
switch elem := t.(type) {
|
|
|
|
case xml.StartElement:
|
2017-10-04 23:27:35 +00:00
|
|
|
if elem.Name.Space != NSStream || elem.Name.Local != "stream" {
|
2016-01-06 15:51:12 +00:00
|
|
|
err = errors.New("xmpp: expected <stream> but got <" + elem.Name.Local + "> in " + elem.Name.Space)
|
2019-06-22 09:13:33 +00:00
|
|
|
return sessionID, err
|
2016-01-06 15:51:12 +00:00
|
|
|
}
|
|
|
|
|
2019-06-22 09:13:33 +00:00
|
|
|
// Parse XMPP stream attributes
|
2016-01-06 15:51:12 +00:00
|
|
|
for _, attrs := range elem.Attr {
|
|
|
|
switch attrs.Name.Local {
|
|
|
|
case "id":
|
|
|
|
sessionID = attrs.Value
|
|
|
|
}
|
|
|
|
}
|
2019-06-22 09:13:33 +00:00
|
|
|
return sessionID, err
|
2016-01-06 15:51:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Scan XML token stream to find next StartElement.
|
|
|
|
func nextStart(p *xml.Decoder) (xml.StartElement, error) {
|
|
|
|
for {
|
|
|
|
t, err := p.Token()
|
|
|
|
if err == io.EOF {
|
2019-06-06 09:58:50 +00:00
|
|
|
return xml.StartElement{}, errors.New("connection closed")
|
2016-01-06 15:51:12 +00:00
|
|
|
}
|
|
|
|
if err != nil {
|
2017-10-21 13:14:13 +00:00
|
|
|
return xml.StartElement{}, fmt.Errorf("nextStart %s", err)
|
2016-01-06 15:51:12 +00:00
|
|
|
}
|
|
|
|
switch t := t.(type) {
|
|
|
|
case xml.StartElement:
|
|
|
|
return t, nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-22 09:13:33 +00:00
|
|
|
// nextPacket scans XML token stream for next complete XMPP stanza.
|
|
|
|
// Once the type of stanza has been identified, a structure is created to decode
|
|
|
|
// that stanza and returned.
|
2018-01-12 18:08:47 +00:00
|
|
|
// TODO Use an interface to return packets interface xmppDecoder
|
2019-06-22 09:13:33 +00:00
|
|
|
// TODO make auth and bind use nextPacket instead of directly nextStart
|
|
|
|
func nextPacket(p *xml.Decoder) (Packet, error) {
|
2018-01-13 17:50:17 +00:00
|
|
|
// Read start element to find out how we want to parse the XMPP packet
|
2016-01-06 15:51:12 +00:00
|
|
|
se, err := nextStart(p)
|
|
|
|
if err != nil {
|
2018-01-13 17:50:17 +00:00
|
|
|
return nil, err
|
2016-01-06 15:51:12 +00:00
|
|
|
}
|
|
|
|
|
2018-01-23 08:08:21 +00:00
|
|
|
// Decode one of the top level XMPP namespace
|
2018-01-13 16:46:10 +00:00
|
|
|
switch se.Name.Space {
|
|
|
|
case NSStream:
|
2018-01-13 17:50:17 +00:00
|
|
|
return decodeStream(p, se)
|
2018-01-13 16:46:10 +00:00
|
|
|
case nsSASL:
|
2018-01-13 17:50:17 +00:00
|
|
|
return decodeSASL(p, se)
|
2018-01-13 16:46:10 +00:00
|
|
|
case NSClient:
|
2018-01-13 17:50:17 +00:00
|
|
|
return decodeClient(p, se)
|
2018-01-13 16:46:10 +00:00
|
|
|
case NSComponent:
|
2018-01-13 17:50:17 +00:00
|
|
|
return decodeComponent(p, se)
|
2016-01-06 15:51:12 +00:00
|
|
|
default:
|
2018-01-13 17:50:17 +00:00
|
|
|
return nil, errors.New("unknown namespace " +
|
2016-01-06 15:51:12 +00:00
|
|
|
se.Name.Space + " <" + se.Name.Local + "/>")
|
|
|
|
}
|
|
|
|
}
|
2018-01-13 16:46:10 +00:00
|
|
|
|
2019-06-22 09:13:33 +00:00
|
|
|
/*
|
|
|
|
TODO: From all the decoder, we can return a pointer to the actual concrete type, instead of directly that
|
|
|
|
type.
|
|
|
|
That way, we have a consistent way to do type assertion, always matching against pointers.
|
|
|
|
*/
|
|
|
|
|
|
|
|
// decodeStream will fully decode a stream packet
|
2018-01-13 17:50:17 +00:00
|
|
|
func decodeStream(p *xml.Decoder, se xml.StartElement) (Packet, error) {
|
2018-01-13 16:46:10 +00:00
|
|
|
switch se.Name.Local {
|
|
|
|
case "error":
|
2018-01-13 17:50:17 +00:00
|
|
|
return streamError.decode(p, se)
|
2019-05-16 15:46:36 +00:00
|
|
|
case "features":
|
|
|
|
return streamFeatures.decode(p, se)
|
2018-01-13 16:46:10 +00:00
|
|
|
default:
|
|
|
|
return nil, errors.New("unexpected XMPP packet " +
|
|
|
|
se.Name.Space + " <" + se.Name.Local + "/>")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-22 09:13:33 +00:00
|
|
|
// decodeSASL decodes a packet related to SASL authentication.
|
2018-01-13 17:50:17 +00:00
|
|
|
func decodeSASL(p *xml.Decoder, se xml.StartElement) (Packet, error) {
|
2018-01-13 16:46:10 +00:00
|
|
|
switch se.Name.Local {
|
|
|
|
case "success":
|
2018-01-13 17:50:17 +00:00
|
|
|
return saslSuccess.decode(p, se)
|
2018-01-13 16:46:10 +00:00
|
|
|
case "failure":
|
2018-01-13 17:50:17 +00:00
|
|
|
return saslFailure.decode(p, se)
|
2018-01-13 16:46:10 +00:00
|
|
|
default:
|
|
|
|
return nil, errors.New("unexpected XMPP packet " +
|
|
|
|
se.Name.Space + " <" + se.Name.Local + "/>")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-22 09:13:33 +00:00
|
|
|
// decodeClient decodes all known packets in the client namespace.
|
2018-01-13 17:50:17 +00:00
|
|
|
func decodeClient(p *xml.Decoder, se xml.StartElement) (Packet, error) {
|
2018-01-13 16:46:10 +00:00
|
|
|
switch se.Name.Local {
|
|
|
|
case "message":
|
2018-01-13 17:50:17 +00:00
|
|
|
return message.decode(p, se)
|
2018-01-13 16:46:10 +00:00
|
|
|
case "presence":
|
2018-01-13 17:50:17 +00:00
|
|
|
return presence.decode(p, se)
|
2018-01-13 16:46:10 +00:00
|
|
|
case "iq":
|
2018-01-13 17:50:17 +00:00
|
|
|
return iq.decode(p, se)
|
2018-01-13 16:46:10 +00:00
|
|
|
default:
|
|
|
|
return nil, errors.New("unexpected XMPP packet " +
|
|
|
|
se.Name.Space + " <" + se.Name.Local + "/>")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-22 09:13:33 +00:00
|
|
|
// decodeClient decodes all known packets in the component namespace.
|
2018-01-13 17:50:17 +00:00
|
|
|
func decodeComponent(p *xml.Decoder, se xml.StartElement) (Packet, error) {
|
2018-01-13 16:46:10 +00:00
|
|
|
switch se.Name.Local {
|
2019-06-22 09:13:33 +00:00
|
|
|
case "handshake": // handshake is used to authenticate components
|
2018-01-13 17:50:17 +00:00
|
|
|
return handshake.decode(p, se)
|
2018-01-23 07:55:15 +00:00
|
|
|
case "message":
|
|
|
|
return message.decode(p, se)
|
|
|
|
case "presence":
|
|
|
|
return presence.decode(p, se)
|
2018-01-13 16:46:10 +00:00
|
|
|
case "iq":
|
2018-01-13 17:50:17 +00:00
|
|
|
return iq.decode(p, se)
|
2018-01-13 16:46:10 +00:00
|
|
|
default:
|
|
|
|
return nil, errors.New("unexpected XMPP packet " +
|
|
|
|
se.Name.Space + " <" + se.Name.Local + "/>")
|
|
|
|
}
|
|
|
|
}
|