2018-12-26 17:50:01 +00:00
|
|
|
package xmpp // import "gosrc.io/xmpp"
|
2016-01-06 15:51:12 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/xml"
|
|
|
|
)
|
|
|
|
|
2018-01-13 17:50:17 +00:00
|
|
|
// ============================================================================
|
|
|
|
// Message Packet
|
|
|
|
|
|
|
|
type Message struct {
|
|
|
|
XMLName xml.Name `xml:"message"`
|
2018-01-13 16:54:07 +00:00
|
|
|
PacketAttrs
|
2019-05-31 21:35:04 +00:00
|
|
|
Subject string `xml:"subject,omitempty"`
|
|
|
|
Body string `xml:"body,omitempty"`
|
|
|
|
Thread string `xml:"thread,omitempty"`
|
|
|
|
Error Err `xml:"error,omitempty"`
|
|
|
|
Extensions []MsgExtension `xml:",omitempty"`
|
2016-01-06 15:51:12 +00:00
|
|
|
}
|
|
|
|
|
2018-01-13 17:50:17 +00:00
|
|
|
func (Message) Name() string {
|
|
|
|
return "message"
|
|
|
|
}
|
|
|
|
|
2018-01-24 08:38:02 +00:00
|
|
|
func NewMessage(msgtype, from, to, id, lang string) Message {
|
|
|
|
return Message{
|
|
|
|
XMLName: xml.Name{Local: "message"},
|
|
|
|
PacketAttrs: PacketAttrs{
|
|
|
|
Id: id,
|
|
|
|
From: from,
|
|
|
|
To: to,
|
|
|
|
Type: msgtype,
|
|
|
|
Lang: lang,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-13 17:50:17 +00:00
|
|
|
type messageDecoder struct{}
|
|
|
|
|
|
|
|
var message messageDecoder
|
2016-01-06 15:51:12 +00:00
|
|
|
|
2018-01-13 17:50:17 +00:00
|
|
|
func (messageDecoder) decode(p *xml.Decoder, se xml.StartElement) (Message, error) {
|
|
|
|
var packet Message
|
|
|
|
err := p.DecodeElement(&packet, &se)
|
|
|
|
return packet, err
|
|
|
|
}
|
|
|
|
|
2019-06-04 17:10:21 +00:00
|
|
|
// XMPPFormat with all Extensions
|
2018-01-13 17:50:17 +00:00
|
|
|
func (msg *Message) XMPPFormat() string {
|
2019-06-04 17:10:21 +00:00
|
|
|
out, err := xml.MarshalIndent(msg, "", "")
|
|
|
|
if err != nil {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
return string(out)
|
2016-01-06 15:51:12 +00:00
|
|
|
}
|
2019-05-31 21:35:04 +00:00
|
|
|
|
|
|
|
// UnmarshalXML implements custom parsing for IQs
|
|
|
|
func (msg *Message) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error {
|
|
|
|
msg.XMLName = start.Name
|
|
|
|
|
|
|
|
// Extract packet attributes
|
|
|
|
for _, attr := range start.Attr {
|
|
|
|
if attr.Name.Local == "id" {
|
|
|
|
msg.Id = attr.Value
|
|
|
|
}
|
|
|
|
if attr.Name.Local == "type" {
|
|
|
|
msg.Type = attr.Value
|
|
|
|
}
|
|
|
|
if attr.Name.Local == "to" {
|
|
|
|
msg.To = attr.Value
|
|
|
|
}
|
|
|
|
if attr.Name.Local == "from" {
|
|
|
|
msg.From = attr.Value
|
|
|
|
}
|
|
|
|
if attr.Name.Local == "lang" {
|
|
|
|
msg.Lang = attr.Value
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// decode inner elements
|
|
|
|
for {
|
|
|
|
t, err := d.Token()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
switch tt := t.(type) {
|
|
|
|
|
|
|
|
case xml.StartElement:
|
2019-06-04 15:04:25 +00:00
|
|
|
if msgExt := typeRegistry.GetMsgExtension(tt.Name); msgExt != nil {
|
2019-06-03 10:40:42 +00:00
|
|
|
// Decode message extension
|
|
|
|
err = d.DecodeElement(msgExt, &tt)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
2019-05-31 21:35:04 +00:00
|
|
|
}
|
2019-06-03 10:40:42 +00:00
|
|
|
msg.Extensions = append(msg.Extensions, msgExt)
|
2019-05-31 21:35:04 +00:00
|
|
|
} else {
|
2019-06-03 10:40:42 +00:00
|
|
|
// Decode standard message sub-elements
|
2019-05-31 21:35:04 +00:00
|
|
|
var err error
|
|
|
|
switch tt.Name.Local {
|
|
|
|
case "body":
|
|
|
|
err = d.DecodeElement(&msg.Body, &tt)
|
|
|
|
case "thread":
|
|
|
|
err = d.DecodeElement(&msg.Thread, &tt)
|
|
|
|
case "subject":
|
|
|
|
err = d.DecodeElement(&msg.Subject, &tt)
|
|
|
|
case "error":
|
|
|
|
err = d.DecodeElement(&msg.Error, &tt)
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
case xml.EndElement:
|
|
|
|
if tt == start.End() {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|