2016-01-06 15:51:12 +00:00
|
|
|
package xmpp
|
|
|
|
|
2016-02-15 10:08:54 +00:00
|
|
|
import (
|
|
|
|
"encoding/xml"
|
2016-01-06 15:51:12 +00:00
|
|
|
|
2016-02-15 10:08:54 +00:00
|
|
|
"github.com/processone/gox/xmpp/iot"
|
|
|
|
)
|
|
|
|
|
|
|
|
// info/query
|
|
|
|
type ClientIQ struct {
|
2016-01-06 15:51:12 +00:00
|
|
|
XMLName xml.Name `xml:"jabber:client iq"`
|
|
|
|
Packet
|
2016-02-15 14:22:51 +00:00
|
|
|
Payload IQPayload `xml:",omitempty"`
|
|
|
|
RawXML string `xml:",innerxml"`
|
2016-01-06 15:51:12 +00:00
|
|
|
// TODO We need to support detecting the IQ namespace / Query packet
|
|
|
|
// Error clientError
|
|
|
|
}
|
2016-02-15 14:22:51 +00:00
|
|
|
|
|
|
|
type IQPayload interface {
|
|
|
|
IsIQPayload()
|
|
|
|
}
|
|
|
|
|
|
|
|
// UnmarshalXML implements custom parsing for IQs
|
|
|
|
func (iq *ClientIQ) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error {
|
|
|
|
iq.XMLName = start.Name
|
|
|
|
// Extract IQ attributes
|
|
|
|
for _, attr := range start.Attr {
|
|
|
|
if attr.Name.Local == "id" {
|
|
|
|
iq.Id = attr.Value
|
|
|
|
}
|
|
|
|
if attr.Name.Local == "to" {
|
|
|
|
iq.To = attr.Value
|
|
|
|
}
|
|
|
|
if attr.Name.Local == "from" {
|
|
|
|
iq.From = attr.Value
|
|
|
|
}
|
|
|
|
if attr.Name.Local == "lang" {
|
|
|
|
iq.Lang = attr.Value
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// decode inner elements
|
|
|
|
for {
|
|
|
|
t, err := d.Token()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
var p IQPayload
|
|
|
|
switch tt := t.(type) {
|
|
|
|
|
|
|
|
case xml.StartElement:
|
|
|
|
switch tt.Name.Space + " " + tt.Name.Local {
|
|
|
|
case "urn:ietf:params:xml:ns:xmpp-bind bind":
|
|
|
|
p = new(bindBind)
|
|
|
|
case "urn:xmpp:iot:control set":
|
|
|
|
p = new(iot.ControlSet)
|
|
|
|
// TODO: Add a default Type that passes RawXML
|
|
|
|
}
|
|
|
|
if p != nil {
|
|
|
|
err = d.DecodeElement(p, &tt)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
iq.Payload = p
|
|
|
|
p = nil
|
|
|
|
}
|
|
|
|
|
|
|
|
case xml.EndElement:
|
|
|
|
if tt == start.End() {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|