easy xmlformat output

disco_info_form
Martin/Geno 5 years ago committed by Mickaël Rémond
parent 4c23014051
commit 15ceab9fc4

@ -45,12 +45,13 @@ func (messageDecoder) decode(p *xml.Decoder, se xml.StartElement) (Message, erro
return packet, err
}
// TODO: Support missing element (thread, extensions) by using proper marshaller
// XMPPFormat with all Extensions
func (msg *Message) XMPPFormat() string {
return fmt.Sprintf("<message to='%s' type='chat' xml:lang='en'>"+
"<body>%s</body></message>",
msg.To,
xmlEscape(msg.Body))
out, err := xml.MarshalIndent(msg, "", "")
if err != nil {
return ""
}
return string(out)
}
// UnmarshalXML implements custom parsing for IQs

Loading…
Cancel
Save