mojodna-xmpp4r 0.4.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (208) hide show
  1. data/CHANGELOG +83 -0
  2. data/COPYING +340 -0
  3. data/LICENSE +59 -0
  4. data/README.rdoc +133 -0
  5. data/README_ruby19.txt +43 -0
  6. data/Rakefile +252 -0
  7. data/data/doc/xmpp4r/examples/advanced/adventure/README +56 -0
  8. data/data/doc/xmpp4r/examples/advanced/adventure/adventure.rb +23 -0
  9. data/data/doc/xmpp4r/examples/advanced/adventure/adventuremuc.rb +136 -0
  10. data/data/doc/xmpp4r/examples/advanced/adventure/cube.xml +15 -0
  11. data/data/doc/xmpp4r/examples/advanced/adventure/tower.xml +69 -0
  12. data/data/doc/xmpp4r/examples/advanced/adventure/world.rb +424 -0
  13. data/data/doc/xmpp4r/examples/advanced/fileserve.conf +11 -0
  14. data/data/doc/xmpp4r/examples/advanced/fileserve.rb +346 -0
  15. data/data/doc/xmpp4r/examples/advanced/getonline.rb +56 -0
  16. data/data/doc/xmpp4r/examples/advanced/gtkmucclient.rb +315 -0
  17. data/data/doc/xmpp4r/examples/advanced/migrate.rb +88 -0
  18. data/data/doc/xmpp4r/examples/advanced/minimuc.rb +266 -0
  19. data/data/doc/xmpp4r/examples/advanced/pep-aggregator/index.xsl +235 -0
  20. data/data/doc/xmpp4r/examples/advanced/pep-aggregator/pep-aggregator.rb +147 -0
  21. data/data/doc/xmpp4r/examples/advanced/recvfile.rb +84 -0
  22. data/data/doc/xmpp4r/examples/advanced/rosterdiscovery.rb +129 -0
  23. data/data/doc/xmpp4r/examples/advanced/sendfile.conf +10 -0
  24. data/data/doc/xmpp4r/examples/advanced/sendfile.rb +72 -0
  25. data/data/doc/xmpp4r/examples/advanced/shellmgr/shellmgr.rb +51 -0
  26. data/data/doc/xmpp4r/examples/advanced/shellmgr/shellmgr_jabber.rb +43 -0
  27. data/data/doc/xmpp4r/examples/advanced/shellmgr/shellmgr_test.rb +10 -0
  28. data/data/doc/xmpp4r/examples/advanced/versionpoll.rb +109 -0
  29. data/data/doc/xmpp4r/examples/advanced/xmpping.rb +146 -0
  30. data/data/doc/xmpp4r/examples/advanced/xmppingrc.sample +14 -0
  31. data/data/doc/xmpp4r/examples/basic/change_password.rb +41 -0
  32. data/data/doc/xmpp4r/examples/basic/client.rb +70 -0
  33. data/data/doc/xmpp4r/examples/basic/component.rb +11 -0
  34. data/data/doc/xmpp4r/examples/basic/echo.rb +37 -0
  35. data/data/doc/xmpp4r/examples/basic/jabbersend.rb +41 -0
  36. data/data/doc/xmpp4r/examples/basic/mass_sender.rb +68 -0
  37. data/data/doc/xmpp4r/examples/basic/muc_owner_config.rb +12 -0
  38. data/data/doc/xmpp4r/examples/basic/mucinfo.rb +41 -0
  39. data/data/doc/xmpp4r/examples/basic/mucsimplebot.rb +82 -0
  40. data/data/doc/xmpp4r/examples/basic/register.rb +42 -0
  41. data/data/doc/xmpp4r/examples/basic/remove_registration.rb +18 -0
  42. data/data/doc/xmpp4r/examples/basic/roster.rb +44 -0
  43. data/data/doc/xmpp4r/examples/basic/rosterprint.rb +50 -0
  44. data/data/doc/xmpp4r/examples/basic/rosterrename.rb +34 -0
  45. data/data/doc/xmpp4r/examples/basic/rosterwatch.rb +171 -0
  46. data/data/doc/xmpp4r/examples/basic/send_vcard.rb +67 -0
  47. data/data/doc/xmpp4r/examples/basic/tune_client.rb +56 -0
  48. data/data/doc/xmpp4r/examples/basic/tune_server.rb +58 -0
  49. data/data/doc/xmpp4r/examples/basic/versionbot.rb +75 -0
  50. data/lib/xmpp4r/base64.rb +32 -0
  51. data/lib/xmpp4r/bytestreams/helper/filetransfer.rb +319 -0
  52. data/lib/xmpp4r/bytestreams/helper/ibb/base.rb +257 -0
  53. data/lib/xmpp4r/bytestreams/helper/ibb/initiator.rb +31 -0
  54. data/lib/xmpp4r/bytestreams/helper/ibb/target.rb +47 -0
  55. data/lib/xmpp4r/bytestreams/helper/socks5bytestreams/base.rb +152 -0
  56. data/lib/xmpp4r/bytestreams/helper/socks5bytestreams/initiator.rb +86 -0
  57. data/lib/xmpp4r/bytestreams/helper/socks5bytestreams/server.rb +198 -0
  58. data/lib/xmpp4r/bytestreams/helper/socks5bytestreams/socks5.rb +65 -0
  59. data/lib/xmpp4r/bytestreams/helper/socks5bytestreams/target.rb +73 -0
  60. data/lib/xmpp4r/bytestreams/iq/bytestreams.rb +170 -0
  61. data/lib/xmpp4r/bytestreams/iq/si.rb +206 -0
  62. data/lib/xmpp4r/bytestreams.rb +15 -0
  63. data/lib/xmpp4r/callbacks.rb +133 -0
  64. data/lib/xmpp4r/caps/c.rb +67 -0
  65. data/lib/xmpp4r/caps/helper/generator.rb +160 -0
  66. data/lib/xmpp4r/caps/helper/helper.rb +87 -0
  67. data/lib/xmpp4r/caps.rb +1 -0
  68. data/lib/xmpp4r/client.rb +344 -0
  69. data/lib/xmpp4r/command/helper/responder.rb +53 -0
  70. data/lib/xmpp4r/command/iq/command.rb +154 -0
  71. data/lib/xmpp4r/component.rb +103 -0
  72. data/lib/xmpp4r/connection.rb +219 -0
  73. data/lib/xmpp4r/dataforms/x/data.rb +297 -0
  74. data/lib/xmpp4r/dataforms.rb +5 -0
  75. data/lib/xmpp4r/debuglog.rb +42 -0
  76. data/lib/xmpp4r/delay/x/delay.rb +99 -0
  77. data/lib/xmpp4r/delay.rb +5 -0
  78. data/lib/xmpp4r/discovery/helper/helper.rb +58 -0
  79. data/lib/xmpp4r/discovery/helper/responder.rb +165 -0
  80. data/lib/xmpp4r/discovery/iq/discoinfo.rb +211 -0
  81. data/lib/xmpp4r/discovery/iq/discoitems.rb +147 -0
  82. data/lib/xmpp4r/discovery.rb +8 -0
  83. data/lib/xmpp4r/errors.rb +283 -0
  84. data/lib/xmpp4r/feature_negotiation/iq/feature.rb +28 -0
  85. data/lib/xmpp4r/feature_negotiation.rb +5 -0
  86. data/lib/xmpp4r/framework/base.rb +55 -0
  87. data/lib/xmpp4r/framework/bot.rb +148 -0
  88. data/lib/xmpp4r/httpbinding/client.rb +275 -0
  89. data/lib/xmpp4r/httpbinding.rb +5 -0
  90. data/lib/xmpp4r/idgenerator.rb +37 -0
  91. data/lib/xmpp4r/iq.rb +221 -0
  92. data/lib/xmpp4r/jid.rb +167 -0
  93. data/lib/xmpp4r/last/helper/helper.rb +37 -0
  94. data/lib/xmpp4r/last/iq/last.rb +67 -0
  95. data/lib/xmpp4r/last.rb +2 -0
  96. data/lib/xmpp4r/location/helper/helper.rb +56 -0
  97. data/lib/xmpp4r/location/location.rb +179 -0
  98. data/lib/xmpp4r/location.rb +2 -0
  99. data/lib/xmpp4r/message.rb +181 -0
  100. data/lib/xmpp4r/muc/helper/mucbrowser.rb +92 -0
  101. data/lib/xmpp4r/muc/helper/mucclient.rb +462 -0
  102. data/lib/xmpp4r/muc/helper/simplemucclient.rb +332 -0
  103. data/lib/xmpp4r/muc/iq/mucadmin.rb +23 -0
  104. data/lib/xmpp4r/muc/iq/mucadminitem.rb +20 -0
  105. data/lib/xmpp4r/muc/iq/mucowner.rb +15 -0
  106. data/lib/xmpp4r/muc/item.rb +143 -0
  107. data/lib/xmpp4r/muc/x/muc.rb +70 -0
  108. data/lib/xmpp4r/muc/x/mucuserinvite.rb +60 -0
  109. data/lib/xmpp4r/muc/x/mucuseritem.rb +36 -0
  110. data/lib/xmpp4r/muc.rb +14 -0
  111. data/lib/xmpp4r/presence.rb +232 -0
  112. data/lib/xmpp4r/pubsub/children/configuration.rb +86 -0
  113. data/lib/xmpp4r/pubsub/children/event.rb +49 -0
  114. data/lib/xmpp4r/pubsub/children/item.rb +35 -0
  115. data/lib/xmpp4r/pubsub/children/items.rb +53 -0
  116. data/lib/xmpp4r/pubsub/children/node_config.rb +48 -0
  117. data/lib/xmpp4r/pubsub/children/publish.rb +38 -0
  118. data/lib/xmpp4r/pubsub/children/retract.rb +41 -0
  119. data/lib/xmpp4r/pubsub/children/subscription.rb +62 -0
  120. data/lib/xmpp4r/pubsub/children/subscription_config.rb +67 -0
  121. data/lib/xmpp4r/pubsub/children/unsubscribe.rb +48 -0
  122. data/lib/xmpp4r/pubsub/helper/nodebrowser.rb +130 -0
  123. data/lib/xmpp4r/pubsub/helper/nodehelper.rb +156 -0
  124. data/lib/xmpp4r/pubsub/helper/oauth_service_helper.rb +107 -0
  125. data/lib/xmpp4r/pubsub/helper/servicehelper.rb +456 -0
  126. data/lib/xmpp4r/pubsub/iq/pubsub.rb +19 -0
  127. data/lib/xmpp4r/pubsub.rb +8 -0
  128. data/lib/xmpp4r/query.rb +15 -0
  129. data/lib/xmpp4r/rexmladdons.rb +157 -0
  130. data/lib/xmpp4r/roster/helper/roster.rb +519 -0
  131. data/lib/xmpp4r/roster/iq/roster.rb +215 -0
  132. data/lib/xmpp4r/roster/x/roster.rb +138 -0
  133. data/lib/xmpp4r/roster.rb +7 -0
  134. data/lib/xmpp4r/rpc/helper/client.rb +123 -0
  135. data/lib/xmpp4r/rpc/helper/server.rb +74 -0
  136. data/lib/xmpp4r/rpc/helper/xmlrpcaddons.rb +67 -0
  137. data/lib/xmpp4r/rpc/iq/rpc.rb +23 -0
  138. data/lib/xmpp4r/rpc.rb +2 -0
  139. data/lib/xmpp4r/sasl.rb +243 -0
  140. data/lib/xmpp4r/semaphore.rb +38 -0
  141. data/lib/xmpp4r/stream.rb +531 -0
  142. data/lib/xmpp4r/streamparser.rb +81 -0
  143. data/lib/xmpp4r/tune/helper/helper.rb +58 -0
  144. data/lib/xmpp4r/tune/tune.rb +113 -0
  145. data/lib/xmpp4r/tune.rb +2 -0
  146. data/lib/xmpp4r/vcard/helper/vcard.rb +84 -0
  147. data/lib/xmpp4r/vcard/iq/vcard.rb +109 -0
  148. data/lib/xmpp4r/vcard.rb +6 -0
  149. data/lib/xmpp4r/version/helper/responder.rb +72 -0
  150. data/lib/xmpp4r/version/helper/simpleresponder.rb +44 -0
  151. data/lib/xmpp4r/version/iq/version.rb +105 -0
  152. data/lib/xmpp4r/version.rb +7 -0
  153. data/lib/xmpp4r/x.rb +37 -0
  154. data/lib/xmpp4r/xhtml/html.rb +115 -0
  155. data/lib/xmpp4r/xhtml.rb +1 -0
  156. data/lib/xmpp4r/xmpp4r.rb +18 -0
  157. data/lib/xmpp4r/xmppelement.rb +168 -0
  158. data/lib/xmpp4r/xmppstanza.rb +162 -0
  159. data/lib/xmpp4r.rb +116 -0
  160. data/setup.rb +1586 -0
  161. data/test/bytestreams/tc_ibb.rb +186 -0
  162. data/test/bytestreams/tc_socks5bytestreams.rb +113 -0
  163. data/test/caps/tc_helper.rb +156 -0
  164. data/test/dataforms/tc_data.rb +81 -0
  165. data/test/delay/tc_xdelay.rb +51 -0
  166. data/test/discovery/tc_responder.rb +91 -0
  167. data/test/lib/assert_equal_xml.rb +14 -0
  168. data/test/lib/clienttester.rb +120 -0
  169. data/test/muc/tc_muc_mucclient.rb +830 -0
  170. data/test/muc/tc_muc_simplemucclient.rb +114 -0
  171. data/test/muc/tc_mucowner.rb +50 -0
  172. data/test/pubsub/tc_helper.rb +722 -0
  173. data/test/pubsub/tc_nodeconfig.rb +54 -0
  174. data/test/pubsub/tc_subscriptionconfig.rb +41 -0
  175. data/test/roster/tc_helper.rb +514 -0
  176. data/test/roster/tc_iqqueryroster.rb +173 -0
  177. data/test/roster/tc_xroster.rb +73 -0
  178. data/test/rpc/tc_helper.rb +96 -0
  179. data/test/tc_callbacks.rb +129 -0
  180. data/test/tc_class_names.rb +146 -0
  181. data/test/tc_client.rb +30 -0
  182. data/test/tc_errors.rb +146 -0
  183. data/test/tc_idgenerator.rb +30 -0
  184. data/test/tc_iq.rb +113 -0
  185. data/test/tc_iqquery.rb +31 -0
  186. data/test/tc_jid.rb +204 -0
  187. data/test/tc_message.rb +132 -0
  188. data/test/tc_presence.rb +150 -0
  189. data/test/tc_rexml.rb +139 -0
  190. data/test/tc_stream.rb +229 -0
  191. data/test/tc_streamComponent.rb +95 -0
  192. data/test/tc_streamError.rb +131 -0
  193. data/test/tc_streamSend.rb +59 -0
  194. data/test/tc_streamparser.rb +120 -0
  195. data/test/tc_xmppstanza.rb +135 -0
  196. data/test/ts_xmpp4r.rb +53 -0
  197. data/test/tune/tc_helper_recv.rb +84 -0
  198. data/test/tune/tc_helper_send.rb +74 -0
  199. data/test/tune/tc_tune.rb +79 -0
  200. data/test/vcard/tc_helper.rb +49 -0
  201. data/test/vcard/tc_iqvcard.rb +62 -0
  202. data/test/version/tc_helper.rb +60 -0
  203. data/test/version/tc_iqqueryversion.rb +97 -0
  204. data/test/xhtml/tc_html.rb +41 -0
  205. data/tools/gen_requires.bash +31 -0
  206. data/tools/xmpp4r-gemspec-test.rb +11 -0
  207. data/xmpp4r.gemspec +304 -0
  208. metadata +346 -0
@@ -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,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/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)
14
+ super()
15
+ jid = myjid
16
+ node = mynode
17
+ end
18
+
19
+ ##
20
+ # shows the jid
21
+ # return:: [String]
22
+ def jid
23
+ (a = attribute('jid')).nil? ? a : JID.new(a.value)
24
+ end
25
+
26
+ ##
27
+ # sets the jid
28
+ # =:: [Jabber::JID] or [String]
29
+ def jid=(myjid)
30
+ add_attribute('jid', myjid ? myjid.to_s : nil)
31
+ end
32
+
33
+ ##
34
+ # shows the node
35
+ # return:: [String]
36
+ def node
37
+ attributes['node']
38
+ end
39
+
40
+ ##
41
+ # sets the node
42
+ # =:: [String]
43
+ def node=(mynode)
44
+ attributes['node'] = mynode
45
+ end
46
+ end
47
+ end
48
+ end
@@ -0,0 +1,130 @@
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/discovery'
6
+
7
+ module Jabber
8
+ module PubSub
9
+ class NodeBrowser
10
+ ##
11
+ # Initialize a new NodeBrowser
12
+ # new(stream,pubsubservice)
13
+ # stream:: [Jabber::Stream]
14
+ def initialize(stream)
15
+ @stream = stream
16
+ end
17
+
18
+ ##
19
+ # Retrieve the nodes
20
+ # Throws an ServerError when receiving
21
+ # <tt><iq type='error'/></tt>
22
+ # jid:: [JID] Target entity (set only domain!)
23
+ # return:: [Array] of [String] or [nil]
24
+ def nodes(jid)
25
+ iq = Iq.new(:get,jid)
26
+ iq.from = @stream.jid
27
+ iq.add(Discovery::IqQueryDiscoItems.new)
28
+ nodes = []
29
+ @stream.send_with_id(iq) do |answer|
30
+ answer.query.each_element('item') { |item|
31
+ nodes.push(item.node)
32
+ }
33
+ end
34
+ nodes
35
+ end
36
+
37
+ ##
38
+ # Retrieve the nodes with names
39
+ # Throws a ServerError when receiving
40
+ # <tt><iq type='error'/></tt>
41
+ # jid:: [Jabber::JID] Target entity (set only domain!)
42
+ # return:: [Array] of [Hash] with keys 'node' => [String] and 'name' => [String] or [nil]
43
+ def nodes_names(jid)
44
+ iq = Iq.new(:get,jid)
45
+ iq.from = @stream.jid
46
+ iq.add(Discovery::IqQueryDiscoItems.new)
47
+ nodes = []
48
+ @stream.send_with_id(iq) do |answer|
49
+ answer.query.each_element('item') do |item|
50
+ nodes.push( {'node' => item.node,'name' => item.iname } )
51
+ end
52
+ end
53
+ nodes
54
+ end
55
+
56
+
57
+ ##
58
+ # Retrieve the items from a node
59
+ # Throws an ServerError when receiving
60
+ # <tt><iq type='error'/></tt>
61
+ # jid:: [Jabber::JID] Target entity (set only domain!)
62
+ # node:: [String]
63
+ # return:: [Array] of [Hash] with keys 'name' => [String] and 'jid' => [Jabber::JID]
64
+ def items(jid,node)
65
+ iq = Iq.new(:get,jid)
66
+ iq.from = @stream.jid
67
+ discoitems = Discovery::IqQueryDiscoItems.new
68
+ discoitems.node = node
69
+ iq.add(discoitems)
70
+ items = []
71
+ err = nil
72
+ @stream.send_with_id(iq) do |answer|
73
+ answer.query.each_element('item') { |item|
74
+ items.push( {'jid' => item.jid,'name' => item.iname } )
75
+ }
76
+ end
77
+ items
78
+ end
79
+
80
+ ##
81
+ # get disco info for a node
82
+ # jid:: [Jabber::JID]
83
+ # node:: [String]
84
+ # return:: [Hash] with possible keys type:: [String] ,category:: [String],features:: [Array] of feature, nodeinformation:: [Jabber::XData]
85
+ # check http://www.xmpp.org/extensions/xep-0060.html#entity for more infos
86
+ def get_info(jid,node)
87
+ iq = Iq.new(:get,jid)
88
+ iq.from = @stream.jid
89
+ discoinfo = Discovery::IqQueryDiscoInfo.new
90
+ discoinfo.node = node
91
+ iq.add(discoinfo)
92
+ info = {}
93
+ @stream.send_with_id(iq) do |answer|
94
+ identity = answer.query.identity
95
+ info['type'] = identity.type
96
+ info['category'] = identity.category
97
+ info['features'] = answer.query.features
98
+
99
+ answer.query.each_element('x') { |x|
100
+ info['nodeinformation'] = x
101
+ }
102
+ end
103
+ info
104
+ end
105
+ # this is only for a xep <-> nodebrowser.rb understanding
106
+ alias get_metadata get_info
107
+
108
+ ##
109
+ # get type of node
110
+ # jid:: [Jabber::JID]
111
+ # node:: [String]
112
+ #
113
+ def type(jid,node)
114
+ info = get_info(jid,node)
115
+ return info['type']
116
+ end
117
+
118
+ ##
119
+ # get category of node
120
+ # jid:: [Jabber::JID]
121
+ # node:: [String]
122
+ #
123
+ def category(jid,node)
124
+ info = get_info(jid,node)
125
+ return info['category']
126
+ end
127
+
128
+ end #class
129
+ end #module
130
+ end #module
@@ -0,0 +1,156 @@
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
+ # For documentation of the return values please see [Jabber::PubSub::ServiceHelper]
6
+ # This class is only a wrapper around [Jabber::PubSub::ServiceHelper]
7
+ #
8
+
9
+
10
+ require 'xmpp4r/pubsub/helper/servicehelper'
11
+ require 'xmpp4r/pubsub/helper/nodebrowser'
12
+
13
+ module Jabber
14
+ module PubSub
15
+ class NodeHelper < ServiceHelper
16
+
17
+ attr_reader :nodename
18
+ attr_reader :name
19
+ attr_reader :jid
20
+ attr_reader :my_subscriptions
21
+ ##
22
+ # creates a new node
23
+ # new(client,service,nodename)
24
+ # stream:: [Jabber::Stream]
25
+ # jid:: [String] (jid of the pubsub service)
26
+ # nodename:: [String]
27
+ def initialize(stream, jid, nodename = nil, create_if_not_exist = true)
28
+ super(stream,jid)
29
+ @nodename = nodename
30
+ @jid = jid
31
+ @stream = stream
32
+
33
+ if create_if_not_exist and !node_exist?
34
+ # if no nodename is given a instant node will created
35
+ # (if the service supports instant nodes)
36
+ @nodename = create_node
37
+ else
38
+ get_subscriptions
39
+ end
40
+ end
41
+
42
+ ##
43
+ # creates the node
44
+ # create(configuration=nil)
45
+ # configuration:: [Jabber::XData]
46
+ def create_node(configuration = Jabber::PubSub::NodeConfig.new)
47
+ unless node_exist?
48
+ super(@nodename,configuration)
49
+ else
50
+ false
51
+ end
52
+ end
53
+
54
+ ##
55
+ # get the configuration of the node
56
+ # get_configuration(configuration=nil)
57
+ # configuration:: [Jabber::XData]
58
+ def get_configuration(subid = nil)
59
+ get_options(@nodename, subid)
60
+ end
61
+
62
+ ##
63
+ # set the configuration of the node
64
+ # set_configuration(configuration=nil)
65
+ # configuration:: [Jabber::XData]
66
+ # subid:: [String] default is nil
67
+ def set_configuration(configuration,subid = nil)
68
+ set_options(@nodename, configuration, subid)
69
+ end
70
+
71
+ ##
72
+ # deletes the node
73
+ # delete
74
+ def delete_node
75
+ delete(@nodename)
76
+ end
77
+
78
+ ##
79
+ # publishing content on this node
80
+ # publish_content(items)
81
+ # items:: [REXML::Element]
82
+ def publish_content(items)
83
+ publish_item_to(@nodename,items)
84
+ end
85
+
86
+ ##
87
+ # gets all items from the node
88
+ # get_all_items
89
+ def get_all_items
90
+ get_items_from(@nodename)
91
+ end
92
+
93
+ ##
94
+ # get a count of items
95
+ # get_items(count)
96
+ # count:: [Fixnum]
97
+ def get_items(count)
98
+ get_items_from(@nodename,count)
99
+ end
100
+
101
+ ##
102
+ # get all node affiliations
103
+ # get_affiliations
104
+ def get_affiliations
105
+ affiliations
106
+ end
107
+
108
+ ##
109
+ # get all subscriptions on this node
110
+ # get_subscriptions
111
+ def get_subscriptions
112
+ get_subscriptions_from(@nodename)
113
+ end
114
+
115
+ ##
116
+ # get all subscribers subscribed on this node
117
+ # get_subscribers
118
+ def get_subscribers
119
+ @subscriptions = subscribers(@nodename)
120
+ end
121
+
122
+ ##
123
+ # subscribe to this node
124
+ # do_subscribe
125
+ def do_subscribe
126
+ subscribe_to(@nodename)
127
+ get_subscriptions
128
+ end
129
+
130
+ ##
131
+ # unsubscribe from this node
132
+ # do_unsubscribe(subid = nil)
133
+ # subid:: [String]
134
+ def do_unsubscribe(subid)
135
+ unsubscribe(@nodename,subid)
136
+ end
137
+
138
+ ##
139
+ # purge all items from this node
140
+ # purge_items
141
+ def purge_items
142
+ purge(@nodename)
143
+ end
144
+
145
+ private
146
+
147
+ def node_exist?
148
+ nodebrowser = PubSub::NodeBrowser.new(@stream)
149
+ nodebrowser.nodes(@jid).include?(@nodename)
150
+ end
151
+ def disco_info
152
+ end
153
+
154
+ end #class
155
+ end #module
156
+ end #module
@@ -0,0 +1,107 @@
1
+ module Jabber
2
+ module PubSub
3
+ # PubSub service helper for use with OAuth-authenticated nodes
4
+ class OAuthServiceHelper < ServiceHelper
5
+ def initialize(stream, pubsubjid)
6
+ super(stream, pubsubjid)
7
+ end
8
+
9
+ # override #get_subscriptions_from_all_nodes to add an oauth element
10
+ def get_subscriptions_from_all_nodes(oauth_consumer, oauth_token)
11
+ iq = basic_pubsub_query(:get)
12
+
13
+ iq.pubsub.add(create_oauth_node(oauth_consumer, oauth_token))
14
+
15
+ entities = iq.pubsub.add(REXML::Element.new('subscriptions'))
16
+ res = nil
17
+ @stream.send_with_id(iq) { |reply|
18
+ if reply.pubsub.first_element('subscriptions')
19
+ res = []
20
+ reply.pubsub.first_element('subscriptions').each_element('subscription') { |subscription|
21
+ res << Jabber::PubSub::Subscription.import(subscription)
22
+ }
23
+ end
24
+ }
25
+
26
+ res
27
+ end
28
+
29
+ # override #subscribe_to to add an oauth element
30
+ def subscribe_to(node, oauth_consumer, oauth_token)
31
+ iq = basic_pubsub_query(:set)
32
+ sub = REXML::Element.new('subscribe')
33
+ sub.attributes['node'] = node
34
+ sub.attributes['jid'] = @stream.jid.strip.to_s
35
+
36
+ sub.add(create_oauth_node(oauth_consumer, oauth_token))
37
+
38
+ iq.pubsub.add(sub)
39
+ res = nil
40
+ @stream.send_with_id(iq) do |reply|
41
+ pubsubanswer = reply.pubsub
42
+ if pubsubanswer.first_element('subscription')
43
+ res = PubSub::Subscription.import(pubsubanswer.first_element('subscription'))
44
+ end
45
+ end # @stream.send_with_id(iq)
46
+ res
47
+ end
48
+
49
+ # override #unsubscribe_from to add an oauth element
50
+ def unsubscribe_from(node, oauth_consumer, oauth_token, subid=nil)
51
+ iq = basic_pubsub_query(:set)
52
+ unsub = PubSub::Unsubscribe.new
53
+ unsub.node = node
54
+ unsub.jid = @stream.jid.strip
55
+
56
+ unsub.add(create_oauth_node(oauth_consumer, oauth_token))
57
+
58
+ iq.pubsub.add(unsub)
59
+ ret = false
60
+ @stream.send_with_id(iq) { |reply|
61
+ ret = reply.kind_of?(Jabber::Iq) and reply.type == :result
62
+ } # @stream.send_with_id(iq)
63
+ ret
64
+ end
65
+
66
+ protected
67
+
68
+ # add the OAuth sauce (XEP-235)
69
+ def create_oauth_node(oauth_consumer, oauth_token)
70
+ require 'oauth/signature/hmac/sha1'
71
+ require 'cgi'
72
+
73
+ request = OAuth::RequestProxy.proxy \
74
+ "method" => "iq",
75
+ "uri" => [@stream.jid.strip.to_s, @pubsubjid.strip.to_s] * "&",
76
+ "parameters" => {
77
+ "oauth_consumer_key" => oauth_consumer.key,
78
+ "oauth_token" => oauth_token.token,
79
+ "oauth_signature_method" => "HMAC-SHA1"
80
+ }
81
+
82
+ signature = OAuth::Signature.sign(request, :consumer => oauth_consumer, :token => oauth_token)
83
+
84
+ oauth = REXML::Element.new("oauth")
85
+ oauth.attributes['xmlns'] = 'urn:xmpp:oauth'
86
+
87
+ oauth_consumer_key = REXML::Element.new("oauth_consumer_key")
88
+ oauth_consumer_key.text = oauth_consumer.key
89
+ oauth.add(oauth_consumer_key)
90
+
91
+ oauth_token_node = REXML::Element.new("oauth_token")
92
+ oauth_token_node.text = oauth_token.token
93
+ oauth.add(oauth_token_node)
94
+
95
+ oauth_signature_method = REXML::Element.new("oauth_signature_method")
96
+ oauth_signature_method.text = "HMAC-SHA1"
97
+ oauth.add(oauth_signature_method)
98
+
99
+ oauth_signature = REXML::Element.new("oauth_signature")
100
+ oauth_signature.text = signature
101
+ oauth.add(oauth_signature)
102
+
103
+ oauth
104
+ end
105
+ end
106
+ end
107
+ end