go-xmpp/stanza/parser.go

156 lines
4.5 KiB
Go
Raw Normal View History

package stanza
import (
"encoding/xml"
"errors"
"fmt"
"io"
)
// Reads and checks the opening XMPP stream element.
2018-01-11 22:00:59 +00:00
// TODO It returns a stream structure containing:
// - 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/> )
func InitStream(p *xml.Decoder) (sessionID string, err error) {
for {
var t xml.Token
t, err = p.Token()
if err != nil {
return sessionID, err
}
switch elem := t.(type) {
case xml.StartElement:
isStreamOpen := elem.Name.Space == NSStream && elem.Name.Local == "stream"
isFrameOpen := elem.Name.Space == NSFraming && elem.Name.Local == "open"
if !isStreamOpen && !isFrameOpen {
err = errors.New("xmpp: expected <stream> or <open> but got <" + elem.Name.Local + "> in " + elem.Name.Space)
return sessionID, err
}
// Parse XMPP stream attributes
for _, attrs := range elem.Attr {
switch attrs.Name.Local {
case "id":
sessionID = attrs.Value
}
}
return sessionID, err
}
}
}
// 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
// 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
se, err := NextStart(p)
if err != nil {
2018-01-13 17:50:17 +00:00
return nil, err
}
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)
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)
case NSStreamManagement:
return sm.decode(p, se)
default:
2018-01-13 17:50:17 +00:00
return nil, errors.New("unknown namespace " +
se.Name.Space + " <" + se.Name.Local + "/>")
}
}
2018-01-13 16:46:10 +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 {
return xml.StartElement{}, errors.New("connection closed")
}
if err != nil {
return xml.StartElement{}, fmt.Errorf("NextStart %s", err)
}
switch t := t.(type) {
case xml.StartElement:
return t, nil
}
}
}
/*
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)
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 + "/>")
}
}
// 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 + "/>")
}
}
// 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 + "/>")
}
}
// decodeComponent 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 {
case "handshake": // handshake is used to authenticate components
2018-01-13 17:50:17 +00:00
return handshake.decode(p, se)
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 + "/>")
}
}