gmcmillan-xmpp4r 0.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/CHANGELOG +91 -0
- data/COPYING +340 -0
- data/LICENSE +59 -0
- data/README.rdoc +122 -0
- data/README_ruby19.txt +43 -0
- data/Rakefile +258 -0
- data/data/doc/xmpp4r/examples/advanced/adventure/README +56 -0
- data/data/doc/xmpp4r/examples/advanced/adventure/adventure.rb +23 -0
- data/data/doc/xmpp4r/examples/advanced/adventure/adventuremuc.rb +136 -0
- data/data/doc/xmpp4r/examples/advanced/adventure/cube.xml +15 -0
- data/data/doc/xmpp4r/examples/advanced/adventure/tower.xml +69 -0
- data/data/doc/xmpp4r/examples/advanced/adventure/world.rb +424 -0
- data/data/doc/xmpp4r/examples/advanced/fileserve.conf +11 -0
- data/data/doc/xmpp4r/examples/advanced/fileserve.rb +346 -0
- data/data/doc/xmpp4r/examples/advanced/getonline.rb +56 -0
- data/data/doc/xmpp4r/examples/advanced/gtkmucclient.rb +315 -0
- data/data/doc/xmpp4r/examples/advanced/migrate.rb +88 -0
- data/data/doc/xmpp4r/examples/advanced/minimuc.rb +266 -0
- data/data/doc/xmpp4r/examples/advanced/pep-aggregator/index.xsl +235 -0
- data/data/doc/xmpp4r/examples/advanced/pep-aggregator/pep-aggregator.rb +147 -0
- data/data/doc/xmpp4r/examples/advanced/recvfile.rb +85 -0
- data/data/doc/xmpp4r/examples/advanced/rosterdiscovery.rb +129 -0
- data/data/doc/xmpp4r/examples/advanced/sendfile.conf +10 -0
- data/data/doc/xmpp4r/examples/advanced/sendfile.rb +72 -0
- data/data/doc/xmpp4r/examples/advanced/shellmgr/shellmgr.rb +51 -0
- data/data/doc/xmpp4r/examples/advanced/shellmgr/shellmgr_jabber.rb +43 -0
- data/data/doc/xmpp4r/examples/advanced/shellmgr/shellmgr_test.rb +10 -0
- data/data/doc/xmpp4r/examples/advanced/versionpoll.rb +109 -0
- data/data/doc/xmpp4r/examples/advanced/xmpping.rb +146 -0
- data/data/doc/xmpp4r/examples/advanced/xmppingrc.sample +14 -0
- data/data/doc/xmpp4r/examples/basic/change_password.rb +41 -0
- data/data/doc/xmpp4r/examples/basic/client.rb +70 -0
- data/data/doc/xmpp4r/examples/basic/component.rb +11 -0
- data/data/doc/xmpp4r/examples/basic/echo.rb +37 -0
- data/data/doc/xmpp4r/examples/basic/jabbersend.rb +41 -0
- data/data/doc/xmpp4r/examples/basic/mass_sender.rb +68 -0
- data/data/doc/xmpp4r/examples/basic/muc_owner_config.rb +12 -0
- data/data/doc/xmpp4r/examples/basic/mucinfo.rb +41 -0
- data/data/doc/xmpp4r/examples/basic/mucsimplebot.rb +82 -0
- data/data/doc/xmpp4r/examples/basic/register.rb +42 -0
- data/data/doc/xmpp4r/examples/basic/remove_registration.rb +18 -0
- data/data/doc/xmpp4r/examples/basic/roster.rb +44 -0
- data/data/doc/xmpp4r/examples/basic/rosterprint.rb +50 -0
- data/data/doc/xmpp4r/examples/basic/rosterrename.rb +34 -0
- data/data/doc/xmpp4r/examples/basic/rosterwatch.rb +171 -0
- data/data/doc/xmpp4r/examples/basic/send_vcard.rb +67 -0
- data/data/doc/xmpp4r/examples/basic/tune_client.rb +56 -0
- data/data/doc/xmpp4r/examples/basic/tune_server.rb +58 -0
- data/data/doc/xmpp4r/examples/basic/versionbot.rb +75 -0
- data/lib/xmpp4r.rb +118 -0
- data/lib/xmpp4r/base64.rb +32 -0
- data/lib/xmpp4r/bytestreams.rb +15 -0
- data/lib/xmpp4r/bytestreams/helper/filetransfer.rb +321 -0
- data/lib/xmpp4r/bytestreams/helper/ibb/base.rb +257 -0
- data/lib/xmpp4r/bytestreams/helper/ibb/initiator.rb +31 -0
- data/lib/xmpp4r/bytestreams/helper/ibb/target.rb +54 -0
- data/lib/xmpp4r/bytestreams/helper/socks5bytestreams/base.rb +153 -0
- data/lib/xmpp4r/bytestreams/helper/socks5bytestreams/initiator.rb +86 -0
- data/lib/xmpp4r/bytestreams/helper/socks5bytestreams/server.rb +198 -0
- data/lib/xmpp4r/bytestreams/helper/socks5bytestreams/socks5.rb +65 -0
- data/lib/xmpp4r/bytestreams/helper/socks5bytestreams/target.rb +82 -0
- data/lib/xmpp4r/bytestreams/iq/bytestreams.rb +170 -0
- data/lib/xmpp4r/bytestreams/iq/si.rb +206 -0
- data/lib/xmpp4r/callbacks.rb +133 -0
- data/lib/xmpp4r/caps.rb +1 -0
- data/lib/xmpp4r/caps/c.rb +67 -0
- data/lib/xmpp4r/caps/helper/generator.rb +160 -0
- data/lib/xmpp4r/caps/helper/helper.rb +84 -0
- data/lib/xmpp4r/client.rb +345 -0
- data/lib/xmpp4r/command/helper/responder.rb +53 -0
- data/lib/xmpp4r/command/iq/command.rb +154 -0
- data/lib/xmpp4r/component.rb +103 -0
- data/lib/xmpp4r/connection.rb +231 -0
- data/lib/xmpp4r/dataforms.rb +5 -0
- data/lib/xmpp4r/dataforms/x/data.rb +297 -0
- data/lib/xmpp4r/debuglog.rb +63 -0
- data/lib/xmpp4r/delay.rb +5 -0
- data/lib/xmpp4r/delay/x/delay.rb +99 -0
- data/lib/xmpp4r/discovery.rb +8 -0
- data/lib/xmpp4r/discovery/helper/helper.rb +58 -0
- data/lib/xmpp4r/discovery/helper/responder.rb +165 -0
- data/lib/xmpp4r/discovery/iq/discoinfo.rb +211 -0
- data/lib/xmpp4r/discovery/iq/discoitems.rb +147 -0
- data/lib/xmpp4r/entity_time.rb +6 -0
- data/lib/xmpp4r/entity_time/iq.rb +45 -0
- data/lib/xmpp4r/entity_time/responder.rb +57 -0
- data/lib/xmpp4r/errors.rb +284 -0
- data/lib/xmpp4r/feature_negotiation.rb +5 -0
- data/lib/xmpp4r/feature_negotiation/iq/feature.rb +28 -0
- data/lib/xmpp4r/framework/base.rb +55 -0
- data/lib/xmpp4r/framework/bot.rb +148 -0
- data/lib/xmpp4r/httpbinding.rb +5 -0
- data/lib/xmpp4r/httpbinding/client.rb +275 -0
- data/lib/xmpp4r/idgenerator.rb +37 -0
- data/lib/xmpp4r/iq.rb +221 -0
- data/lib/xmpp4r/jid.rb +167 -0
- data/lib/xmpp4r/last.rb +2 -0
- data/lib/xmpp4r/last/helper/helper.rb +37 -0
- data/lib/xmpp4r/last/iq/last.rb +67 -0
- data/lib/xmpp4r/location.rb +2 -0
- data/lib/xmpp4r/location/helper/helper.rb +56 -0
- data/lib/xmpp4r/location/location.rb +179 -0
- data/lib/xmpp4r/message.rb +226 -0
- data/lib/xmpp4r/muc.rb +14 -0
- data/lib/xmpp4r/muc/helper/mucbrowser.rb +92 -0
- data/lib/xmpp4r/muc/helper/mucclient.rb +469 -0
- data/lib/xmpp4r/muc/helper/simplemucclient.rb +332 -0
- data/lib/xmpp4r/muc/iq/mucadmin.rb +23 -0
- data/lib/xmpp4r/muc/iq/mucadminitem.rb +20 -0
- data/lib/xmpp4r/muc/iq/mucowner.rb +15 -0
- data/lib/xmpp4r/muc/item.rb +143 -0
- data/lib/xmpp4r/muc/x/muc.rb +70 -0
- data/lib/xmpp4r/muc/x/mucuserinvite.rb +60 -0
- data/lib/xmpp4r/muc/x/mucuseritem.rb +36 -0
- data/lib/xmpp4r/presence.rb +232 -0
- data/lib/xmpp4r/pubsub.rb +8 -0
- data/lib/xmpp4r/pubsub/children/configuration.rb +86 -0
- data/lib/xmpp4r/pubsub/children/event.rb +49 -0
- data/lib/xmpp4r/pubsub/children/item.rb +35 -0
- data/lib/xmpp4r/pubsub/children/items.rb +53 -0
- data/lib/xmpp4r/pubsub/children/node_config.rb +48 -0
- data/lib/xmpp4r/pubsub/children/publish.rb +38 -0
- data/lib/xmpp4r/pubsub/children/retract.rb +41 -0
- data/lib/xmpp4r/pubsub/children/subscription.rb +62 -0
- data/lib/xmpp4r/pubsub/children/subscription_config.rb +67 -0
- data/lib/xmpp4r/pubsub/children/unsubscribe.rb +63 -0
- data/lib/xmpp4r/pubsub/helper/nodebrowser.rb +129 -0
- data/lib/xmpp4r/pubsub/helper/nodehelper.rb +156 -0
- data/lib/xmpp4r/pubsub/helper/oauth_service_helper.rb +90 -0
- data/lib/xmpp4r/pubsub/helper/servicehelper.rb +490 -0
- data/lib/xmpp4r/pubsub/iq/pubsub.rb +19 -0
- data/lib/xmpp4r/query.rb +15 -0
- data/lib/xmpp4r/reliable.rb +168 -0
- data/lib/xmpp4r/rexmladdons.rb +197 -0
- data/lib/xmpp4r/roster.rb +7 -0
- data/lib/xmpp4r/roster/helper/roster.rb +532 -0
- data/lib/xmpp4r/roster/iq/roster.rb +215 -0
- data/lib/xmpp4r/roster/x/roster.rb +138 -0
- data/lib/xmpp4r/rpc.rb +2 -0
- data/lib/xmpp4r/rpc/helper/client.rb +123 -0
- data/lib/xmpp4r/rpc/helper/server.rb +74 -0
- data/lib/xmpp4r/rpc/helper/xmlrpcaddons.rb +67 -0
- data/lib/xmpp4r/rpc/iq/rpc.rb +23 -0
- data/lib/xmpp4r/sasl.rb +259 -0
- data/lib/xmpp4r/semaphore.rb +38 -0
- data/lib/xmpp4r/stream.rb +611 -0
- data/lib/xmpp4r/streamparser.rb +66 -0
- data/lib/xmpp4r/test/listener_mocker.rb +118 -0
- data/lib/xmpp4r/tune.rb +2 -0
- data/lib/xmpp4r/tune/helper/helper.rb +58 -0
- data/lib/xmpp4r/tune/tune.rb +113 -0
- data/lib/xmpp4r/vcard.rb +6 -0
- data/lib/xmpp4r/vcard/helper/vcard.rb +84 -0
- data/lib/xmpp4r/vcard/iq/vcard.rb +109 -0
- data/lib/xmpp4r/version.rb +7 -0
- data/lib/xmpp4r/version/helper/responder.rb +72 -0
- data/lib/xmpp4r/version/helper/simpleresponder.rb +44 -0
- data/lib/xmpp4r/version/iq/version.rb +105 -0
- data/lib/xmpp4r/x.rb +37 -0
- data/lib/xmpp4r/xhtml.rb +1 -0
- data/lib/xmpp4r/xhtml/html.rb +115 -0
- data/lib/xmpp4r/xmpp4r.rb +20 -0
- data/lib/xmpp4r/xmppelement.rb +168 -0
- data/lib/xmpp4r/xmppstanza.rb +162 -0
- data/setup.rb +1586 -0
- data/test/bytestreams/tc_ibb.rb +188 -0
- data/test/bytestreams/tc_socks5bytestreams.rb +114 -0
- data/test/caps/tc_helper.rb +158 -0
- data/test/dataforms/tc_data.rb +81 -0
- data/test/delay/tc_xdelay.rb +51 -0
- data/test/discovery/tc_responder.rb +91 -0
- data/test/entity_time/tc_responder.rb +65 -0
- data/test/last/tc_helper.rb +75 -0
- data/test/lib/assert_equal_xml.rb +14 -0
- data/test/lib/clienttester.rb +149 -0
- data/test/muc/tc_muc_mucclient.rb +834 -0
- data/test/muc/tc_muc_simplemucclient.rb +114 -0
- data/test/muc/tc_mucowner.rb +50 -0
- data/test/pubsub/tc_helper.rb +785 -0
- data/test/pubsub/tc_nodeconfig.rb +61 -0
- data/test/pubsub/tc_subscriptionconfig.rb +41 -0
- data/test/roster/tc_helper.rb +523 -0
- data/test/roster/tc_iqqueryroster.rb +173 -0
- data/test/roster/tc_xroster.rb +73 -0
- data/test/rpc/tc_helper.rb +96 -0
- data/test/tc_callbacks.rb +129 -0
- data/test/tc_class_names.rb +146 -0
- data/test/tc_client.rb +30 -0
- data/test/tc_errors.rb +146 -0
- data/test/tc_idgenerator.rb +30 -0
- data/test/tc_iq.rb +113 -0
- data/test/tc_iqquery.rb +31 -0
- data/test/tc_jid.rb +204 -0
- data/test/tc_presence.rb +150 -0
- data/test/tc_rexml.rb +139 -0
- data/test/tc_stream.rb +193 -0
- data/test/tc_streamComponent.rb +105 -0
- data/test/tc_streamError.rb +129 -0
- data/test/tc_streamSend.rb +59 -0
- data/test/tc_streamparser.rb +137 -0
- data/test/tc_xmppstanza.rb +135 -0
- data/test/ts_xmpp4r.rb +44 -0
- data/test/tune/tc_helper_recv.rb +82 -0
- data/test/tune/tc_helper_send.rb +74 -0
- data/test/tune/tc_tune.rb +79 -0
- data/test/vcard/tc_helper.rb +49 -0
- data/test/vcard/tc_iqvcard.rb +62 -0
- data/test/version/tc_helper.rb +60 -0
- data/test/version/tc_iqqueryversion.rb +97 -0
- data/test/xhtml/tc_html.rb +41 -0
- data/tools/gen_requires.bash +31 -0
- data/tools/xmpp4r-gemspec-test.rb +11 -0
- data/xmpp4r.gemspec +249 -0
- metadata +299 -0
@@ -0,0 +1,49 @@
|
|
1
|
+
# =XMPP4R - XMPP Library for Ruby
|
2
|
+
# License:: Ruby's license (see the LICENSE file) or GNU GPL, at your option.
|
3
|
+
# Website::http://home.gna.org/xmpp4r/
|
4
|
+
|
5
|
+
require 'xmpp4r/iq'
|
6
|
+
|
7
|
+
module Jabber
|
8
|
+
module PubSub
|
9
|
+
|
10
|
+
##
|
11
|
+
# Event
|
12
|
+
# a publishing event
|
13
|
+
class Event < XMPPElement
|
14
|
+
name_xmlns 'event', NS_PUBSUB + '#event'
|
15
|
+
force_xmlns true
|
16
|
+
|
17
|
+
##
|
18
|
+
# return payload
|
19
|
+
def payload
|
20
|
+
elements
|
21
|
+
end
|
22
|
+
|
23
|
+
##
|
24
|
+
# add payload
|
25
|
+
# payload:: [REXML::Element]
|
26
|
+
def payload=(pl)
|
27
|
+
add_element = pl
|
28
|
+
end
|
29
|
+
|
30
|
+
##
|
31
|
+
# return the payload type
|
32
|
+
def event_type?
|
33
|
+
# each child of event
|
34
|
+
# this should iterate only one time
|
35
|
+
each_element('./event/*') { |plelement|
|
36
|
+
case plelement.name
|
37
|
+
when 'collection' then return :collection
|
38
|
+
when 'configuration' then return :configuration
|
39
|
+
when 'delete' then return :delete
|
40
|
+
when 'items' then return :items
|
41
|
+
when 'purge' then return :purge
|
42
|
+
when 'subscription' then return :subscription
|
43
|
+
else return nil
|
44
|
+
end
|
45
|
+
}
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|
@@ -0,0 +1,35 @@
|
|
1
|
+
# =XMPP4R - XMPP Library for Ruby
|
2
|
+
# License:: Ruby's license (see the LICENSE file) or GNU GPL, at your option.
|
3
|
+
# Website::http://home.gna.org/xmpp4r/
|
4
|
+
|
5
|
+
require 'xmpp4r/iq'
|
6
|
+
|
7
|
+
module Jabber
|
8
|
+
module PubSub
|
9
|
+
##
|
10
|
+
# Item
|
11
|
+
# One PubSub Item
|
12
|
+
class Item < XMPPElement
|
13
|
+
name_xmlns 'item', NS_PUBSUB
|
14
|
+
def initialize(id=nil)
|
15
|
+
super()
|
16
|
+
attributes['id'] = id
|
17
|
+
end
|
18
|
+
def id
|
19
|
+
attributes['id']
|
20
|
+
end
|
21
|
+
def id=(myid)
|
22
|
+
attributes['id'] = myid
|
23
|
+
end
|
24
|
+
end
|
25
|
+
|
26
|
+
##
|
27
|
+
# An Item wrapped in a Pubsub Event.
|
28
|
+
#
|
29
|
+
# See example 2 in http://www.xmpp.org/extensions/xep-0060.html#intro-howitworks
|
30
|
+
# and http://www.xmpp.org/extensions/xep-0060.html#schemas-event
|
31
|
+
class EventItem < Item
|
32
|
+
name_xmlns 'item', NS_PUBSUB + "#event"
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
@@ -0,0 +1,53 @@
|
|
1
|
+
# =XMPP4R - XMPP Library for Ruby
|
2
|
+
# License:: Ruby's license (see the LICENSE file) or GNU GPL, at your option.
|
3
|
+
# Website::http://home.gna.org/xmpp4r/
|
4
|
+
|
5
|
+
require 'xmpp4r/iq'
|
6
|
+
|
7
|
+
module Jabber
|
8
|
+
module PubSub
|
9
|
+
##
|
10
|
+
# Items
|
11
|
+
# a collection of Items
|
12
|
+
class Items < XMPPElement
|
13
|
+
include Enumerable
|
14
|
+
name_xmlns 'items', NS_PUBSUB
|
15
|
+
|
16
|
+
def node
|
17
|
+
attributes['node']
|
18
|
+
end
|
19
|
+
def node=(mynodename)
|
20
|
+
attributes['node'] = mynodename
|
21
|
+
end
|
22
|
+
def subid
|
23
|
+
attributes['subid']
|
24
|
+
end
|
25
|
+
def subid=(mysubid)
|
26
|
+
attributes['subid'] = mysubid.to_s
|
27
|
+
end
|
28
|
+
def max_items
|
29
|
+
attributes['max_items']
|
30
|
+
end
|
31
|
+
def max_items=(mymaxitems)
|
32
|
+
attributes['max_items'] = mymaxitems.to_s
|
33
|
+
end
|
34
|
+
|
35
|
+
def items
|
36
|
+
get_elements("item")
|
37
|
+
end
|
38
|
+
|
39
|
+
def each(&block)
|
40
|
+
items.each(&block)
|
41
|
+
end
|
42
|
+
end
|
43
|
+
|
44
|
+
##
|
45
|
+
# Items wrapped in a Pubsub Event.
|
46
|
+
#
|
47
|
+
# See example 2 in http://www.xmpp.org/extensions/xep-0060.html#intro-howitworks
|
48
|
+
# and http://www.xmpp.org/extensions/xep-0060.html#schemas-event
|
49
|
+
class EventItems < Items
|
50
|
+
name_xmlns 'items', NS_PUBSUB + "#event"
|
51
|
+
end
|
52
|
+
end
|
53
|
+
end
|
@@ -0,0 +1,48 @@
|
|
1
|
+
# =XMPP4R - XMPP Library for Ruby
|
2
|
+
# License:: Ruby's license (see the LICENSE file) or GNU GPL, at your option.
|
3
|
+
# Website::http://home.gna.org/xmpp4r/
|
4
|
+
|
5
|
+
require 'xmpp4r/xmppelement'
|
6
|
+
require 'xmpp4r/pubsub/children/configuration'
|
7
|
+
|
8
|
+
module Jabber
|
9
|
+
module PubSub
|
10
|
+
##
|
11
|
+
# NodeConfig
|
12
|
+
#
|
13
|
+
# A <configure> XMPP element for pubsub nodes, see example 123 in
|
14
|
+
# http://www.xmpp.org/extensions/xep-0060.html#owner-create-and-configure
|
15
|
+
class NodeConfig < Configuration
|
16
|
+
name_xmlns 'configure', NS_PUBSUB
|
17
|
+
|
18
|
+
##
|
19
|
+
# Construct a <configure> element.
|
20
|
+
# node:: [String] the node to configure
|
21
|
+
# options:: [Hash] the configuration to apply
|
22
|
+
def initialize(node = nil, options = nil)
|
23
|
+
super()
|
24
|
+
|
25
|
+
self.node = node
|
26
|
+
self.options = options
|
27
|
+
end
|
28
|
+
|
29
|
+
private
|
30
|
+
|
31
|
+
def form_type
|
32
|
+
'http://jabber.org/protocol/pubsub#node_config'
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
36
|
+
##
|
37
|
+
#
|
38
|
+
# OwnerNodeConfig
|
39
|
+
#
|
40
|
+
# A <configure> stanza for 'Owner' use cases
|
41
|
+
#
|
42
|
+
# see example 125 in
|
43
|
+
# http://www.xmpp.org/extensions/xep-0060.html#owner-configure-request
|
44
|
+
class OwnerNodeConfig < NodeConfig
|
45
|
+
name_xmlns 'configure', NS_PUBSUB + '#owner'
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|
@@ -0,0 +1,38 @@
|
|
1
|
+
# =XMPP4R - XMPP Library for Ruby
|
2
|
+
# License:: Ruby's license (see the LICENSE file) or GNU GPL, at your option.
|
3
|
+
# Website::http://home.gna.org/xmpp4r/
|
4
|
+
|
5
|
+
require 'xmpp4r/xmppelement'
|
6
|
+
|
7
|
+
module Jabber
|
8
|
+
module PubSub
|
9
|
+
|
10
|
+
##
|
11
|
+
# Publish
|
12
|
+
#
|
13
|
+
# A <publish> XMPP element, see example 1 in
|
14
|
+
# http://www.xmpp.org/extensions/xep-0060.html#intro-howitworks
|
15
|
+
class Publish < XMPPElement
|
16
|
+
include Enumerable
|
17
|
+
name_xmlns 'publish', NS_PUBSUB
|
18
|
+
|
19
|
+
##
|
20
|
+
# support for enumerating <item> elements
|
21
|
+
def each(&block)
|
22
|
+
items.each(&block)
|
23
|
+
end
|
24
|
+
|
25
|
+
##
|
26
|
+
# return child <item> elements
|
27
|
+
def items
|
28
|
+
get_elements("item")
|
29
|
+
end
|
30
|
+
|
31
|
+
##
|
32
|
+
# return the node for this publication
|
33
|
+
def node
|
34
|
+
attributes['node']
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
@@ -0,0 +1,41 @@
|
|
1
|
+
# =XMPP4R - XMPP Library for Ruby
|
2
|
+
# License:: Ruby's license (see the LICENSE file) or GNU GPL, at your option.
|
3
|
+
# Website::http://home.gna.org/xmpp4r/
|
4
|
+
|
5
|
+
require 'xmpp4r/xmppelement'
|
6
|
+
|
7
|
+
module Jabber
|
8
|
+
module PubSub
|
9
|
+
|
10
|
+
##
|
11
|
+
# Retract
|
12
|
+
#
|
13
|
+
# A <retract> XMPP element, see example 103 in
|
14
|
+
# http://xmpp.org/extensions/xep-0060.html#publisher-delete
|
15
|
+
class Retract < XMPPElement
|
16
|
+
name_xmlns 'retract', NS_PUBSUB
|
17
|
+
##
|
18
|
+
# get the node for this retraction
|
19
|
+
def node
|
20
|
+
attributes['node']
|
21
|
+
end
|
22
|
+
|
23
|
+
##
|
24
|
+
# set the node for this retraction
|
25
|
+
def node=(s)
|
26
|
+
attributes['node'] = s
|
27
|
+
end
|
28
|
+
|
29
|
+
##
|
30
|
+
# Get <item/> children
|
31
|
+
def items
|
32
|
+
res = []
|
33
|
+
each_element('item') { |item|
|
34
|
+
res << item
|
35
|
+
}
|
36
|
+
res
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end
|
40
|
+
end
|
41
|
+
|
@@ -0,0 +1,62 @@
|
|
1
|
+
# =XMPP4R - XMPP Library for Ruby
|
2
|
+
# License:: Ruby's license (see the LICENSE file) or GNU GPL, at your option.
|
3
|
+
# Website::http://home.gna.org/xmpp4r/
|
4
|
+
|
5
|
+
require 'xmpp4r/iq'
|
6
|
+
|
7
|
+
module Jabber
|
8
|
+
module PubSub
|
9
|
+
##
|
10
|
+
# Subscription
|
11
|
+
class Subscription < XMPPElement
|
12
|
+
name_xmlns 'subscription', NS_PUBSUB
|
13
|
+
def initialize(myjid=nil,mynode=nil,mysubid=nil,mysubscription=nil)
|
14
|
+
super()
|
15
|
+
jid = myjid
|
16
|
+
node = mynode
|
17
|
+
subid = mysubid
|
18
|
+
state = mysubscription
|
19
|
+
end
|
20
|
+
def jid
|
21
|
+
(a = attribute('jid')).nil? ? a : JID.new(a.value)
|
22
|
+
end
|
23
|
+
def jid=(myjid)
|
24
|
+
add_attribute('jid', myjid ? myjid.to_s : nil)
|
25
|
+
end
|
26
|
+
|
27
|
+
def node
|
28
|
+
attributes['node']
|
29
|
+
end
|
30
|
+
def node=(mynode)
|
31
|
+
attributes['node'] = mynode
|
32
|
+
end
|
33
|
+
|
34
|
+
def subid
|
35
|
+
attributes['subid']
|
36
|
+
end
|
37
|
+
def subid=(mysubid)
|
38
|
+
attributes['subid'] = mysubid
|
39
|
+
end
|
40
|
+
|
41
|
+
def state
|
42
|
+
# each child of event
|
43
|
+
# this should interate only one time
|
44
|
+
case attributes['subscription']
|
45
|
+
when 'none' then return :none
|
46
|
+
when 'pending' then return :pending
|
47
|
+
when 'subscribed' then return :subscribed
|
48
|
+
when 'unconfigured' then return :unconfigured
|
49
|
+
else return nil
|
50
|
+
end
|
51
|
+
end
|
52
|
+
def state=(mystate)
|
53
|
+
attributes['subscription'] = mystate
|
54
|
+
end
|
55
|
+
alias subscription state
|
56
|
+
|
57
|
+
def need_approval?
|
58
|
+
state == :pending
|
59
|
+
end
|
60
|
+
end
|
61
|
+
end
|
62
|
+
end
|
@@ -0,0 +1,67 @@
|
|
1
|
+
# =XMPP4R - XMPP Library for Ruby
|
2
|
+
# License:: Ruby's license (see the LICENSE file) or GNU GPL, at your option.
|
3
|
+
# Website::http://home.gna.org/xmpp4r/
|
4
|
+
|
5
|
+
require 'xmpp4r/xmppelement'
|
6
|
+
require 'xmpp4r/pubsub/children/configuration'
|
7
|
+
require 'xmpp4r/pubsub/iq/pubsub'
|
8
|
+
|
9
|
+
module Jabber
|
10
|
+
module PubSub
|
11
|
+
##
|
12
|
+
# SubscriptionConfig
|
13
|
+
#
|
14
|
+
# An <options> XMPP element, see example 57 in
|
15
|
+
# http://www.xmpp.org/extensions/xep-0060.html#subscriber-configure-success
|
16
|
+
class SubscriptionConfig < Configuration
|
17
|
+
name_xmlns 'options', NS_PUBSUB
|
18
|
+
|
19
|
+
##
|
20
|
+
# Construct a new Options stanza
|
21
|
+
# node:: [String] the node to which this subscription applies
|
22
|
+
# jid:: [String] or [Jabber::JID] the jid that holds the subscription
|
23
|
+
# options:: [Hash] the configuration for this subscription
|
24
|
+
# subid:: [String] (optional) subscription id
|
25
|
+
def initialize(node = nil, jid = nil, options = nil, subid = nil)
|
26
|
+
super()
|
27
|
+
|
28
|
+
self.node = node
|
29
|
+
self.jid = jid
|
30
|
+
self.options = options
|
31
|
+
self.subid = subid
|
32
|
+
end
|
33
|
+
|
34
|
+
##
|
35
|
+
# set the 'jid' attribute of this stanza
|
36
|
+
# jid:: [Jabber::JID] or [String] the jid owning the subscription
|
37
|
+
def jid=(jid)
|
38
|
+
attributes['jid'] = jid.to_s
|
39
|
+
end
|
40
|
+
|
41
|
+
##
|
42
|
+
# get the 'jid' attribute for this stanza
|
43
|
+
def jid
|
44
|
+
attributes['jid'] ? Jabber::JID.new(attributes['jid']) : nil
|
45
|
+
end
|
46
|
+
|
47
|
+
##
|
48
|
+
# set the 'subid' attribute
|
49
|
+
# subid:: [String] the subscription id
|
50
|
+
def subid=(subid)
|
51
|
+
attributes['subid'] = subid
|
52
|
+
end
|
53
|
+
|
54
|
+
##
|
55
|
+
# get the 'subid' attribute
|
56
|
+
def subid
|
57
|
+
attributes['subid']
|
58
|
+
end
|
59
|
+
|
60
|
+
private
|
61
|
+
|
62
|
+
def form_type
|
63
|
+
'http://jabber.org/protocol/pubsub#subscribe_options'
|
64
|
+
end
|
65
|
+
end
|
66
|
+
end
|
67
|
+
end
|
@@ -0,0 +1,63 @@
|
|
1
|
+
# =XMPP4R - XMPP Library for Ruby
|
2
|
+
# License:: Ruby's license (see the LICENSE file) or GNU GPL, at your option.
|
3
|
+
# Website::http://home.gna.org/xmpp4r/
|
4
|
+
|
5
|
+
require 'xmpp4r/iq'
|
6
|
+
|
7
|
+
module Jabber
|
8
|
+
module PubSub
|
9
|
+
##
|
10
|
+
# Unsubscribe
|
11
|
+
class Unsubscribe < XMPPElement
|
12
|
+
name_xmlns 'unsubscribe'
|
13
|
+
def initialize(myjid=nil,mynode=nil,mysubid=nil)
|
14
|
+
super()
|
15
|
+
jid = myjid
|
16
|
+
node = mynode
|
17
|
+
subid = mysubid
|
18
|
+
end
|
19
|
+
|
20
|
+
##
|
21
|
+
# shows the jid
|
22
|
+
# return:: [String]
|
23
|
+
def jid
|
24
|
+
(a = attribute('jid')).nil? ? a : JID.new(a.value)
|
25
|
+
end
|
26
|
+
|
27
|
+
##
|
28
|
+
# sets the jid
|
29
|
+
# =:: [Jabber::JID] or [String]
|
30
|
+
def jid=(myjid)
|
31
|
+
add_attribute('jid', myjid ? myjid.to_s : nil)
|
32
|
+
end
|
33
|
+
|
34
|
+
##
|
35
|
+
# shows the node
|
36
|
+
# return:: [String]
|
37
|
+
def node
|
38
|
+
attributes['node']
|
39
|
+
end
|
40
|
+
|
41
|
+
##
|
42
|
+
# sets the node
|
43
|
+
# =:: [String]
|
44
|
+
def node=(mynode)
|
45
|
+
attributes['node'] = mynode
|
46
|
+
end
|
47
|
+
|
48
|
+
##
|
49
|
+
# shows the subid
|
50
|
+
# return:: [String]
|
51
|
+
def subid
|
52
|
+
attributes['subid']
|
53
|
+
end
|
54
|
+
|
55
|
+
##
|
56
|
+
# sets the subid
|
57
|
+
# =:: [String]
|
58
|
+
def subid=(mysubid)
|
59
|
+
attributes['subid'] = mysubid
|
60
|
+
end
|
61
|
+
end
|
62
|
+
end
|
63
|
+
end
|