gmcmillan-xmpp4r 0.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (215) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGELOG +91 -0
  3. data/COPYING +340 -0
  4. data/LICENSE +59 -0
  5. data/README.rdoc +122 -0
  6. data/README_ruby19.txt +43 -0
  7. data/Rakefile +258 -0
  8. data/data/doc/xmpp4r/examples/advanced/adventure/README +56 -0
  9. data/data/doc/xmpp4r/examples/advanced/adventure/adventure.rb +23 -0
  10. data/data/doc/xmpp4r/examples/advanced/adventure/adventuremuc.rb +136 -0
  11. data/data/doc/xmpp4r/examples/advanced/adventure/cube.xml +15 -0
  12. data/data/doc/xmpp4r/examples/advanced/adventure/tower.xml +69 -0
  13. data/data/doc/xmpp4r/examples/advanced/adventure/world.rb +424 -0
  14. data/data/doc/xmpp4r/examples/advanced/fileserve.conf +11 -0
  15. data/data/doc/xmpp4r/examples/advanced/fileserve.rb +346 -0
  16. data/data/doc/xmpp4r/examples/advanced/getonline.rb +56 -0
  17. data/data/doc/xmpp4r/examples/advanced/gtkmucclient.rb +315 -0
  18. data/data/doc/xmpp4r/examples/advanced/migrate.rb +88 -0
  19. data/data/doc/xmpp4r/examples/advanced/minimuc.rb +266 -0
  20. data/data/doc/xmpp4r/examples/advanced/pep-aggregator/index.xsl +235 -0
  21. data/data/doc/xmpp4r/examples/advanced/pep-aggregator/pep-aggregator.rb +147 -0
  22. data/data/doc/xmpp4r/examples/advanced/recvfile.rb +85 -0
  23. data/data/doc/xmpp4r/examples/advanced/rosterdiscovery.rb +129 -0
  24. data/data/doc/xmpp4r/examples/advanced/sendfile.conf +10 -0
  25. data/data/doc/xmpp4r/examples/advanced/sendfile.rb +72 -0
  26. data/data/doc/xmpp4r/examples/advanced/shellmgr/shellmgr.rb +51 -0
  27. data/data/doc/xmpp4r/examples/advanced/shellmgr/shellmgr_jabber.rb +43 -0
  28. data/data/doc/xmpp4r/examples/advanced/shellmgr/shellmgr_test.rb +10 -0
  29. data/data/doc/xmpp4r/examples/advanced/versionpoll.rb +109 -0
  30. data/data/doc/xmpp4r/examples/advanced/xmpping.rb +146 -0
  31. data/data/doc/xmpp4r/examples/advanced/xmppingrc.sample +14 -0
  32. data/data/doc/xmpp4r/examples/basic/change_password.rb +41 -0
  33. data/data/doc/xmpp4r/examples/basic/client.rb +70 -0
  34. data/data/doc/xmpp4r/examples/basic/component.rb +11 -0
  35. data/data/doc/xmpp4r/examples/basic/echo.rb +37 -0
  36. data/data/doc/xmpp4r/examples/basic/jabbersend.rb +41 -0
  37. data/data/doc/xmpp4r/examples/basic/mass_sender.rb +68 -0
  38. data/data/doc/xmpp4r/examples/basic/muc_owner_config.rb +12 -0
  39. data/data/doc/xmpp4r/examples/basic/mucinfo.rb +41 -0
  40. data/data/doc/xmpp4r/examples/basic/mucsimplebot.rb +82 -0
  41. data/data/doc/xmpp4r/examples/basic/register.rb +42 -0
  42. data/data/doc/xmpp4r/examples/basic/remove_registration.rb +18 -0
  43. data/data/doc/xmpp4r/examples/basic/roster.rb +44 -0
  44. data/data/doc/xmpp4r/examples/basic/rosterprint.rb +50 -0
  45. data/data/doc/xmpp4r/examples/basic/rosterrename.rb +34 -0
  46. data/data/doc/xmpp4r/examples/basic/rosterwatch.rb +171 -0
  47. data/data/doc/xmpp4r/examples/basic/send_vcard.rb +67 -0
  48. data/data/doc/xmpp4r/examples/basic/tune_client.rb +56 -0
  49. data/data/doc/xmpp4r/examples/basic/tune_server.rb +58 -0
  50. data/data/doc/xmpp4r/examples/basic/versionbot.rb +75 -0
  51. data/lib/xmpp4r.rb +118 -0
  52. data/lib/xmpp4r/base64.rb +32 -0
  53. data/lib/xmpp4r/bytestreams.rb +15 -0
  54. data/lib/xmpp4r/bytestreams/helper/filetransfer.rb +321 -0
  55. data/lib/xmpp4r/bytestreams/helper/ibb/base.rb +257 -0
  56. data/lib/xmpp4r/bytestreams/helper/ibb/initiator.rb +31 -0
  57. data/lib/xmpp4r/bytestreams/helper/ibb/target.rb +54 -0
  58. data/lib/xmpp4r/bytestreams/helper/socks5bytestreams/base.rb +153 -0
  59. data/lib/xmpp4r/bytestreams/helper/socks5bytestreams/initiator.rb +86 -0
  60. data/lib/xmpp4r/bytestreams/helper/socks5bytestreams/server.rb +198 -0
  61. data/lib/xmpp4r/bytestreams/helper/socks5bytestreams/socks5.rb +65 -0
  62. data/lib/xmpp4r/bytestreams/helper/socks5bytestreams/target.rb +82 -0
  63. data/lib/xmpp4r/bytestreams/iq/bytestreams.rb +170 -0
  64. data/lib/xmpp4r/bytestreams/iq/si.rb +206 -0
  65. data/lib/xmpp4r/callbacks.rb +133 -0
  66. data/lib/xmpp4r/caps.rb +1 -0
  67. data/lib/xmpp4r/caps/c.rb +67 -0
  68. data/lib/xmpp4r/caps/helper/generator.rb +160 -0
  69. data/lib/xmpp4r/caps/helper/helper.rb +84 -0
  70. data/lib/xmpp4r/client.rb +345 -0
  71. data/lib/xmpp4r/command/helper/responder.rb +53 -0
  72. data/lib/xmpp4r/command/iq/command.rb +154 -0
  73. data/lib/xmpp4r/component.rb +103 -0
  74. data/lib/xmpp4r/connection.rb +231 -0
  75. data/lib/xmpp4r/dataforms.rb +5 -0
  76. data/lib/xmpp4r/dataforms/x/data.rb +297 -0
  77. data/lib/xmpp4r/debuglog.rb +63 -0
  78. data/lib/xmpp4r/delay.rb +5 -0
  79. data/lib/xmpp4r/delay/x/delay.rb +99 -0
  80. data/lib/xmpp4r/discovery.rb +8 -0
  81. data/lib/xmpp4r/discovery/helper/helper.rb +58 -0
  82. data/lib/xmpp4r/discovery/helper/responder.rb +165 -0
  83. data/lib/xmpp4r/discovery/iq/discoinfo.rb +211 -0
  84. data/lib/xmpp4r/discovery/iq/discoitems.rb +147 -0
  85. data/lib/xmpp4r/entity_time.rb +6 -0
  86. data/lib/xmpp4r/entity_time/iq.rb +45 -0
  87. data/lib/xmpp4r/entity_time/responder.rb +57 -0
  88. data/lib/xmpp4r/errors.rb +284 -0
  89. data/lib/xmpp4r/feature_negotiation.rb +5 -0
  90. data/lib/xmpp4r/feature_negotiation/iq/feature.rb +28 -0
  91. data/lib/xmpp4r/framework/base.rb +55 -0
  92. data/lib/xmpp4r/framework/bot.rb +148 -0
  93. data/lib/xmpp4r/httpbinding.rb +5 -0
  94. data/lib/xmpp4r/httpbinding/client.rb +275 -0
  95. data/lib/xmpp4r/idgenerator.rb +37 -0
  96. data/lib/xmpp4r/iq.rb +221 -0
  97. data/lib/xmpp4r/jid.rb +167 -0
  98. data/lib/xmpp4r/last.rb +2 -0
  99. data/lib/xmpp4r/last/helper/helper.rb +37 -0
  100. data/lib/xmpp4r/last/iq/last.rb +67 -0
  101. data/lib/xmpp4r/location.rb +2 -0
  102. data/lib/xmpp4r/location/helper/helper.rb +56 -0
  103. data/lib/xmpp4r/location/location.rb +179 -0
  104. data/lib/xmpp4r/message.rb +226 -0
  105. data/lib/xmpp4r/muc.rb +14 -0
  106. data/lib/xmpp4r/muc/helper/mucbrowser.rb +92 -0
  107. data/lib/xmpp4r/muc/helper/mucclient.rb +469 -0
  108. data/lib/xmpp4r/muc/helper/simplemucclient.rb +332 -0
  109. data/lib/xmpp4r/muc/iq/mucadmin.rb +23 -0
  110. data/lib/xmpp4r/muc/iq/mucadminitem.rb +20 -0
  111. data/lib/xmpp4r/muc/iq/mucowner.rb +15 -0
  112. data/lib/xmpp4r/muc/item.rb +143 -0
  113. data/lib/xmpp4r/muc/x/muc.rb +70 -0
  114. data/lib/xmpp4r/muc/x/mucuserinvite.rb +60 -0
  115. data/lib/xmpp4r/muc/x/mucuseritem.rb +36 -0
  116. data/lib/xmpp4r/presence.rb +232 -0
  117. data/lib/xmpp4r/pubsub.rb +8 -0
  118. data/lib/xmpp4r/pubsub/children/configuration.rb +86 -0
  119. data/lib/xmpp4r/pubsub/children/event.rb +49 -0
  120. data/lib/xmpp4r/pubsub/children/item.rb +35 -0
  121. data/lib/xmpp4r/pubsub/children/items.rb +53 -0
  122. data/lib/xmpp4r/pubsub/children/node_config.rb +48 -0
  123. data/lib/xmpp4r/pubsub/children/publish.rb +38 -0
  124. data/lib/xmpp4r/pubsub/children/retract.rb +41 -0
  125. data/lib/xmpp4r/pubsub/children/subscription.rb +62 -0
  126. data/lib/xmpp4r/pubsub/children/subscription_config.rb +67 -0
  127. data/lib/xmpp4r/pubsub/children/unsubscribe.rb +63 -0
  128. data/lib/xmpp4r/pubsub/helper/nodebrowser.rb +129 -0
  129. data/lib/xmpp4r/pubsub/helper/nodehelper.rb +156 -0
  130. data/lib/xmpp4r/pubsub/helper/oauth_service_helper.rb +90 -0
  131. data/lib/xmpp4r/pubsub/helper/servicehelper.rb +490 -0
  132. data/lib/xmpp4r/pubsub/iq/pubsub.rb +19 -0
  133. data/lib/xmpp4r/query.rb +15 -0
  134. data/lib/xmpp4r/reliable.rb +168 -0
  135. data/lib/xmpp4r/rexmladdons.rb +197 -0
  136. data/lib/xmpp4r/roster.rb +7 -0
  137. data/lib/xmpp4r/roster/helper/roster.rb +532 -0
  138. data/lib/xmpp4r/roster/iq/roster.rb +215 -0
  139. data/lib/xmpp4r/roster/x/roster.rb +138 -0
  140. data/lib/xmpp4r/rpc.rb +2 -0
  141. data/lib/xmpp4r/rpc/helper/client.rb +123 -0
  142. data/lib/xmpp4r/rpc/helper/server.rb +74 -0
  143. data/lib/xmpp4r/rpc/helper/xmlrpcaddons.rb +67 -0
  144. data/lib/xmpp4r/rpc/iq/rpc.rb +23 -0
  145. data/lib/xmpp4r/sasl.rb +259 -0
  146. data/lib/xmpp4r/semaphore.rb +38 -0
  147. data/lib/xmpp4r/stream.rb +611 -0
  148. data/lib/xmpp4r/streamparser.rb +66 -0
  149. data/lib/xmpp4r/test/listener_mocker.rb +118 -0
  150. data/lib/xmpp4r/tune.rb +2 -0
  151. data/lib/xmpp4r/tune/helper/helper.rb +58 -0
  152. data/lib/xmpp4r/tune/tune.rb +113 -0
  153. data/lib/xmpp4r/vcard.rb +6 -0
  154. data/lib/xmpp4r/vcard/helper/vcard.rb +84 -0
  155. data/lib/xmpp4r/vcard/iq/vcard.rb +109 -0
  156. data/lib/xmpp4r/version.rb +7 -0
  157. data/lib/xmpp4r/version/helper/responder.rb +72 -0
  158. data/lib/xmpp4r/version/helper/simpleresponder.rb +44 -0
  159. data/lib/xmpp4r/version/iq/version.rb +105 -0
  160. data/lib/xmpp4r/x.rb +37 -0
  161. data/lib/xmpp4r/xhtml.rb +1 -0
  162. data/lib/xmpp4r/xhtml/html.rb +115 -0
  163. data/lib/xmpp4r/xmpp4r.rb +20 -0
  164. data/lib/xmpp4r/xmppelement.rb +168 -0
  165. data/lib/xmpp4r/xmppstanza.rb +162 -0
  166. data/setup.rb +1586 -0
  167. data/test/bytestreams/tc_ibb.rb +188 -0
  168. data/test/bytestreams/tc_socks5bytestreams.rb +114 -0
  169. data/test/caps/tc_helper.rb +158 -0
  170. data/test/dataforms/tc_data.rb +81 -0
  171. data/test/delay/tc_xdelay.rb +51 -0
  172. data/test/discovery/tc_responder.rb +91 -0
  173. data/test/entity_time/tc_responder.rb +65 -0
  174. data/test/last/tc_helper.rb +75 -0
  175. data/test/lib/assert_equal_xml.rb +14 -0
  176. data/test/lib/clienttester.rb +149 -0
  177. data/test/muc/tc_muc_mucclient.rb +834 -0
  178. data/test/muc/tc_muc_simplemucclient.rb +114 -0
  179. data/test/muc/tc_mucowner.rb +50 -0
  180. data/test/pubsub/tc_helper.rb +785 -0
  181. data/test/pubsub/tc_nodeconfig.rb +61 -0
  182. data/test/pubsub/tc_subscriptionconfig.rb +41 -0
  183. data/test/roster/tc_helper.rb +523 -0
  184. data/test/roster/tc_iqqueryroster.rb +173 -0
  185. data/test/roster/tc_xroster.rb +73 -0
  186. data/test/rpc/tc_helper.rb +96 -0
  187. data/test/tc_callbacks.rb +129 -0
  188. data/test/tc_class_names.rb +146 -0
  189. data/test/tc_client.rb +30 -0
  190. data/test/tc_errors.rb +146 -0
  191. data/test/tc_idgenerator.rb +30 -0
  192. data/test/tc_iq.rb +113 -0
  193. data/test/tc_iqquery.rb +31 -0
  194. data/test/tc_jid.rb +204 -0
  195. data/test/tc_presence.rb +150 -0
  196. data/test/tc_rexml.rb +139 -0
  197. data/test/tc_stream.rb +193 -0
  198. data/test/tc_streamComponent.rb +105 -0
  199. data/test/tc_streamError.rb +129 -0
  200. data/test/tc_streamSend.rb +59 -0
  201. data/test/tc_streamparser.rb +137 -0
  202. data/test/tc_xmppstanza.rb +135 -0
  203. data/test/ts_xmpp4r.rb +44 -0
  204. data/test/tune/tc_helper_recv.rb +82 -0
  205. data/test/tune/tc_helper_send.rb +74 -0
  206. data/test/tune/tc_tune.rb +79 -0
  207. data/test/vcard/tc_helper.rb +49 -0
  208. data/test/vcard/tc_iqvcard.rb +62 -0
  209. data/test/version/tc_helper.rb +60 -0
  210. data/test/version/tc_iqqueryversion.rb +97 -0
  211. data/test/xhtml/tc_html.rb +41 -0
  212. data/tools/gen_requires.bash +31 -0
  213. data/tools/xmpp4r-gemspec-test.rb +11 -0
  214. data/xmpp4r.gemspec +249 -0
  215. metadata +299 -0
@@ -0,0 +1,2 @@
1
+ require 'xmpp4r/location/location'
2
+ require 'xmpp4r/location/helper/helper'
@@ -0,0 +1,56 @@
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'
6
+ require 'xmpp4r/pubsub'
7
+ require 'xmpp4r/location/location'
8
+
9
+ module Jabber
10
+ module UserLocation
11
+ ##
12
+ # A Helper for XEP-0080 User Location
13
+ #
14
+ # Use this helper to send a user's location, or receive them from a
15
+ # specified jid. Described at http://www.xmpp.org/extensions/xep-0080.html
16
+ #
17
+ # For example:
18
+ # <pre>
19
+ # h = UserLocation::Helper( @client, 'radio1@hug.hellomatty.com' )
20
+ # h.add_userlocation_callback do |location|
21
+ # puts "Now in: #{location.locality}"
22
+ # end
23
+ # </pre>
24
+ class Helper < PubSub::ServiceHelper
25
+ ##
26
+ # Send out the current location.
27
+ #
28
+ # location:: [Jabber::UserLocation::Location] current_location
29
+ def current_location(location)
30
+ item = Jabber::PubSub::Item.new()
31
+ item.add(location)
32
+
33
+ publish_item_to(NS_USERLOCATION, item)
34
+ end
35
+
36
+ ##
37
+ # Use this method to indicate that you wish to stop publishing
38
+ # a location.
39
+ def stop_publishing
40
+ current_location(Jabber::UserLocation::Location.new())
41
+ end
42
+
43
+ ##
44
+ # Add a callback that will be invoked when a location is received
45
+ # from the jid specified when you constructed the Helper.
46
+ def add_userlocation_callback(prio = 200, ref = nil, &block)
47
+ add_event_callback(prio, ref) do |event|
48
+ location = event.first_element('items/item/location')
49
+ if location
50
+ block.call(location)
51
+ end
52
+ end
53
+ end
54
+ end
55
+ end
56
+ end
@@ -0,0 +1,179 @@
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 'time'
6
+ require 'xmpp4r/xmppelement'
7
+ require 'rexml/element'
8
+
9
+ module Jabber
10
+ module UserLocation
11
+ NS_USERLOCATION = 'http://jabber.org/protocol/geoloc'
12
+ ALLOWABLE_ATTRIBUTES = %w(accuracy alt area bearing building country
13
+ datum description floor lat locality lon postalcode region room
14
+ speed street text timestamp uri)
15
+
16
+ ##
17
+ # The <geoloc> XMPP element, as defined in XEP-0080 User Location
18
+ #
19
+ # See http://xmpp.org/extensions/xep-0080.html - this element
20
+ # encapsulates data about a user's current location. These are
21
+ # expressed as child elements such as <locality>, <lat>, etc.
22
+ # which are also managed by this class.
23
+ #
24
+ # If the element has no children then it indicates that the user
25
+ # has stopped publishing their location.
26
+ class Location < XMPPElement
27
+ name_xmlns 'geoloc', NS_USERLOCATION
28
+ force_xmlns true
29
+
30
+ ##
31
+ # Construct a new <location> element.
32
+ #
33
+ # Supply no arguments to make an empty element to indicate that
34
+ # location is no longer being published.
35
+ #
36
+ # attributes:: [Hash] location attributes
37
+ def initialize(attributes = {})
38
+ super()
39
+
40
+ # validate attributes
41
+ attributes = attributes.select do |k,v|
42
+ ALLOWABLE_ATTRIBUTES.include?(k) && !v.nil?
43
+ end
44
+
45
+ attributes.each do |k,v|
46
+ v = x.xmlschema if v.is_a?(Time)
47
+ add_element(REXML::Element.new(k)).text = v.to_s
48
+ end
49
+ end
50
+
51
+
52
+ ##
53
+ # Returns true if a location is currently being published, otherwise false.
54
+ def published?
55
+ (elements.size > 0)
56
+ end
57
+
58
+ ##
59
+ # Get the accuracy attribute of this location.
60
+ def accuracy
61
+ first_element('accuracy').text if first_element('accuracy')
62
+ end
63
+
64
+ ##
65
+ # Get the alt attribute of this location.
66
+ def alt
67
+ first_element('alt').text if first_element('alt')
68
+ end
69
+
70
+ ##
71
+ # Get the area attribute of this location.
72
+ def area
73
+ first_element('area').text if first_element('area')
74
+ end
75
+
76
+ ##
77
+ # Get the bearing attribute of this location.
78
+ def bearing
79
+ first_element('bearing').text if first_element('bearing')
80
+ end
81
+
82
+ ##
83
+ # Get the building attribute of this location.
84
+ def building
85
+ first_element('building').text if first_element('building')
86
+ end
87
+
88
+ ##
89
+ # Get the country attribute of this location.
90
+ def country
91
+ first_element('country').text if first_element('country')
92
+ end
93
+
94
+ ##
95
+ # Get the datum attribute of this location.
96
+ def datum
97
+ first_element('datum').text if first_element('datum')
98
+ end
99
+
100
+ ##
101
+ # Get the description attribute of this location.
102
+ def description
103
+ first_element('description').text if first_element('description')
104
+ end
105
+
106
+ ##
107
+ # Get the floor attribute of this location.
108
+ def floor
109
+ first_element('floor').text if first_element('floor')
110
+ end
111
+
112
+ ##
113
+ # Get the lat attribute of this location.
114
+ def lat
115
+ first_element('lat').text if first_element('lat')
116
+ end
117
+
118
+ ##
119
+ # Get the locality attribute of this location.
120
+ def locality
121
+ first_element('locality').text if first_element('locality')
122
+ end
123
+
124
+ ##
125
+ # Get the lon attribute of this location.
126
+ def lon
127
+ first_element('lon').text if first_element('lon')
128
+ end
129
+
130
+ ##
131
+ # Get the postalcode attribute of this location.
132
+ def postalcode
133
+ first_element('postalcode').text if first_element('postalcode')
134
+ end
135
+
136
+ ##
137
+ # Get the region attribute of this location.
138
+ def region
139
+ first_element('region').text if first_element('region')
140
+ end
141
+
142
+ ##
143
+ # Get the room attribute of this location.
144
+ def room
145
+ first_element('room').text if first_element('room')
146
+ end
147
+
148
+ ##
149
+ # Get the speed attribute of this location.
150
+ def speed
151
+ first_element('speed').text if first_element('speed')
152
+ end
153
+
154
+ ##
155
+ # Get the street attribute of this location.
156
+ def street
157
+ first_element('street').text if first_element('street')
158
+ end
159
+
160
+ ##
161
+ # Get the text attribute of this location.
162
+ def text
163
+ first_element('text').text if first_element('text')
164
+ end
165
+
166
+ ##
167
+ # Get the timestamp attribute of this location.
168
+ def timestamp
169
+ first_element('timestamp').text if first_element('timestamp')
170
+ end
171
+
172
+ ##
173
+ # Get the uri attribute of this location.
174
+ def uri
175
+ first_element('uri').text if first_element('uri')
176
+ end
177
+ end
178
+ end
179
+ end
@@ -0,0 +1,226 @@
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/xmppstanza'
6
+ require 'xmpp4r/x'
7
+
8
+ module Jabber
9
+ ##
10
+ # The Message class manages the <message/> stanzas,
11
+ # which is used for all messaging communication.
12
+ class Message < XMPPStanza
13
+
14
+ CHAT_STATES = %w(active composing gone inactive paused).freeze
15
+
16
+ name_xmlns 'message', 'jabber:client'
17
+ force_xmlns true
18
+
19
+ include XParent
20
+
21
+ ##
22
+ # Create a new message
23
+ # >to:: a JID or a String object to send the message to.
24
+ # >body:: the message's body
25
+ def initialize(to = nil, body = nil)
26
+ super()
27
+ if not to.nil?
28
+ set_to(to)
29
+ end
30
+ if !body.nil?
31
+ add_element(REXML::Element.new("body").add_text(body))
32
+ end
33
+ end
34
+
35
+ ##
36
+ # Get the type of the Message stanza
37
+ #
38
+ # The following Symbols are allowed:
39
+ # * :chat
40
+ # * :error
41
+ # * :groupchat
42
+ # * :headline
43
+ # * :normal
44
+ # result:: [Symbol] or nil
45
+ def type
46
+ case super
47
+ when 'chat' then :chat
48
+ when 'error' then :error
49
+ when 'groupchat' then :groupchat
50
+ when 'headline' then :headline
51
+ when 'normal' then :normal
52
+ else nil
53
+ end
54
+ end
55
+
56
+ ##
57
+ # Set the type of the Message stanza (see Message#type for details)
58
+ # v:: [Symbol] or nil
59
+ def type=(v)
60
+ case v
61
+ when :chat then super('chat')
62
+ when :error then super('error')
63
+ when :groupchat then super('groupchat')
64
+ when :headline then super('headline')
65
+ when :normal then super('normal')
66
+ else super(nil)
67
+ end
68
+ end
69
+
70
+ ##
71
+ # Set the type of the Message stanza (chaining-friendly)
72
+ # v:: [Symbol] or nil
73
+ def set_type(v)
74
+ self.type = v
75
+ self
76
+ end
77
+
78
+ ##
79
+ # Returns the message's body, or nil.
80
+ # This is the message's plain-text content.
81
+ def body
82
+ first_element_text('body')
83
+ end
84
+
85
+ ##
86
+ # Sets the message's body
87
+ #
88
+ # b:: [String] body to set
89
+ def body=(b)
90
+ replace_element_text('body', b)
91
+ end
92
+
93
+ ##
94
+ # Sets the message's body
95
+ #
96
+ # b:: [String] body to set
97
+ # return:: [REXML::Element] self for chaining
98
+ def set_body(b)
99
+ self.body = b
100
+ self
101
+ end
102
+
103
+ ##
104
+ # Returns the message's xhtml body, or nil.
105
+ # This is the message's xhtml-text content.
106
+ def xhtml_body
107
+ html = first_element('html', 'http://jabber.org/protocol/xhtml-im')
108
+
109
+ if html
110
+ html.first_element_content('body', 'http://www.w3.org/1999/xhtml')
111
+ else
112
+ first_element_content('body', 'http://www.w3.org/1999/xhtml')
113
+ end
114
+ end
115
+
116
+ ##
117
+ # Sets the message's xhtml body
118
+ #
119
+ # b:: [String] xhtml body to set (Note: must be a valid xhtml)
120
+ def xhtml_body=(b)
121
+ begin
122
+ b = REXML::Document.new("<root>#{b}</root>")
123
+ rescue REXML::ParseException
124
+ raise ArgumentError, "Body is not a valid xhtml. Have you forgot to close some tag?"
125
+ end
126
+
127
+ html = first_element('html', 'http://jabber.org/protocol/xhtml-im')
128
+
129
+ if html
130
+ html.replace_element_content('body', b, 'http://www.w3.org/1999/xhtml')
131
+ else
132
+ el = REXML::Element.new('html')
133
+ el.add_namespace('http://jabber.org/protocol/xhtml-im')
134
+ el.replace_element_content('body', b, 'http://www.w3.org/1999/xhtml')
135
+ add_element(el)
136
+ end
137
+ end
138
+
139
+ ##
140
+ # Sets the message's xhtml body
141
+ #
142
+ # b:: [String] xhtml body to set (Note: must be a valid xhtml)
143
+ # return:: [REXML::Element] self for chaining
144
+ def set_xhtml_body(b)
145
+ self.xhtml_body = b
146
+ self
147
+ end
148
+
149
+ ##
150
+ # sets the message's subject
151
+ #
152
+ # s:: [String] subject to set
153
+ def subject=(s)
154
+ replace_element_text('subject', s)
155
+ end
156
+
157
+ ##
158
+ # sets the message's subject
159
+ #
160
+ # s:: [String] subject to set
161
+ # return:: [REXML::Element] self for chaining
162
+ def set_subject(s)
163
+ self.subject = s
164
+ self
165
+ end
166
+
167
+ ##
168
+ # Returns the message's subject, or nil
169
+ def subject
170
+ first_element_text('subject')
171
+ end
172
+
173
+ ##
174
+ # sets the message's thread
175
+ # s:: [String] thread to set
176
+ def thread=(s)
177
+ delete_elements('thread')
178
+ replace_element_text('thread', s) unless s.nil?
179
+ end
180
+
181
+ ##
182
+ # gets the message's thread (chaining-friendly)
183
+ # Please note that this are not [Thread] but a [String]-Identifier to track conversations
184
+ # s:: [String] thread to set
185
+ def set_thread(s)
186
+ self.thread = s
187
+ self
188
+ end
189
+
190
+ ##
191
+ # Returns the message's thread, or nil
192
+ def thread
193
+ first_element_text('thread')
194
+ end
195
+
196
+ ##
197
+ # Returns the current chat state, or nil if no chat state is set
198
+ def chat_state
199
+ each_elements(*CHAT_STATES) { |el| return el.name.to_sym }
200
+ return nil
201
+ end
202
+
203
+ ##
204
+ # Sets the chat state :active, :composing, :gone, :inactive, :paused
205
+ def chat_state=(s)
206
+ s = s.to_s
207
+ raise InvalidChatState, "Chat state must be one of #{CHAT_STATES.join(', ')}" unless CHAT_STATES.include?(s)
208
+ CHAT_STATES.each { |state| delete_elements(state) }
209
+ add_element(REXML::Element.new(s).add_namespace('http://jabber.org/protocol/chatstates'))
210
+ end
211
+
212
+ ##
213
+ # Sets the message's chat state
214
+ def set_chat_state(s)
215
+ self.state = s
216
+ self
217
+ end
218
+
219
+ CHAT_STATES.each do |state|
220
+ define_method("#{state}?") do
221
+ chat_state == state.to_sym
222
+ end
223
+ end
224
+
225
+ end
226
+ end