go-xmpp/stanza
2019-06-27 10:23:49 +02:00
..
auth_sasl.go Move some IQ declaration in their own files 2019-06-27 10:22:36 +02:00
builder.go Add basic builder support 2019-06-27 10:23:49 +02:00
component.go Refactor and move parsing and stanza to a separate package 2019-06-26 17:14:52 +02:00
component_test.go Refactor and move parsing and stanza to a separate package 2019-06-26 17:14:52 +02:00
error.go Refactor and move parsing and stanza to a separate package 2019-06-26 17:14:52 +02:00
error_enum.go Refactor and move parsing and stanza to a separate package 2019-06-26 17:14:52 +02:00
iot.go Move some IQ declaration in their own files 2019-06-27 10:22:36 +02:00
iot_test.go Refactor and move parsing and stanza to a separate package 2019-06-26 17:14:52 +02:00
iq.go Move some IQ declaration in their own files 2019-06-27 10:22:36 +02:00
iq_disco.go Move some IQ declaration in their own files 2019-06-27 10:22:36 +02:00
iq_test.go Fix tests after refactor 2019-06-26 17:28:54 +02:00
iq_version.go Move some IQ declaration in their own files 2019-06-27 10:22:36 +02:00
message.go Refactor and move parsing and stanza to a separate package 2019-06-26 17:14:52 +02:00
message_test.go Fix tests after refactor 2019-06-26 17:28:54 +02:00
msg_chat_markers.go Refactor and move parsing and stanza to a separate package 2019-06-26 17:14:52 +02:00
msg_chat_state.go Refactor and move parsing and stanza to a separate package 2019-06-26 17:14:52 +02:00
msg_html.go Refactor and move parsing and stanza to a separate package 2019-06-26 17:14:52 +02:00
msg_html_test.go Fix tests after refactor 2019-06-26 17:28:54 +02:00
msg_oob.go Refactor and move parsing and stanza to a separate package 2019-06-26 17:14:52 +02:00
msg_receipts.go Refactor and move parsing and stanza to a separate package 2019-06-26 17:14:52 +02:00
msg_receipts_test.go Fix tests after refactor 2019-06-26 17:28:54 +02:00
node.go Refactor and move parsing and stanza to a separate package 2019-06-26 17:14:52 +02:00
ns.go Refactor and move parsing and stanza to a separate package 2019-06-26 17:14:52 +02:00
packet.go Refactor and move parsing and stanza to a separate package 2019-06-26 17:14:52 +02:00
packet_enum.go Refactor and move parsing and stanza to a separate package 2019-06-26 17:14:52 +02:00
parser.go Refactor and move parsing and stanza to a separate package 2019-06-26 17:14:52 +02:00
pep.go Refactor and move parsing and stanza to a separate package 2019-06-26 17:14:52 +02:00
pres_muc.go Resync with Master 2019-06-26 18:42:40 +02:00
pres_muc_test.go Resync with Master 2019-06-26 18:42:40 +02:00
presence.go Refactor and move parsing and stanza to a separate package 2019-06-26 17:14:52 +02:00
presence_enum.go Refactor and move parsing and stanza to a separate package 2019-06-26 17:14:52 +02:00
presence_test.go Fix tests after refactor 2019-06-26 17:28:54 +02:00
pubsub.go Refactor and move parsing and stanza to a separate package 2019-06-26 17:14:52 +02:00
README.md Add initial documentation 2019-06-27 10:21:33 +02:00
registry.go Refactor and move parsing and stanza to a separate package 2019-06-26 17:14:52 +02:00
registry_test.go Refactor and move parsing and stanza to a separate package 2019-06-26 17:14:52 +02:00
starttls.go Refactor and move parsing and stanza to a separate package 2019-06-26 17:14:52 +02:00
stream.go Refactor and move parsing and stanza to a separate package 2019-06-26 17:14:52 +02:00
xmpp_test.go Refactor and move parsing and stanza to a separate package 2019-06-26 17:14:52 +02:00

XMPP Stanza

XMPP stanza package is use to parse, marshall and and unmarshal XMPP stanzas and nonzas.

Stanza creation

When creating stanzas, you can use two approaches:

  1. You can create IQ, Presence or Message structs, set the fields and manually prepare extensions struct to add to the stanza.
  2. You can use stanza Builder providing

The methods are equivalent and you can use whatever suits you best. The Builder will generate the same type of struct that you can build by hand.

Composing stanzas manually with structs

Here is for example how you would generate an IQ discovery result:

iqResp := stanza.NewIQ(stanza.Attrs{Type: "result", From: iq.To, To: iq.From, Id: iq.Id, Lang: "en"})
identity := stanza.Identity{
	Name:     opts.Name,
	Category: opts.Category,
	Type:     opts.Type,
}
payload := stanza.DiscoInfo{
	XMLName: xml.Name{
		Space: stanza.NSDiscoInfo,
		Local: "query",
	},
	Identity: identity,
	Features: []stanza.Feature{
		{Var: stanza.NSDiscoInfo},
		{Var: stanza.NSDiscoItems},
		{Var: "jabber:iq:version"},
		{Var: "urn:xmpp:delegation:1"},
	},
}
iqResp.Payload = &payload

Using Builder

Here is for example how you would generate an IQ discovery result using Builder:

b := stanza.NewBuilder()
iq := b.IQ(stanza.Attrs{Type: "get", To: "service.localhost", Id: "disco-get-1"})

payload := b.DiscoInfo()
identity := b.Identity("Test Component", "gateway", "service")
payload.SetFeatures(stanza.NSDiscoInfo, stanza.NSDiscoItems, "jabber:iq:version", "urn:xmpp:delegation:1").
	SetIdentities(identity)

iq.Payload = payload

Payload and extensions

Message

Presence

IQ

IQ (Information Queries) contain a payload associated with the request and possibly an error. The main difference with Message and Presence extension is that you can only have one payload per IQ. The XMPP specification does not support having multiple payloads.

Here is the list of structs implementing IQPayloads:

  • BindBind
  • Pubsub

Finally, when the payload of the parsed stanza is unknown, the parser will provide the unknown payload as a generic Node element. You can also use the Node struct to add custom information on stanza generation. However, in both cases, you may also consider adding your own custom extensions on stanzas.

Adding your own custom extensions on stanzas

Extensions are registered on launch using the Registry. It can be used to register you own custom payload. You may want to do so to support extensions we did not yet implement, or to add your own custom extensions to your XMPP stanzas.