mack-notifier 0.8.1 → 0.8.2
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/gems.rb +13 -0
- data/lib/gems/tmail-1.2.3.1/ext/Makefile +20 -0
- data/lib/gems/tmail-1.2.3.1/ext/tmailscanner/tmail/MANIFEST +4 -0
- data/lib/gems/tmail-1.2.3.1/ext/tmailscanner/tmail/depend +1 -0
- data/lib/gems/tmail-1.2.3.1/ext/tmailscanner/tmail/extconf.rb +33 -0
- data/lib/gems/tmail-1.2.3.1/ext/tmailscanner/tmail/tmailscanner.c +583 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail.rb +5 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail/Makefile +18 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail/address.rb +426 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail/attachments.rb +46 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail/base64.rb +46 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail/compat.rb +41 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail/config.rb +67 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail/core_extensions.rb +63 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail/encode.rb +581 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail/header.rb +960 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail/index.rb +9 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail/interface.rb +1125 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail/loader.rb +3 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail/mail.rb +578 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail/mailbox.rb +495 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail/main.rb +6 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail/mbox.rb +3 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail/net.rb +248 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail/obsolete.rb +132 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail/parser.rb +1476 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail/parser.y +381 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail/port.rb +379 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail/quoting.rb +118 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail/require_arch.rb +58 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail/scanner.rb +49 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail/scanner_r.rb +261 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail/stringio.rb +280 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail/utils.rb +337 -0
- data/lib/gems/tmail-1.2.3.1/lib/tmail/version.rb +39 -0
- data/lib/gems/tmail-1.2.3.1/meta/MANIFEST +128 -0
- data/lib/gems/tmail-1.2.3.1/meta/VERSION +1 -0
- data/lib/gems/tmail-1.2.3.1/meta/project.yaml +30 -0
- data/lib/gems/tmail-1.2.3.1/meta/unixname +1 -0
- data/lib/gems/validatable-1.6.7/README +118 -0
- data/lib/gems/validatable-1.6.7/lib/child_validation.rb +15 -0
- data/lib/gems/validatable-1.6.7/lib/errors.rb +74 -0
- data/lib/gems/validatable-1.6.7/lib/included_validation.rb +9 -0
- data/lib/gems/validatable-1.6.7/lib/macros.rb +283 -0
- data/lib/gems/validatable-1.6.7/lib/object_extension.rb +21 -0
- data/lib/gems/validatable-1.6.7/lib/requireable.rb +26 -0
- data/lib/gems/validatable-1.6.7/lib/understandable.rb +31 -0
- data/lib/gems/validatable-1.6.7/lib/validatable.rb +19 -0
- data/lib/gems/validatable-1.6.7/lib/validatable_class_methods.rb +85 -0
- data/lib/gems/validatable-1.6.7/lib/validatable_instance_methods.rb +106 -0
- data/lib/gems/validatable-1.6.7/lib/validations/validates_acceptance_of.rb +11 -0
- data/lib/gems/validatable-1.6.7/lib/validations/validates_confirmation_of.rb +15 -0
- data/lib/gems/validatable-1.6.7/lib/validations/validates_each.rb +14 -0
- data/lib/gems/validatable-1.6.7/lib/validations/validates_format_of.rb +13 -0
- data/lib/gems/validatable-1.6.7/lib/validations/validates_length_of.rb +25 -0
- data/lib/gems/validatable-1.6.7/lib/validations/validates_numericality_of.rb +16 -0
- data/lib/gems/validatable-1.6.7/lib/validations/validates_presence_of.rb +13 -0
- data/lib/gems/validatable-1.6.7/lib/validations/validates_true_for.rb +13 -0
- data/lib/gems/validatable-1.6.7/lib/validations/validation_base.rb +88 -0
- data/lib/gems/validatable-1.6.7/rakefile.rb +50 -0
- data/lib/gems/validatable-1.6.7/test/all_tests.rb +1 -0
- data/lib/gems/validatable-1.6.7/test/functional/validatable_test.rb +437 -0
- data/lib/gems/validatable-1.6.7/test/functional/validates_acceptance_of_test.rb +16 -0
- data/lib/gems/validatable-1.6.7/test/functional/validates_confirmation_of_test.rb +56 -0
- data/lib/gems/validatable-1.6.7/test/functional/validates_each_test.rb +14 -0
- data/lib/gems/validatable-1.6.7/test/functional/validates_format_of_test.rb +34 -0
- data/lib/gems/validatable-1.6.7/test/functional/validates_length_of_test.rb +64 -0
- data/lib/gems/validatable-1.6.7/test/functional/validates_numericality_of_test.rb +57 -0
- data/lib/gems/validatable-1.6.7/test/functional/validates_presence_of_test.rb +16 -0
- data/lib/gems/validatable-1.6.7/test/functional/validates_true_for_test.rb +27 -0
- data/lib/gems/validatable-1.6.7/test/test_helper.rb +33 -0
- data/lib/gems/validatable-1.6.7/test/unit/errors_test.rb +64 -0
- data/lib/gems/validatable-1.6.7/test/unit/understandable_test.rb +19 -0
- data/lib/gems/validatable-1.6.7/test/unit/validatable_test.rb +38 -0
- data/lib/gems/validatable-1.6.7/test/unit/validates_acceptance_of_test.rb +21 -0
- data/lib/gems/validatable-1.6.7/test/unit/validates_confirmation_of_test.rb +64 -0
- data/lib/gems/validatable-1.6.7/test/unit/validates_format_of_test.rb +34 -0
- data/lib/gems/validatable-1.6.7/test/unit/validates_length_of_test.rb +75 -0
- data/lib/gems/validatable-1.6.7/test/unit/validates_numericality_of_test.rb +52 -0
- data/lib/gems/validatable-1.6.7/test/unit/validates_presence_of_test.rb +25 -0
- data/lib/gems/validatable-1.6.7/test/unit/validates_true_for_test.rb +29 -0
- data/lib/gems/validatable-1.6.7/test/unit/validation_base_test.rb +52 -0
- data/lib/gems/xmpp4r-0.4/CHANGELOG +83 -0
- data/lib/gems/xmpp4r-0.4/COPYING +340 -0
- data/lib/gems/xmpp4r-0.4/LICENSE +59 -0
- data/lib/gems/xmpp4r-0.4/README.rdoc +110 -0
- data/lib/gems/xmpp4r-0.4/README_ruby19.txt +43 -0
- data/lib/gems/xmpp4r-0.4/Rakefile +262 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/adventure/README +56 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/adventure/adventure.rb +23 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/adventure/adventuremuc.rb +136 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/adventure/cube.xml +15 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/adventure/tower.xml +69 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/adventure/world.rb +424 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/fileserve.conf +11 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/fileserve.rb +346 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/getonline.rb +56 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/gtkmucclient.rb +315 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/migrate.rb +88 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/minimuc.rb +266 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/pep-aggregator/index.xsl +235 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/pep-aggregator/pep-aggregator.rb +147 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/recvfile.rb +84 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/rosterdiscovery.rb +129 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/sendfile.conf +10 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/sendfile.rb +72 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/shellmgr/shellmgr.rb +51 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/shellmgr/shellmgr_jabber.rb +43 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/shellmgr/shellmgr_test.rb +10 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/versionpoll.rb +90 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/xmpping.rb +146 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/advanced/xmppingrc.sample +14 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/basic/change_password.rb +41 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/basic/client.rb +70 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/basic/component.rb +11 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/basic/echo.rb +37 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/basic/jabbersend.rb +41 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/basic/mass_sender.rb +68 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/basic/muc_owner_config.rb +12 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/basic/mucinfo.rb +41 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/basic/mucsimplebot.rb +82 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/basic/register.rb +42 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/basic/remove_registration.rb +18 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/basic/roster.rb +44 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/basic/rosterprint.rb +50 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/basic/rosterrename.rb +34 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/basic/rosterwatch.rb +171 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/basic/send_vcard.rb +67 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/basic/tune_client.rb +56 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/basic/tune_server.rb +58 -0
- data/lib/gems/xmpp4r-0.4/data/doc/xmpp4r/examples/basic/versionbot.rb +75 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r.rb +116 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/base64.rb +32 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/bytestreams.rb +15 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/bytestreams/helper/filetransfer.rb +319 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/bytestreams/helper/ibb/base.rb +257 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/bytestreams/helper/ibb/initiator.rb +31 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/bytestreams/helper/ibb/target.rb +47 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/bytestreams/helper/socks5bytestreams/base.rb +152 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/bytestreams/helper/socks5bytestreams/initiator.rb +86 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/bytestreams/helper/socks5bytestreams/server.rb +198 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/bytestreams/helper/socks5bytestreams/socks5.rb +65 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/bytestreams/helper/socks5bytestreams/target.rb +73 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/bytestreams/helper/socks5bytestreams/target.rb.orig +62 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/bytestreams/iq/bytestreams.rb +170 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/bytestreams/iq/si.rb +206 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/callbacks.rb +124 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/caps.rb +1 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/caps/c.rb +53 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/caps/helper/generator.rb +160 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/caps/helper/helper.rb +87 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/client.rb +317 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/command/helper/responder.rb +53 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/command/iq/command.rb +154 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/component.rb +103 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/connection.rb +219 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/dataforms.rb +5 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/dataforms/x/data.rb +297 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/debuglog.rb +42 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/delay.rb +5 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/delay/x/delay.rb +99 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/discovery.rb +7 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/discovery/helper/responder.rb +165 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/discovery/iq/discoinfo.rb +211 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/discovery/iq/discoitems.rb +147 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/errors.rb +281 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/feature_negotiation.rb +5 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/feature_negotiation/iq/feature.rb +28 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/framework/base.rb +55 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/framework/bot.rb +148 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/httpbinding.rb +5 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/httpbinding/client.rb +285 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/idgenerator.rb +37 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/iq.rb +221 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/jid.rb +167 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/message.rb +148 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/muc.rb +14 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/muc/helper/mucbrowser.rb +92 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/muc/helper/mucclient.rb +462 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/muc/helper/simplemucclient.rb +332 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/muc/iq/mucadmin.rb +23 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/muc/iq/mucadminitem.rb +20 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/muc/iq/mucowner.rb +15 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/muc/item.rb +143 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/muc/x/muc.rb +70 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/muc/x/mucuserinvite.rb +60 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/muc/x/mucuseritem.rb +36 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/presence.rb +232 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/pubsub.rb +8 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/pubsub/children/configuration.rb +86 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/pubsub/children/event.rb +49 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/pubsub/children/item.rb +35 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/pubsub/children/items.rb +44 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/pubsub/children/node_config.rb +48 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/pubsub/children/publish.rb +24 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/pubsub/children/subscription.rb +62 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/pubsub/children/subscription_config.rb +67 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/pubsub/children/unsubscribe.rb +48 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/pubsub/helper/nodebrowser.rb +130 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/pubsub/helper/nodehelper.rb +156 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/pubsub/helper/servicehelper.rb +417 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/pubsub/iq/pubsub.rb +19 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/query.rb +15 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/rexmladdons.rb +151 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/roster.rb +7 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/roster/helper/roster.rb +519 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/roster/iq/roster.rb +215 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/roster/x/roster.rb +138 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/rpc.rb +2 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/rpc/helper/client.rb +123 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/rpc/helper/server.rb +74 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/rpc/helper/xmlrpcaddons.rb +67 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/rpc/iq/rpc.rb +23 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/sasl.rb +237 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/semaphore.rb +38 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/stream.rb +497 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/streamparser.rb +77 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/tune.rb +2 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/tune/helper/helper.rb +58 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/tune/tune.rb +113 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/vcard.rb +6 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/vcard/helper/vcard.rb +84 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/vcard/iq/vcard.rb +109 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/version.rb +7 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/version/helper/responder.rb +72 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/version/helper/simpleresponder.rb +44 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/version/iq/version.rb +105 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/x.rb +37 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/xhtml.rb +1 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/xhtml/html.rb +115 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/xmpp4r.rb +18 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/xmppelement.rb +168 -0
- data/lib/gems/xmpp4r-0.4/lib/xmpp4r/xmppstanza.rb +162 -0
- data/lib/gems/xmpp4r-0.4/setup.rb +1586 -0
- data/lib/gems/xmpp4r-0.4/test/bytestreams/tc_ibb.rb +186 -0
- data/lib/gems/xmpp4r-0.4/test/bytestreams/tc_socks5bytestreams.rb +113 -0
- data/lib/gems/xmpp4r-0.4/test/caps/tc_helper.rb +156 -0
- data/lib/gems/xmpp4r-0.4/test/dataforms/tc_data.rb +81 -0
- data/lib/gems/xmpp4r-0.4/test/delay/tc_xdelay.rb +51 -0
- data/lib/gems/xmpp4r-0.4/test/discovery/tc_responder.rb +91 -0
- data/lib/gems/xmpp4r-0.4/test/lib/assert_equal_xml.rb +14 -0
- data/lib/gems/xmpp4r-0.4/test/lib/clienttester.rb +120 -0
- data/lib/gems/xmpp4r-0.4/test/muc/tc_muc_mucclient.rb +830 -0
- data/lib/gems/xmpp4r-0.4/test/muc/tc_muc_simplemucclient.rb +114 -0
- data/lib/gems/xmpp4r-0.4/test/muc/tc_mucowner.rb +50 -0
- data/lib/gems/xmpp4r-0.4/test/pubsub/tc_helper.rb +662 -0
- data/lib/gems/xmpp4r-0.4/test/pubsub/tc_nodeconfig.rb +54 -0
- data/lib/gems/xmpp4r-0.4/test/pubsub/tc_subscriptionconfig.rb +41 -0
- data/lib/gems/xmpp4r-0.4/test/roster/tc_helper.rb +514 -0
- data/lib/gems/xmpp4r-0.4/test/roster/tc_iqqueryroster.rb +173 -0
- data/lib/gems/xmpp4r-0.4/test/roster/tc_xroster.rb +73 -0
- data/lib/gems/xmpp4r-0.4/test/rpc/tc_helper.rb +96 -0
- data/lib/gems/xmpp4r-0.4/test/tc_callbacks.rb +129 -0
- data/lib/gems/xmpp4r-0.4/test/tc_class_names.rb +146 -0
- data/lib/gems/xmpp4r-0.4/test/tc_client.rb +30 -0
- data/lib/gems/xmpp4r-0.4/test/tc_errors.rb +146 -0
- data/lib/gems/xmpp4r-0.4/test/tc_idgenerator.rb +30 -0
- data/lib/gems/xmpp4r-0.4/test/tc_iq.rb +113 -0
- data/lib/gems/xmpp4r-0.4/test/tc_iqquery.rb +31 -0
- data/lib/gems/xmpp4r-0.4/test/tc_jid.rb +204 -0
- data/lib/gems/xmpp4r-0.4/test/tc_message.rb +116 -0
- data/lib/gems/xmpp4r-0.4/test/tc_presence.rb +150 -0
- data/lib/gems/xmpp4r-0.4/test/tc_rexml.rb +139 -0
- data/lib/gems/xmpp4r-0.4/test/tc_stream.rb +229 -0
- data/lib/gems/xmpp4r-0.4/test/tc_streamComponent.rb +95 -0
- data/lib/gems/xmpp4r-0.4/test/tc_streamError.rb +131 -0
- data/lib/gems/xmpp4r-0.4/test/tc_streamSend.rb +59 -0
- data/lib/gems/xmpp4r-0.4/test/tc_streamparser.rb +112 -0
- data/lib/gems/xmpp4r-0.4/test/tc_xmppstanza.rb +135 -0
- data/lib/gems/xmpp4r-0.4/test/ts_xmpp4r.rb +53 -0
- data/lib/gems/xmpp4r-0.4/test/tune/tc_helper_recv.rb +84 -0
- data/lib/gems/xmpp4r-0.4/test/tune/tc_helper_send.rb +74 -0
- data/lib/gems/xmpp4r-0.4/test/tune/tc_tune.rb +79 -0
- data/lib/gems/xmpp4r-0.4/test/vcard/tc_helper.rb +49 -0
- data/lib/gems/xmpp4r-0.4/test/vcard/tc_iqvcard.rb +62 -0
- data/lib/gems/xmpp4r-0.4/test/version/tc_helper.rb +60 -0
- data/lib/gems/xmpp4r-0.4/test/version/tc_iqqueryversion.rb +97 -0
- data/lib/gems/xmpp4r-0.4/test/xhtml/tc_html.rb +41 -0
- data/lib/gems/xmpp4r-0.4/tools/gen_requires.bash +31 -0
- data/lib/gems/xmpp4r-0.4/tools/xmpp4r-gemspec-test.rb +11 -0
- data/lib/gems/xmpp4r-0.4/xmpp4r.gemspec +291 -0
- data/lib/gems/xmpp4r-simple-0.8.8/CHANGELOG +73 -0
- data/lib/gems/xmpp4r-simple-0.8.8/COPYING +281 -0
- data/lib/gems/xmpp4r-simple-0.8.8/README +59 -0
- data/lib/gems/xmpp4r-simple-0.8.8/lib/xmpp4r-simple.rb +492 -0
- data/lib/gems/xmpp4r-simple-0.8.8/test/test_xmpp4r_simple.rb +242 -0
- data/lib/mack-notifier.rb +1 -3
- metadata +398 -46
@@ -0,0 +1,65 @@
|
|
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 'socket'
|
6
|
+
|
7
|
+
module Jabber
|
8
|
+
module Bytestreams
|
9
|
+
|
10
|
+
##
|
11
|
+
# A SOCKS5 client implementation
|
12
|
+
#
|
13
|
+
# ==Usage:
|
14
|
+
# * Initialize with proxy's address and port
|
15
|
+
# * Authenticate
|
16
|
+
# * Connect to target host
|
17
|
+
class SOCKS5Socket < TCPSocket
|
18
|
+
##
|
19
|
+
# Connect to SOCKS5 proxy
|
20
|
+
def initialize(socks_host, socks_port)
|
21
|
+
super(socks_host, socks_port)
|
22
|
+
end
|
23
|
+
|
24
|
+
##
|
25
|
+
# Authenticate for SOCKS5 proxy
|
26
|
+
#
|
27
|
+
# Currently supports only 'no authentication required'
|
28
|
+
def auth
|
29
|
+
write("\x05\x01\x00")
|
30
|
+
buf = read(2)
|
31
|
+
if buf.nil? or buf != "\x05\x00"
|
32
|
+
close
|
33
|
+
raise SOCKS5Error.new("Invalid SOCKS5 authentication: #{buf.inspect}")
|
34
|
+
end
|
35
|
+
|
36
|
+
self
|
37
|
+
end
|
38
|
+
|
39
|
+
##
|
40
|
+
# Issue a CONNECT request to a host name
|
41
|
+
# which is to be resolved by the proxy.
|
42
|
+
# domain:: [String] Host name
|
43
|
+
# port:: [Fixnum] Port number
|
44
|
+
def connect_domain(domain, port)
|
45
|
+
write("\x05\x01\x00\x03#{domain.size.chr}#{domain}#{[port].pack("n")}")
|
46
|
+
buf = read(4)
|
47
|
+
if buf.nil? or buf[0..1] != "\005\000"
|
48
|
+
close
|
49
|
+
raise SOCKS5Error.new("Invalid SOCKS5 connect: #{buf.inspect}")
|
50
|
+
end
|
51
|
+
|
52
|
+
case buf.respond_to?(:bytes) ? buf.bytes.to_a[3] : buf[3]
|
53
|
+
when 1 then read(6) # IPv4 addr
|
54
|
+
when 3 then read(3 + domain.size) # Domain
|
55
|
+
when 4 then read(18) # IPv6 addr
|
56
|
+
else
|
57
|
+
close
|
58
|
+
raise SOCKS5Error.new("Invalid SOCKS5 address type #{buf[3].to_s}")
|
59
|
+
end
|
60
|
+
|
61
|
+
self
|
62
|
+
end
|
63
|
+
end
|
64
|
+
end
|
65
|
+
end
|
@@ -0,0 +1,73 @@
|
|
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
|
+
module Jabber
|
6
|
+
module Bytestreams
|
7
|
+
##
|
8
|
+
# SOCKS5 Bytestreams implementation of the target site
|
9
|
+
class SOCKS5BytestreamsTarget < SOCKS5Bytestreams
|
10
|
+
##
|
11
|
+
# See SOCKS5Bytestreams#initialize
|
12
|
+
def initialize(stream, session_id, initiator_jid, target_jid)
|
13
|
+
@connect_timeout = 60
|
14
|
+
super
|
15
|
+
end
|
16
|
+
##
|
17
|
+
# Wait until the stream has been established
|
18
|
+
#
|
19
|
+
# May raise various exceptions
|
20
|
+
def accept
|
21
|
+
error = nil
|
22
|
+
connect_sem = Semaphore.new
|
23
|
+
|
24
|
+
@stream.add_iq_callback(200, self) { |iq|
|
25
|
+
if iq.type == :set and iq.from == @initiator_jid and iq.to == @target_jid and iq.query.kind_of?(IqQueryBytestreams)
|
26
|
+
begin
|
27
|
+
@stream.delete_iq_callback(self)
|
28
|
+
|
29
|
+
iq.query.each_element('streamhost') { |streamhost|
|
30
|
+
if streamhost.host and streamhost.port and not @socks
|
31
|
+
begin
|
32
|
+
@socks = connect_socks(streamhost)
|
33
|
+
@streamhost_used = streamhost
|
34
|
+
rescue Exception => e
|
35
|
+
Jabber::debuglog("SOCKS5 Bytestreams: #{e.class}: #{e}\n#{e.backtrace.join("\n")}")
|
36
|
+
@streamhost_cbs.process(streamhost, :failure, e)
|
37
|
+
end
|
38
|
+
end
|
39
|
+
}
|
40
|
+
|
41
|
+
reply = iq.answer(false)
|
42
|
+
if @streamhost_used
|
43
|
+
reply.type = :result
|
44
|
+
reply.add(IqQueryBytestreams.new)
|
45
|
+
reply.query.add(StreamHostUsed.new(@streamhost_used.jid))
|
46
|
+
else
|
47
|
+
reply.type = :error
|
48
|
+
reply.add(ErrorResponse.new('item-not-found'))
|
49
|
+
end
|
50
|
+
@stream.send(reply)
|
51
|
+
rescue Exception => e
|
52
|
+
error = e
|
53
|
+
end
|
54
|
+
|
55
|
+
connect_sem.run
|
56
|
+
true
|
57
|
+
else
|
58
|
+
false
|
59
|
+
end
|
60
|
+
}
|
61
|
+
|
62
|
+
begin
|
63
|
+
Timeout::timeout(@connect_timeout) { connect_sem.wait }
|
64
|
+
rescue Timeout::Error
|
65
|
+
@stream.delete_iq_callback(self)
|
66
|
+
end
|
67
|
+
|
68
|
+
raise error if error
|
69
|
+
(@socks != nil)
|
70
|
+
end
|
71
|
+
end
|
72
|
+
end
|
73
|
+
end
|
@@ -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
|
+
module Jabber
|
6
|
+
module Bytestreams
|
7
|
+
##
|
8
|
+
# SOCKS5 Bytestreams implementation of the target site
|
9
|
+
class SOCKS5BytestreamsTarget < SOCKS5Bytestreams
|
10
|
+
##
|
11
|
+
# Wait until the stream has been established
|
12
|
+
#
|
13
|
+
# May raise various exceptions
|
14
|
+
def accept
|
15
|
+
error = nil
|
16
|
+
connect_sem = Semaphore.new
|
17
|
+
|
18
|
+
@stream.add_iq_callback(200, self) { |iq|
|
19
|
+
if iq.type == :set and iq.from == @initiator_jid and iq.to == @target_jid and iq.query.kind_of?(IqQueryBytestreams)
|
20
|
+
begin
|
21
|
+
@stream.delete_iq_callback(self)
|
22
|
+
|
23
|
+
iq.query.each_element('streamhost') { |streamhost|
|
24
|
+
if streamhost.host and streamhost.port and not @socks
|
25
|
+
begin
|
26
|
+
@socks = connect_socks(streamhost)
|
27
|
+
@streamhost_used = streamhost
|
28
|
+
rescue Exception => e
|
29
|
+
Jabber::debuglog("SOCKS5 Bytestreams: #{e.class}: #{e}\n#{e.backtrace.join("\n")}")
|
30
|
+
@streamhost_cbs.process(streamhost, :failure, e)
|
31
|
+
end
|
32
|
+
end
|
33
|
+
}
|
34
|
+
|
35
|
+
reply = iq.answer(false)
|
36
|
+
if @streamhost_used
|
37
|
+
reply.type = :result
|
38
|
+
reply.add(IqQueryBytestreams.new)
|
39
|
+
reply.query.add(StreamHostUsed.new(@streamhost_used.jid))
|
40
|
+
else
|
41
|
+
reply.type = :error
|
42
|
+
reply.add(ErrorResponse.new('item-not-found'))
|
43
|
+
end
|
44
|
+
@stream.send(reply)
|
45
|
+
rescue Exception => e
|
46
|
+
error = e
|
47
|
+
end
|
48
|
+
|
49
|
+
connect_sem.run
|
50
|
+
true
|
51
|
+
else
|
52
|
+
false
|
53
|
+
end
|
54
|
+
}
|
55
|
+
|
56
|
+
connect_sem.wait
|
57
|
+
raise error if error
|
58
|
+
(@socks != nil)
|
59
|
+
end
|
60
|
+
end
|
61
|
+
end
|
62
|
+
end
|
@@ -0,0 +1,170 @@
|
|
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
|
+
module Jabber
|
6
|
+
module Bytestreams
|
7
|
+
NS_BYTESTREAMS = 'http://jabber.org/protocol/bytestreams'
|
8
|
+
|
9
|
+
##
|
10
|
+
# Class for accessing <query/> elements with
|
11
|
+
# xmlns='http://jabber.org/protocol/bytestreams'
|
12
|
+
# in <iq/> stanzas.
|
13
|
+
class IqQueryBytestreams < IqQuery
|
14
|
+
name_xmlns 'query', NS_BYTESTREAMS
|
15
|
+
|
16
|
+
##
|
17
|
+
# Initialize such a <query/>
|
18
|
+
# sid:: [String] Session-ID
|
19
|
+
# mode:: [Symbol] :tcp or :udp
|
20
|
+
def initialize(sid=nil, mode=nil)
|
21
|
+
super()
|
22
|
+
self.sid = sid
|
23
|
+
self.mode = mode
|
24
|
+
end
|
25
|
+
|
26
|
+
##
|
27
|
+
# Session-ID
|
28
|
+
def sid
|
29
|
+
attributes['sid']
|
30
|
+
end
|
31
|
+
|
32
|
+
##
|
33
|
+
# Set Session-ID
|
34
|
+
def sid=(s)
|
35
|
+
attributes['sid'] = s
|
36
|
+
end
|
37
|
+
|
38
|
+
##
|
39
|
+
# Transfer mode
|
40
|
+
# result:: :tcp or :udp
|
41
|
+
def mode
|
42
|
+
case attributes['mode']
|
43
|
+
when 'udp' then :udp
|
44
|
+
else :tcp
|
45
|
+
end
|
46
|
+
end
|
47
|
+
|
48
|
+
##
|
49
|
+
# Set the transfer mode
|
50
|
+
# m:: :tcp or :udp
|
51
|
+
def mode=(m)
|
52
|
+
case m
|
53
|
+
when :udp then attributes['mode'] = 'udp'
|
54
|
+
else attributes['mode'] = 'tcp'
|
55
|
+
end
|
56
|
+
end
|
57
|
+
|
58
|
+
##
|
59
|
+
# Get the <streamhost-used/> child
|
60
|
+
# result:: [StreamHostUsed]
|
61
|
+
def streamhost_used
|
62
|
+
first_element('streamhost-used')
|
63
|
+
end
|
64
|
+
|
65
|
+
##
|
66
|
+
# Get the text of the <activate/> child
|
67
|
+
# result:: [JID] or [nil]
|
68
|
+
def activate
|
69
|
+
j = first_element_text('activate')
|
70
|
+
j ? JID.new(j) : nil
|
71
|
+
end
|
72
|
+
|
73
|
+
##
|
74
|
+
# Set the text of the <activate/> child
|
75
|
+
# s:: [JID]
|
76
|
+
def activate=(s)
|
77
|
+
replace_element_text('activate', s ? s.to_s : nil)
|
78
|
+
end
|
79
|
+
end
|
80
|
+
|
81
|
+
|
82
|
+
##
|
83
|
+
# <streamhost/> element, normally appear
|
84
|
+
# as children of IqQueryBytestreams
|
85
|
+
class StreamHost < XMPPElement
|
86
|
+
name_xmlns 'streamhost', NS_BYTESTREAMS
|
87
|
+
|
88
|
+
##
|
89
|
+
# Initialize a <streamhost/> element
|
90
|
+
# jid:: [JID]
|
91
|
+
# host:: [String] Hostname or IP address
|
92
|
+
# port:: [Fixnum] Port number
|
93
|
+
def initialize(jid=nil, host=nil, port=nil)
|
94
|
+
super()
|
95
|
+
self.jid = jid
|
96
|
+
self.host = host
|
97
|
+
self.port = port
|
98
|
+
end
|
99
|
+
|
100
|
+
##
|
101
|
+
# Get the JID of the streamhost
|
102
|
+
def jid
|
103
|
+
(a = attributes['jid']) ? JID.new(a) : nil
|
104
|
+
end
|
105
|
+
|
106
|
+
##
|
107
|
+
# Set the JID of the streamhost
|
108
|
+
def jid=(j)
|
109
|
+
attributes['jid'] = (j ? j.to_s : nil)
|
110
|
+
end
|
111
|
+
|
112
|
+
##
|
113
|
+
# Get the host address of the streamhost
|
114
|
+
def host
|
115
|
+
attributes['host']
|
116
|
+
end
|
117
|
+
|
118
|
+
##
|
119
|
+
# Set the host address of the streamhost
|
120
|
+
def host=(h)
|
121
|
+
attributes['host'] = h
|
122
|
+
end
|
123
|
+
|
124
|
+
##
|
125
|
+
# Get the zeroconf attribute of the streamhost
|
126
|
+
def zeroconf
|
127
|
+
attributes['zeroconf']
|
128
|
+
end
|
129
|
+
|
130
|
+
##
|
131
|
+
# Set the zeroconf attribute of the streamhost
|
132
|
+
def zeroconf=(s)
|
133
|
+
attributes['zeroconf'] = s
|
134
|
+
end
|
135
|
+
|
136
|
+
##
|
137
|
+
# Get the port number of the streamhost
|
138
|
+
def port
|
139
|
+
p = attributes['port'].to_i
|
140
|
+
(p == 0 ? nil : p)
|
141
|
+
end
|
142
|
+
|
143
|
+
##
|
144
|
+
# Set the port number of the streamhost
|
145
|
+
def port=(p)
|
146
|
+
attributes['port'] = p.to_s
|
147
|
+
end
|
148
|
+
end
|
149
|
+
|
150
|
+
##
|
151
|
+
# <streamhost-used/> element, normally appears
|
152
|
+
# as child of IqQueryBytestreams
|
153
|
+
class StreamHostUsed < XMPPElement
|
154
|
+
name_xmlns 'streamhost-used', NS_BYTESTREAMS
|
155
|
+
|
156
|
+
def initialize(jid=nil)
|
157
|
+
super()
|
158
|
+
self.jid = jid
|
159
|
+
end
|
160
|
+
|
161
|
+
def jid
|
162
|
+
(a = attributes['jid']) ? JID.new(a) : nil
|
163
|
+
end
|
164
|
+
|
165
|
+
def jid=(j)
|
166
|
+
attributes['jid'] = (j ? j.to_s : nil)
|
167
|
+
end
|
168
|
+
end
|
169
|
+
end
|
170
|
+
end
|
@@ -0,0 +1,206 @@
|
|
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' # For Time#xmlschema
|
6
|
+
|
7
|
+
require 'xmpp4r/feature_negotiation/iq/feature'
|
8
|
+
|
9
|
+
module Jabber
|
10
|
+
module Bytestreams
|
11
|
+
PROFILE_FILETRANSFER = 'http://jabber.org/protocol/si/profile/file-transfer'
|
12
|
+
|
13
|
+
##
|
14
|
+
# Iq child 'si' for Stream-Initiation
|
15
|
+
class IqSi < XMPPElement
|
16
|
+
name_xmlns 'si', 'http://jabber.org/protocol/si'
|
17
|
+
force_xmlns true
|
18
|
+
|
19
|
+
def initialize(id=nil, profile=nil, mime_type=nil)
|
20
|
+
super()
|
21
|
+
|
22
|
+
self.id = id
|
23
|
+
self.profile = profile
|
24
|
+
self.mime_type = mime_type
|
25
|
+
end
|
26
|
+
|
27
|
+
##
|
28
|
+
# Session ID of this stream
|
29
|
+
def id
|
30
|
+
attributes['id']
|
31
|
+
end
|
32
|
+
|
33
|
+
##
|
34
|
+
# Set Session ID of this stream
|
35
|
+
def id=(s)
|
36
|
+
attributes['id'] = s
|
37
|
+
end
|
38
|
+
|
39
|
+
##
|
40
|
+
# MIME type of this stream
|
41
|
+
def mime_type
|
42
|
+
attributes['mime-type']
|
43
|
+
end
|
44
|
+
|
45
|
+
##
|
46
|
+
# Set MIME type of this stream
|
47
|
+
def mime_type=(s)
|
48
|
+
attributes['mime-type'] = s
|
49
|
+
end
|
50
|
+
|
51
|
+
##
|
52
|
+
# Stream profile, can indicate file-transfer
|
53
|
+
def profile
|
54
|
+
attributes['profile']
|
55
|
+
end
|
56
|
+
|
57
|
+
##
|
58
|
+
# Set stream profile
|
59
|
+
def profile=(s)
|
60
|
+
attributes['profile'] = s
|
61
|
+
end
|
62
|
+
|
63
|
+
##
|
64
|
+
# <file/> child
|
65
|
+
# result:: [IqSiFile]
|
66
|
+
def file
|
67
|
+
first_element('file')
|
68
|
+
end
|
69
|
+
|
70
|
+
##
|
71
|
+
# <feature/> child
|
72
|
+
# result:: [IqFeature]
|
73
|
+
def feature
|
74
|
+
first_element('feature')
|
75
|
+
end
|
76
|
+
end
|
77
|
+
|
78
|
+
|
79
|
+
##
|
80
|
+
# File-transfer meta-information,
|
81
|
+
# may appear as <file/> in IqSi
|
82
|
+
class IqSiFile < XMPPElement
|
83
|
+
name_xmlns 'file', PROFILE_FILETRANSFER
|
84
|
+
|
85
|
+
def initialize(fname=nil, size=nil)
|
86
|
+
super()
|
87
|
+
self.fname = fname
|
88
|
+
self.size = size
|
89
|
+
end
|
90
|
+
|
91
|
+
##
|
92
|
+
# Get filename (attribute 'name')
|
93
|
+
def fname
|
94
|
+
attributes['name']
|
95
|
+
end
|
96
|
+
|
97
|
+
##
|
98
|
+
# Set filename (attribute 'name')
|
99
|
+
def fname=(s)
|
100
|
+
attributes['name'] = s
|
101
|
+
end
|
102
|
+
|
103
|
+
##
|
104
|
+
# Get MD5 hash
|
105
|
+
def hash
|
106
|
+
attributes['hash']
|
107
|
+
end
|
108
|
+
|
109
|
+
##
|
110
|
+
# Set MD5 hash
|
111
|
+
def hash=(s)
|
112
|
+
attributes['hash'] = s
|
113
|
+
end
|
114
|
+
|
115
|
+
##
|
116
|
+
# Get file date
|
117
|
+
# result:: [Time] or nil
|
118
|
+
def date
|
119
|
+
begin
|
120
|
+
Time.xmlschema(attributes['date'])
|
121
|
+
rescue ArgumentError
|
122
|
+
nil
|
123
|
+
end
|
124
|
+
end
|
125
|
+
|
126
|
+
##
|
127
|
+
# Set file date
|
128
|
+
# d:: [Time] or nil
|
129
|
+
def date=(d)
|
130
|
+
attributes['date'] = (d ? d.xmlschema : nil)
|
131
|
+
end
|
132
|
+
|
133
|
+
##
|
134
|
+
# File size in bytes
|
135
|
+
# result:: [Fixnum]
|
136
|
+
def size
|
137
|
+
(attributes['size'] =~ /^\d+$/) ? attributes['size'].to_i : nil
|
138
|
+
end
|
139
|
+
|
140
|
+
##
|
141
|
+
# Set file size
|
142
|
+
def size=(s)
|
143
|
+
attributes['size'] = s ? s.to_s : nil
|
144
|
+
end
|
145
|
+
|
146
|
+
##
|
147
|
+
# File description
|
148
|
+
def description
|
149
|
+
first_element_text('desc')
|
150
|
+
end
|
151
|
+
|
152
|
+
##
|
153
|
+
# Set file description
|
154
|
+
def description=(s)
|
155
|
+
replace_element_text('desc', s)
|
156
|
+
end
|
157
|
+
|
158
|
+
##
|
159
|
+
# <range/> child
|
160
|
+
#
|
161
|
+
# A file-transfer offer may contain this with
|
162
|
+
# no attributes set, indicating the ability to
|
163
|
+
# do ranged transfers.
|
164
|
+
# result:: [IqSiFileRange]
|
165
|
+
def range
|
166
|
+
first_element('range')
|
167
|
+
end
|
168
|
+
end
|
169
|
+
|
170
|
+
##
|
171
|
+
# Information for ranged transfers
|
172
|
+
class IqSiFileRange < XMPPElement
|
173
|
+
name_xmlns 'range', PROFILE_FILETRANSFER
|
174
|
+
def initialize(offset=nil, length=nil)
|
175
|
+
super()
|
176
|
+
|
177
|
+
self.offset = offset
|
178
|
+
self.length = length
|
179
|
+
end
|
180
|
+
|
181
|
+
##
|
182
|
+
# File offset (for continuing an interrupted transfer)
|
183
|
+
def offset
|
184
|
+
(attributes['offset'] =~ /^\d+$/) ? attributes['offset'].to_i : nil
|
185
|
+
end
|
186
|
+
|
187
|
+
##
|
188
|
+
# Set file offset
|
189
|
+
def offset=(o)
|
190
|
+
attributes['offset'] = (o ? o.to_s : nil)
|
191
|
+
end
|
192
|
+
|
193
|
+
##
|
194
|
+
# File length (if not to transfer whole file)
|
195
|
+
def length
|
196
|
+
(attributes['length'] =~ /^\d+$/) ? attributes['length'].to_i : nil
|
197
|
+
end
|
198
|
+
|
199
|
+
##
|
200
|
+
# Set file length
|
201
|
+
def length=(o)
|
202
|
+
attributes['length'] = (o ? o.to_s : nil)
|
203
|
+
end
|
204
|
+
end
|
205
|
+
end
|
206
|
+
end
|