| Class | Jabber::Caps::Helper |
| In: |
lib/xmpp4r/caps/helper/helper.rb
|
| Parent: | Object |
A Helper to manage advertising and discovery of entity capabilities.
Following XEP-0115 (ver 1.4 www.xmpp.org/extensions/xep-0115.html). you can use this Helper to, for example, advertise that your client wishes to receive XEP-0118 User Tune notifications, eg:
caps_helper=Jabber::Caps::Helper(cl,
[Jabber::Discovery::Identity.new('client',nil,'bot')],
[Jabber::Discovery::Feature.new('http://jabber.org/protocol/tune+notify')]
)
| features | [RW] | |
| identities | [RW] | |
| node | [RW] |
This will send a <presence> message containing a <c/> (Jabber::Caps::C) stanza to your server.
| client: | [Jabber::Stream] |
| i: | [Array] of [Jabber::Discovery::Identity] objects that this entity will advertise |
| f: | [Array] of [Jabber::Discovery::Feature] objects that this entity will advertise |
| n: | [String] an identifier representing the software underlying this entity |
# File lib/xmpp4r/caps/helper/helper.rb, line 35
35: def initialize(client,i=[],f=[],n="http://home.gna.org/xmpp4r/##{Jabber::XMPP4R_VERSION}")
36: @stream = client
37: @identities = i
38: @features = f
39: @node = n
40:
41: @stream.add_iq_callback(250) do |iq|
42: if iq.type == :get and iq.query.kind_of? Jabber::Discovery::IqQueryDiscoInfo
43: handle_discoinfo_query(iq)
44: true
45: else
46: false
47: end
48: end
49:
50: p = Jabber::Presence.new()
51: p.add(c)
52: @stream.send(p)
53: end
Send actual identities/ features back to a requesting entity
# File lib/xmpp4r/caps/helper/helper.rb, line 64
64: def handle_discoinfo_query(iq)
65: caps_reply = Jabber::XMPPStanza.answer(iq)
66: caps_reply.type = :result
67: caps_reply.query = Jabber::Discovery::IqQueryDiscoInfo.new
68: @identities.each { |i| caps_reply.query.add(i) }
69: @features.each { |f| caps_reply.query.add(f) }
70:
71: @stream.send(caps_reply)
72: end
Generate ‘ver’, an opaque hash used to represent this entity‘s capabilities
See www.xmpp.org/extensions/xep-0115.html#ver
# File lib/xmpp4r/caps/helper/helper.rb, line 79
79: def ver
80: Caps::generate_ver(@identities, @features)
81: end