8798ff6fc1
- Fixed commands from v 0.4.0 and tests - Added primitive Result Sets support (XEP-0059)
46 lines
1.4 KiB
Go
46 lines
1.4 KiB
Go
package stanza
|
|
|
|
import (
|
|
"encoding/xml"
|
|
)
|
|
|
|
/*
|
|
Support for:
|
|
- XEP-0085 - Chat State Notifications: https://xmpp.org/extensions/xep-0085.html
|
|
*/
|
|
|
|
const NSMsgChatStateNotifications = "http://jabber.org/protocol/chatstates"
|
|
|
|
type StateActive struct {
|
|
MsgExtension
|
|
XMLName xml.Name `xml:"http://jabber.org/protocol/chatstates active"`
|
|
}
|
|
|
|
type StateComposing struct {
|
|
MsgExtension
|
|
XMLName xml.Name `xml:"http://jabber.org/protocol/chatstates composing"`
|
|
}
|
|
|
|
type StateGone struct {
|
|
MsgExtension
|
|
XMLName xml.Name `xml:"http://jabber.org/protocol/chatstates gone"`
|
|
}
|
|
|
|
type StateInactive struct {
|
|
MsgExtension
|
|
XMLName xml.Name `xml:"http://jabber.org/protocol/chatstates inactive"`
|
|
}
|
|
|
|
type StatePaused struct {
|
|
MsgExtension
|
|
XMLName xml.Name `xml:"http://jabber.org/protocol/chatstates paused"`
|
|
}
|
|
|
|
func init() {
|
|
TypeRegistry.MapExtension(PKTMessage, xml.Name{Space: NSMsgChatStateNotifications, Local: "active"}, StateActive{})
|
|
TypeRegistry.MapExtension(PKTMessage, xml.Name{Space: NSMsgChatStateNotifications, Local: "composing"}, StateComposing{})
|
|
TypeRegistry.MapExtension(PKTMessage, xml.Name{Space: NSMsgChatStateNotifications, Local: "gone"}, StateGone{})
|
|
TypeRegistry.MapExtension(PKTMessage, xml.Name{Space: NSMsgChatStateNotifications, Local: "inactive"}, StateInactive{})
|
|
TypeRegistry.MapExtension(PKTMessage, xml.Name{Space: NSMsgChatStateNotifications, Local: "paused"}, StatePaused{})
|
|
}
|