Class: Vines::Stanza::Iq::Vcard

Inherits:
Vines::Stanza::Iq show all
Defined in:
lib/vines/stanza/iq/vcard.rb

Constant Summary collapse

NS =
NAMESPACES[:vcard]

Constants inherited from Vines::Stanza::Iq

VALID_TYPES

Constants inherited from Vines::Stanza

EMPTY, ROUTABLE_STANZAS

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?, #local_jid?, #method_missing, register, #route, #router, #send_unavailable, #storage, #to_pubsub_domain?, #unavailable, #validate_from, #validate_to

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
# File 'lib/vines/stanza/iq/vcard.rb', line 11

def process
  return unless allowed?
  if local?
    get? ? vcard_query : vcard_update
  else
    self['from'] = stream.user.jid.to_s
    route
  end
end