Class: Vines::Stanza::Iq::DiscoInfo

Inherits:
Query show all
Defined in:
lib/vines/stanza/iq/disco_info.rb

Constant Summary collapse

NS =
NAMESPACES[:disco_info]

Constants inherited from Vines::Stanza::Iq

VALID_TYPES

Constants inherited from Vines::Stanza

MESSAGE

Instance Attribute Summary

Attributes inherited from Vines::Stanza

#stream

Instance Method Summary collapse

Methods inherited from Vines::Stanza::Iq

#to_result

Methods inherited from Vines::Stanza

#broadcast, from_node, #initialize, #local?, #method_missing, register, #route, #router, #send_unavailable, #storage, #unavailable

Constructor Details

This class inherits a constructor from Vines::Stanza

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class Vines::Stanza

Instance Method Details

#processObject



11
12
13
14
15
16
17
18
19
20
21
22
23
24
# File 'lib/vines/stanza/iq/disco_info.rb', line 11

def process
  return if route_iq
  result = to_result.tap do |el|
    el << el.document.create_element('query') do |query|
      query.default_namespace = NS
      query << el.document.create_element('feature', 'var' => NAMESPACES[:ping])
      query << el.document.create_element('feature', 'var' => NAMESPACES[:vcard])
      if stream.private_storage?
        query << el.document.create_element('feature', 'var' => NAMESPACES[:storage])
      end
    end
  end
  stream.write(result)
end