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,154 @@
|
|
1
|
+
require 'xmpp4r/iq'
|
2
|
+
|
3
|
+
module Jabber
|
4
|
+
|
5
|
+
module Command
|
6
|
+
|
7
|
+
##
|
8
|
+
# Class for handling ad-hoc commands
|
9
|
+
# (JEP 0050)
|
10
|
+
#
|
11
|
+
# A command is uniquely identified by its node attribute.
|
12
|
+
class IqCommand < Iq
|
13
|
+
name_xmlns 'command', 'http://jabber.org/protocol/commands'
|
14
|
+
|
15
|
+
def initialize(node=nil, action=nil)
|
16
|
+
super()
|
17
|
+
set_node(node)
|
18
|
+
set_action(action)
|
19
|
+
end
|
20
|
+
|
21
|
+
##
|
22
|
+
# Get the node of the Command stanza
|
23
|
+
# result:: [String] or nil
|
24
|
+
def node
|
25
|
+
attributes['node']
|
26
|
+
end
|
27
|
+
|
28
|
+
##
|
29
|
+
# Set the node of the Command stanza
|
30
|
+
# v:: [String] or nil
|
31
|
+
def node=(v)
|
32
|
+
attributes['node'] = v
|
33
|
+
end
|
34
|
+
|
35
|
+
##
|
36
|
+
# Set the node of the Command stanza (chaining-friendly)
|
37
|
+
# v:: [String] or nil
|
38
|
+
def set_node(v)
|
39
|
+
self.node = v
|
40
|
+
self
|
41
|
+
end
|
42
|
+
|
43
|
+
##
|
44
|
+
# Get the sessionid of the Command stanza
|
45
|
+
# result:: [String] or nil
|
46
|
+
def sessionid
|
47
|
+
attributes['sessionid']
|
48
|
+
end
|
49
|
+
|
50
|
+
##
|
51
|
+
# Set the sessionid of the Command stanza
|
52
|
+
# v:: [String] or nil
|
53
|
+
def sessionid=(v)
|
54
|
+
attributes['sessionid'] = v
|
55
|
+
end
|
56
|
+
|
57
|
+
##
|
58
|
+
# Set the sessionid of the Command stanza (chaining-friendly)
|
59
|
+
# v:: [String] or nil
|
60
|
+
def set_sessionid(v)
|
61
|
+
self.sessionid = v
|
62
|
+
self
|
63
|
+
end
|
64
|
+
|
65
|
+
##
|
66
|
+
# Get the action of the Command stanza
|
67
|
+
#
|
68
|
+
# The following Symbols are allowed:
|
69
|
+
# * :execute
|
70
|
+
# * :cancel
|
71
|
+
# * :prev
|
72
|
+
# * :next
|
73
|
+
# * :complete
|
74
|
+
# return:: [Symbol] or nil
|
75
|
+
def action
|
76
|
+
case attributes['action']
|
77
|
+
when 'execute' then :execute
|
78
|
+
when 'cancel' then :cancel
|
79
|
+
when 'prev' then :prev
|
80
|
+
when 'next' then :next
|
81
|
+
when 'complete' then :complete
|
82
|
+
else nil
|
83
|
+
end
|
84
|
+
end
|
85
|
+
|
86
|
+
##
|
87
|
+
# Set the action of the Command stanza (see IqCommand#action for details)
|
88
|
+
# v:: [Symbol] or nil
|
89
|
+
def action=(v)
|
90
|
+
attributes['action'] = case v
|
91
|
+
when :execute then 'execute'
|
92
|
+
when :cancel then 'cancel'
|
93
|
+
when :prev then 'prev'
|
94
|
+
when :next then 'next'
|
95
|
+
when :complete then 'complete'
|
96
|
+
else nil
|
97
|
+
end
|
98
|
+
end
|
99
|
+
|
100
|
+
##
|
101
|
+
# Set the action of the Command stanza (chaining-friendly)
|
102
|
+
# v:: [Symbol] or nil
|
103
|
+
def set_action(v)
|
104
|
+
self.action = v
|
105
|
+
self
|
106
|
+
end
|
107
|
+
|
108
|
+
##
|
109
|
+
# Get the status of the Command stanza
|
110
|
+
#
|
111
|
+
# The following Symbols are allowed:
|
112
|
+
# * :executing
|
113
|
+
# * :completed
|
114
|
+
# * :canceled
|
115
|
+
# return:: [Symbol] or nil
|
116
|
+
def status
|
117
|
+
case attributes['status']
|
118
|
+
when 'executing' then :executing
|
119
|
+
when 'completed' then :completed
|
120
|
+
when 'canceled' then :canceled
|
121
|
+
else nil
|
122
|
+
end
|
123
|
+
end
|
124
|
+
|
125
|
+
##
|
126
|
+
# Set the status of the Command stanza (see IqCommand#status for details)
|
127
|
+
# v:: [Symbol] or nil
|
128
|
+
def status=(v)
|
129
|
+
attributes['status'] = case v
|
130
|
+
when :executing then 'executing'
|
131
|
+
when :completed then 'completed'
|
132
|
+
when :canceled then 'canceled'
|
133
|
+
else nil
|
134
|
+
end
|
135
|
+
end
|
136
|
+
|
137
|
+
##
|
138
|
+
# Set the status of the Command stanza (chaining-friendly)
|
139
|
+
# v:: [Symbol] or nil
|
140
|
+
def set_status(v)
|
141
|
+
self.status = v
|
142
|
+
self
|
143
|
+
end
|
144
|
+
|
145
|
+
##
|
146
|
+
# Get the actions allowed
|
147
|
+
# return:: [REXML::Element] or nil
|
148
|
+
def actions
|
149
|
+
first_element('actions')
|
150
|
+
end
|
151
|
+
|
152
|
+
end
|
153
|
+
end
|
154
|
+
end
|
@@ -0,0 +1,103 @@
|
|
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/connection'
|
6
|
+
|
7
|
+
module Jabber
|
8
|
+
##
|
9
|
+
# The component class provides everything needed to build a XMPP Component.
|
10
|
+
#
|
11
|
+
# Components are more flexible as they are only restricted in the use of a
|
12
|
+
# fixed domain. node and resource of JIDs are freely choosable for all stanzas.
|
13
|
+
class Component < Connection
|
14
|
+
|
15
|
+
# The component's JID
|
16
|
+
attr_reader :jid
|
17
|
+
|
18
|
+
# The server's address
|
19
|
+
attr_reader :server_address
|
20
|
+
|
21
|
+
# The server's port
|
22
|
+
attr_reader :server_port
|
23
|
+
|
24
|
+
# Create a new Component
|
25
|
+
# jid:: [JID]
|
26
|
+
def initialize(jid, server_address=nil, server_port=5347)
|
27
|
+
super()
|
28
|
+
@jid = (jid.kind_of?(JID) ? jid : JID.new(jid.to_s))
|
29
|
+
|
30
|
+
if server_address
|
31
|
+
$stderr.puts "Passing server and port to Jabber::Component.new is " +
|
32
|
+
"obsolete and will vanish in some later XMPP4R release. " +
|
33
|
+
"Please use these arguments when calling " +
|
34
|
+
"Jabber::Client#connect"
|
35
|
+
@server_address = server_address
|
36
|
+
@server_port = server_port
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
# Connect to the server
|
41
|
+
# (chaining-friendly)
|
42
|
+
# server:: [String] Hostname
|
43
|
+
# port:: [Integer] TCP port (5347)
|
44
|
+
# return:: self
|
45
|
+
def connect(server=nil, port=5347)
|
46
|
+
if server
|
47
|
+
super(server, port)
|
48
|
+
else
|
49
|
+
super(@server_address, @server_port)
|
50
|
+
end
|
51
|
+
self
|
52
|
+
end
|
53
|
+
|
54
|
+
##
|
55
|
+
# Close the connection,
|
56
|
+
# sends <tt></stream:stream></tt> tag first
|
57
|
+
def close
|
58
|
+
send("</stream:stream>")
|
59
|
+
super
|
60
|
+
end
|
61
|
+
|
62
|
+
def generate_stream_start(to=nil, from=nil, id=nil, xml_lang="en", xmlns="jabber:component:accept", version="1.0")
|
63
|
+
super
|
64
|
+
end
|
65
|
+
private :generate_stream_start
|
66
|
+
|
67
|
+
##
|
68
|
+
# Start the stream-parser and send the component-specific stream opening element
|
69
|
+
def start
|
70
|
+
super
|
71
|
+
send(generate_stream_start(@jid)) { |e|
|
72
|
+
if e.name == 'stream'
|
73
|
+
true
|
74
|
+
else
|
75
|
+
false
|
76
|
+
end
|
77
|
+
}
|
78
|
+
end
|
79
|
+
|
80
|
+
##
|
81
|
+
# Send auth with given secret and wait for result
|
82
|
+
#
|
83
|
+
# Throws ComponentAuthenticationFailure
|
84
|
+
# secret:: [String] the shared secret
|
85
|
+
def auth(secret)
|
86
|
+
hash = Digest::SHA1::hexdigest(@streamid.to_s + secret)
|
87
|
+
authenticated = false
|
88
|
+
send("<handshake>#{hash}</handshake>") { |r|
|
89
|
+
if r.prefix == 'stream' and r.name == 'error'
|
90
|
+
true
|
91
|
+
elsif r.name == 'handshake'
|
92
|
+
authenticated = true
|
93
|
+
true
|
94
|
+
else
|
95
|
+
false
|
96
|
+
end
|
97
|
+
}
|
98
|
+
unless authenticated
|
99
|
+
raise ComponentAuthenticationFailure.new, "Component authentication failed"
|
100
|
+
end
|
101
|
+
end
|
102
|
+
end
|
103
|
+
end
|
@@ -0,0 +1,231 @@
|
|
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
|
+
begin
|
6
|
+
require 'openssl'
|
7
|
+
rescue LoadError
|
8
|
+
end
|
9
|
+
require 'xmpp4r/stream'
|
10
|
+
|
11
|
+
module Jabber
|
12
|
+
##
|
13
|
+
# The connection class manages the TCP connection to the Jabber server
|
14
|
+
#
|
15
|
+
class Connection < Stream
|
16
|
+
attr_reader :host, :port
|
17
|
+
|
18
|
+
# How many seconds to wait for <stream:features/>
|
19
|
+
# before proceeding
|
20
|
+
attr_accessor :features_timeout
|
21
|
+
|
22
|
+
# Keep-alive interval in seconds, or nil to disable keepalive,
|
23
|
+
# defaults to 60 (see private method keepalive_loop for
|
24
|
+
# implementation details)
|
25
|
+
attr_accessor :keepalive_interval
|
26
|
+
|
27
|
+
# Allow TLS negotiation? Defaults to true
|
28
|
+
attr_accessor :allow_tls
|
29
|
+
|
30
|
+
# Optional CA-Path for TLS-handshake
|
31
|
+
attr_accessor :ssl_capath
|
32
|
+
|
33
|
+
# Optional callback for verification of SSL peer
|
34
|
+
attr_accessor :ssl_verifycb
|
35
|
+
|
36
|
+
#whether to use the old and deprecated SSL protocol
|
37
|
+
#Defaults to false
|
38
|
+
attr_accessor :use_ssl
|
39
|
+
|
40
|
+
##
|
41
|
+
# Create a new connection to the given host and port
|
42
|
+
def initialize
|
43
|
+
super()
|
44
|
+
@host = nil
|
45
|
+
@port = nil
|
46
|
+
@allow_tls = defined? OpenSSL
|
47
|
+
@tls = false
|
48
|
+
@ssl_capath = nil
|
49
|
+
@ssl_verifycb = nil
|
50
|
+
@features_timeout = 10
|
51
|
+
@keepalive_interval = 60
|
52
|
+
@use_ssl = false
|
53
|
+
end
|
54
|
+
|
55
|
+
##
|
56
|
+
# Connect to the Jabber server through a TCP Socket,
|
57
|
+
# start the Jabber parser,
|
58
|
+
# invoke to accept_features to wait for TLS,
|
59
|
+
# start the keep-alive thread
|
60
|
+
def connect(host, port)
|
61
|
+
@host = host
|
62
|
+
@port = port
|
63
|
+
# Reset is_tls?, so that it works when reconnecting
|
64
|
+
@tls = false
|
65
|
+
|
66
|
+
Jabber::debuglog("CONNECTING:\n#{@host}:#{@port}")
|
67
|
+
@socket = TCPSocket.new(@host, @port)
|
68
|
+
|
69
|
+
# We want to use the old and deprecated SSL protocol (usually on port 5223)
|
70
|
+
if @use_ssl
|
71
|
+
ssl = OpenSSL::SSL::SSLSocket.new(@socket)
|
72
|
+
ssl.connect # start SSL session
|
73
|
+
ssl.sync_close = true
|
74
|
+
Jabber::debuglog("SSL connection established.")
|
75
|
+
@socket = ssl
|
76
|
+
end
|
77
|
+
|
78
|
+
start
|
79
|
+
|
80
|
+
accept_features
|
81
|
+
|
82
|
+
unless @keepalive_interval.nil?
|
83
|
+
@keepaliveThread = Thread.new do
|
84
|
+
Thread.current.abort_on_exception = true
|
85
|
+
keepalive_loop
|
86
|
+
end
|
87
|
+
end
|
88
|
+
end
|
89
|
+
|
90
|
+
##
|
91
|
+
# Closing connection:
|
92
|
+
# first kill keepaliveThread (but only if it's not me), then call Stream#close!
|
93
|
+
def close!
|
94
|
+
@keepaliveThread.kill if @keepaliveThread and @keepaliveThread.alive? and @keepaliveThread != Thread.current
|
95
|
+
super
|
96
|
+
@keepaliveThread.kill if @keepaliveThread and @keepaliveThread.alive?
|
97
|
+
end
|
98
|
+
|
99
|
+
def accept_features
|
100
|
+
begin
|
101
|
+
Timeout::timeout(@features_timeout) {
|
102
|
+
Jabber::debuglog("FEATURES: waiting...")
|
103
|
+
@features_sem.wait
|
104
|
+
Jabber::debuglog("FEATURES: waiting finished")
|
105
|
+
}
|
106
|
+
rescue Timeout::Error
|
107
|
+
Jabber::debuglog("FEATURES: timed out when waiting, stream peer seems not XMPP compliant")
|
108
|
+
end
|
109
|
+
|
110
|
+
if @allow_tls and not is_tls? and @stream_features['starttls'] == 'urn:ietf:params:xml:ns:xmpp-tls'
|
111
|
+
begin
|
112
|
+
starttls
|
113
|
+
rescue
|
114
|
+
Jabber::debuglog("STARTTLS:\nFailure: #{$!}")
|
115
|
+
end
|
116
|
+
end
|
117
|
+
end
|
118
|
+
|
119
|
+
##
|
120
|
+
# Start the parser on the previously connected socket
|
121
|
+
def start
|
122
|
+
super(@socket)
|
123
|
+
end
|
124
|
+
|
125
|
+
##
|
126
|
+
# Do a <starttls/>
|
127
|
+
# (will be automatically done by connect if stream peer supports this)
|
128
|
+
def starttls
|
129
|
+
stls = REXML::Element.new('starttls')
|
130
|
+
stls.add_namespace('urn:ietf:params:xml:ns:xmpp-tls')
|
131
|
+
|
132
|
+
reply = nil
|
133
|
+
send(stls) { |r|
|
134
|
+
reply = r
|
135
|
+
true
|
136
|
+
}
|
137
|
+
if reply.name != 'proceed'
|
138
|
+
# ppg - 8-1-09: The XMPP Core spec (http://xmpp.org/rfcs/rfc3920.html)
|
139
|
+
# says that the server reply will be 'failure'
|
140
|
+
error = reply.first_element('failure')
|
141
|
+
raise ServerError.new(error) unless error.nil?
|
142
|
+
raise JabberError.new("Unhandled reply type: #{reply.name}")
|
143
|
+
end
|
144
|
+
# Don't be interrupted
|
145
|
+
stop
|
146
|
+
|
147
|
+
begin
|
148
|
+
error = nil
|
149
|
+
|
150
|
+
# Context/user set-able stuff
|
151
|
+
ctx = OpenSSL::SSL::SSLContext.new
|
152
|
+
ctx.ssl_version = :SSLv3
|
153
|
+
if @ssl_capath
|
154
|
+
ctx.verify_mode = OpenSSL::SSL::VERIFY_PEER
|
155
|
+
ctx.ca_path = @ssl_capath
|
156
|
+
else
|
157
|
+
ctx.verify_mode = OpenSSL::SSL::VERIFY_NONE
|
158
|
+
end
|
159
|
+
ctx.verify_callback = @ssl_verifycb
|
160
|
+
|
161
|
+
# SSL connection establishing
|
162
|
+
sslsocket = OpenSSL::SSL::SSLSocket.new(@socket, ctx)
|
163
|
+
sslsocket.sync_close = true
|
164
|
+
Jabber::debuglog("TLSv1: OpenSSL handshake in progress")
|
165
|
+
sslsocket.connect
|
166
|
+
|
167
|
+
# Make REXML believe it's a real socket
|
168
|
+
class << sslsocket
|
169
|
+
def kind_of?(o)
|
170
|
+
o == IO ? true : super
|
171
|
+
end
|
172
|
+
end
|
173
|
+
|
174
|
+
# We're done and will use it
|
175
|
+
@tls = true
|
176
|
+
@socket = sslsocket
|
177
|
+
rescue
|
178
|
+
error = $!
|
179
|
+
ensure
|
180
|
+
Jabber::debuglog("TLSv1: restarting parser")
|
181
|
+
start
|
182
|
+
accept_features
|
183
|
+
raise error if error
|
184
|
+
end
|
185
|
+
end
|
186
|
+
|
187
|
+
##
|
188
|
+
# Have we gone to TLS mode?
|
189
|
+
# result:: [true] or [false]
|
190
|
+
def is_tls?
|
191
|
+
@tls
|
192
|
+
end
|
193
|
+
|
194
|
+
def generate_stream_start(to=nil, from=nil, id=nil, xml_lang="en", xmlns="jabber:client", version="1.0")
|
195
|
+
stream_start_string = "<stream:stream xmlns:stream='http://etherx.jabber.org/streams' "
|
196
|
+
stream_start_string += "xmlns='#{xmlns}' " unless xmlns.nil?
|
197
|
+
stream_start_string += "to='#{to}' " unless to.nil?
|
198
|
+
stream_start_string += "from='#{from}' " unless from.nil?
|
199
|
+
stream_start_string += "id='#{id}' " unless id.nil?
|
200
|
+
stream_start_string += "xml:lang='#{xml_lang}' " unless xml_lang.nil?
|
201
|
+
stream_start_string += "version='#{version}' " unless version.nil?
|
202
|
+
stream_start_string += ">"
|
203
|
+
stream_start_string
|
204
|
+
end
|
205
|
+
private :generate_stream_start
|
206
|
+
|
207
|
+
##
|
208
|
+
# A loop to send "keep alive" data to prevent
|
209
|
+
# the Jabber connection from closing for inactivity.
|
210
|
+
#
|
211
|
+
# This loop sends a single white-space character if
|
212
|
+
# no other data has been sent in the last @keepalive_interval
|
213
|
+
# seconds.
|
214
|
+
def keepalive_loop
|
215
|
+
loop do
|
216
|
+
unless is_connected?
|
217
|
+
Thread.current.kill
|
218
|
+
end
|
219
|
+
difference = @last_send + @keepalive_interval - Time.now
|
220
|
+
if difference <= 0
|
221
|
+
send(' ')
|
222
|
+
sleep @keepalive_interval
|
223
|
+
else
|
224
|
+
sleep(difference)
|
225
|
+
end
|
226
|
+
end
|
227
|
+
end
|
228
|
+
private :keepalive_loop
|
229
|
+
|
230
|
+
end
|
231
|
+
end
|