Class: Blather::Stanza::PubSubOwner::Delete
- Inherits:
-
Blather::Stanza::PubSubOwner
- Object
- Niceogiri::XML::Node
- XMPPNode
- Blather::Stanza
- Iq
- Blather::Stanza::PubSubOwner
- Blather::Stanza::PubSubOwner::Delete
- Defined in:
- lib/blather/stanza/pubsub_owner/delete.rb
Overview
# PubSubOwner Delete Stanza
[XEP-0060 Section 8.4 Delete a Node](xmpp.org/extensions/xep-0060.html#owner-delete)
Constant Summary
Constants inherited from Iq
Constants inherited from XMPPNode
Instance Attribute Summary
Attributes inherited from Blather::Stanza
Class Method Summary collapse
-
.new(type = :set, host = nil, node = nil) ⇒ Object
Create a new delete stanza.
Instance Method Summary collapse
-
#delete_node ⇒ Blather::XMPPNode
Get or create the actual delete node on the stanza.
-
#node ⇒ String
Get the name of the node to delete.
-
#node=(node) ⇒ Object
Set the name of the node to delete.
Methods inherited from Blather::Stanza::PubSubOwner
Methods inherited from Iq
#error?, #get?, import, #reply!, #result?, #set?, #type=
Methods inherited from Blather::Stanza
#as_error, #error?, #from, #from=, handler_list, #id, #id=, #initialize, next_id, register, #reply, #reply!, #to, #to=, #type, #type=
Methods inherited from XMPPNode
class_from_registration, #decorate, decorator_modules, import, parse, register, #to_stanza
Constructor Details
This class inherits a constructor from Blather::Stanza
Class Method Details
.new(type = :set, host = nil, node = nil) ⇒ Object
Create a new delete stanza
18 19 20 21 22 |
# File 'lib/blather/stanza/pubsub_owner/delete.rb', line 18 def self.new(type = :set, host = nil, node = nil) new_node = super(type, host) new_node.node = node new_node end |
Instance Method Details
#delete_node ⇒ Blather::XMPPNode
Get or create the actual delete node on the stanza
41 42 43 44 45 46 47 |
# File 'lib/blather/stanza/pubsub_owner/delete.rb', line 41 def delete_node unless delete_node = pubsub.find_first('ns:delete', :ns => self.class.registered_ns) self.pubsub << (delete_node = XMPPNode.new('delete', self.document)) delete_node.namespace = self.pubsub.namespace end delete_node end |
#node ⇒ String
Get the name of the node to delete
27 28 29 |
# File 'lib/blather/stanza/pubsub_owner/delete.rb', line 27 def node delete_node[:node] end |
#node=(node) ⇒ Object
Set the name of the node to delete
34 35 36 |
# File 'lib/blather/stanza/pubsub_owner/delete.rb', line 34 def node=(node) delete_node[:node] = node end |