typo 3.99.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.DS_Store +0 -0
- data/CHANGELOG +718 -0
- data/MAINTAINERS +30 -0
- data/MIT-LICENSE +21 -0
- data/README +92 -0
- data/Rakefile +10 -0
- data/app/apis/blogger_service.rb +94 -0
- data/app/apis/meta_weblog_service.rb +197 -0
- data/app/apis/movable_type_service.rb +150 -0
- data/app/apis/typo_web_service.rb +26 -0
- data/app/controllers/accounts_controller.rb +52 -0
- data/app/controllers/admin/base_controller.rb +21 -0
- data/app/controllers/admin/blacklist_controller.rb +50 -0
- data/app/controllers/admin/cache_controller.rb +31 -0
- data/app/controllers/admin/categories_controller.rb +64 -0
- data/app/controllers/admin/comments_controller.rb +57 -0
- data/app/controllers/admin/content_controller.rb +147 -0
- data/app/controllers/admin/general_controller.rb +42 -0
- data/app/controllers/admin/pages_controller.rb +50 -0
- data/app/controllers/admin/resources_controller.rb +98 -0
- data/app/controllers/admin/sidebar_controller.rb +74 -0
- data/app/controllers/admin/textfilters_controller.rb +104 -0
- data/app/controllers/admin/themes_controller.rb +20 -0
- data/app/controllers/admin/trackbacks_controller.rb +54 -0
- data/app/controllers/admin/users_controller.rb +41 -0
- data/app/controllers/application.rb +66 -0
- data/app/controllers/articles_controller.rb +218 -0
- data/app/controllers/backend_controller.rb +11 -0
- data/app/controllers/content_controller.rb +98 -0
- data/app/controllers/live_controller.rb +10 -0
- data/app/controllers/redirect_controller.rb +16 -0
- data/app/controllers/sidebar_controller.rb +50 -0
- data/app/controllers/textfilter_controller.rb +22 -0
- data/app/controllers/theme_controller.rb +52 -0
- data/app/controllers/xml_controller.rb +111 -0
- data/app/helpers/accounts_helper.rb +2 -0
- data/app/helpers/admin/base_helper.rb +124 -0
- data/app/helpers/admin/blacklist_helper.rb +2 -0
- data/app/helpers/admin/cache_helper.rb +2 -0
- data/app/helpers/admin/comments_helper.rb +2 -0
- data/app/helpers/admin/content_helper.rb +2 -0
- data/app/helpers/admin/general_helper.rb +2 -0
- data/app/helpers/admin/pages_helper.rb +2 -0
- data/app/helpers/admin/resources_helper.rb +2 -0
- data/app/helpers/admin/sidebar_helper.rb +2 -0
- data/app/helpers/admin/textfilters_helper.rb +2 -0
- data/app/helpers/admin/themes_helper.rb +2 -0
- data/app/helpers/admin/trackbacks_helper.rb +2 -0
- data/app/helpers/admin/users_helper.rb +2 -0
- data/app/helpers/application_helper.rb +92 -0
- data/app/helpers/articles_helper.rb +163 -0
- data/app/helpers/backend_helper.rb +2 -0
- data/app/helpers/content_helper.rb +3 -0
- data/app/helpers/mail_helper.rb +6 -0
- data/app/helpers/redirect_helper.rb +2 -0
- data/app/helpers/sidebar_helper.rb +22 -0
- data/app/helpers/sidebars/plugin_helper.rb +2 -0
- data/app/helpers/text_filter_plugin_helper.rb +2 -0
- data/app/helpers/textfilter_helper.rb +2 -0
- data/app/helpers/theme_helper.rb +23 -0
- data/app/helpers/xml_helper.rb +21 -0
- data/app/models/aggregations/audioscrobbler.rb +54 -0
- data/app/models/aggregations/backpack.rb +57 -0
- data/app/models/aggregations/delicious.rb +57 -0
- data/app/models/aggregations/flickr.rb +89 -0
- data/app/models/aggregations/fortythree.rb +62 -0
- data/app/models/aggregations/magnolia.rb +81 -0
- data/app/models/aggregations/tada.rb +75 -0
- data/app/models/aggregations/technorati.rb +51 -0
- data/app/models/aggregations/upcoming.rb +74 -0
- data/app/models/article.rb +211 -0
- data/app/models/blacklist_pattern.rb +22 -0
- data/app/models/blog.rb +162 -0
- data/app/models/blog_sweeper.rb +23 -0
- data/app/models/category.rb +62 -0
- data/app/models/comment.rb +76 -0
- data/app/models/config_manager.rb +80 -0
- data/app/models/content.rb +222 -0
- data/app/models/content_observer.rb +5 -0
- data/app/models/content_state/base.rb +51 -0
- data/app/models/content_state/draft.rb +40 -0
- data/app/models/content_state/factory.rb +16 -0
- data/app/models/content_state/just_published.rb +47 -0
- data/app/models/content_state/new.rb +45 -0
- data/app/models/content_state/publication_pending.rb +43 -0
- data/app/models/content_state/published.rb +35 -0
- data/app/models/email_notifier.rb +9 -0
- data/app/models/notification_mailer.rb +34 -0
- data/app/models/page.rb +20 -0
- data/app/models/page_cache.rb +29 -0
- data/app/models/ping.rb +129 -0
- data/app/models/redirect.rb +3 -0
- data/app/models/resource.rb +76 -0
- data/app/models/sidebar.rb +32 -0
- data/app/models/simple_cache.rb +37 -0
- data/app/models/tag.rb +63 -0
- data/app/models/text_filter.rb +111 -0
- data/app/models/theme.rb +44 -0
- data/app/models/trackback.rb +51 -0
- data/app/models/trigger.rb +31 -0
- data/app/models/user.rb +113 -0
- data/app/models/web_notifier.rb +7 -0
- data/app/views/accounts/login.rhtml +24 -0
- data/app/views/accounts/logout.rhtml +12 -0
- data/app/views/accounts/signup.rhtml +26 -0
- data/app/views/accounts/welcome.rhtml +13 -0
- data/app/views/admin/base/_recent_comments.rhtml +10 -0
- data/app/views/admin/base/_recent_trackbacks.rhtml +10 -0
- data/app/views/admin/blacklist/_blacklist_patterns.rhtml +16 -0
- data/app/views/admin/blacklist/_form.rhtml +15 -0
- data/app/views/admin/blacklist/_quick_post.rhtml +16 -0
- data/app/views/admin/blacklist/destroy.rhtml +10 -0
- data/app/views/admin/blacklist/edit.rhtml +14 -0
- data/app/views/admin/blacklist/list.rhtml +13 -0
- data/app/views/admin/cache/list.rhtml +8 -0
- data/app/views/admin/categories/_categories.rhtml +14 -0
- data/app/views/admin/categories/_form.rhtml +7 -0
- data/app/views/admin/categories/_quick_post.rhtml +11 -0
- data/app/views/admin/categories/destroy.rhtml +10 -0
- data/app/views/admin/categories/edit.rhtml +13 -0
- data/app/views/admin/categories/list.rhtml +15 -0
- data/app/views/admin/categories/reorder.rhtml +9 -0
- data/app/views/admin/categories/show.rhtml +18 -0
- data/app/views/admin/comments/_form.rhtml +19 -0
- data/app/views/admin/comments/comments.rhtml +4 -0
- data/app/views/admin/comments/destroy.rhtml +11 -0
- data/app/views/admin/comments/edit.rhtml +18 -0
- data/app/views/admin/comments/list.rhtml +31 -0
- data/app/views/admin/comments/new.rhtml +15 -0
- data/app/views/admin/comments/show.rhtml +10 -0
- data/app/views/admin/content/_articles.rhtml +20 -0
- data/app/views/admin/content/_attachment.rhtml +17 -0
- data/app/views/admin/content/_form.rhtml +51 -0
- data/app/views/admin/content/_pages.rhtml +3 -0
- data/app/views/admin/content/_quick_post.rhtml +20 -0
- data/app/views/admin/content/_show_categories.rhtml +9 -0
- data/app/views/admin/content/_show_resources.rhtml +9 -0
- data/app/views/admin/content/destroy.rhtml +11 -0
- data/app/views/admin/content/edit.rhtml +28 -0
- data/app/views/admin/content/list.rhtml +20 -0
- data/app/views/admin/content/new.rhtml +27 -0
- data/app/views/admin/content/preview.rhtml +3 -0
- data/app/views/admin/content/show.rhtml +25 -0
- data/app/views/admin/general/index.rhtml +216 -0
- data/app/views/admin/general/update_database.rhtml +44 -0
- data/app/views/admin/pages/_form.rhtml +19 -0
- data/app/views/admin/pages/_pages.rhtml +18 -0
- data/app/views/admin/pages/_quick_post.rhtml +21 -0
- data/app/views/admin/pages/destroy.rhtml +11 -0
- data/app/views/admin/pages/edit.rhtml +28 -0
- data/app/views/admin/pages/list.rhtml +13 -0
- data/app/views/admin/pages/new.rhtml +24 -0
- data/app/views/admin/pages/preview.rhtml +1 -0
- data/app/views/admin/pages/show.rhtml +14 -0
- data/app/views/admin/resources/_itunes_category_add.rhtml +11 -0
- data/app/views/admin/resources/_itunes_category_edit.rhtml +32 -0
- data/app/views/admin/resources/_metadata_add.rhtml +22 -0
- data/app/views/admin/resources/_metadata_edit.rhtml +22 -0
- data/app/views/admin/resources/_mime_edit.rhtml +8 -0
- data/app/views/admin/resources/_pages.rhtml +3 -0
- data/app/views/admin/resources/_resources.rhtml +40 -0
- data/app/views/admin/resources/destroy.rhtml +11 -0
- data/app/views/admin/resources/list.rhtml +9 -0
- data/app/views/admin/resources/new.rhtml +12 -0
- data/app/views/admin/sidebar/_active.rhtml +14 -0
- data/app/views/admin/sidebar/_actives.rhtml +9 -0
- data/app/views/admin/sidebar/_available.rhtml +5 -0
- data/app/views/admin/sidebar/_availables.rhtml +5 -0
- data/app/views/admin/sidebar/_publish.rhtml +2 -0
- data/app/views/admin/sidebar/_target.rhtml +1 -0
- data/app/views/admin/sidebar/index.rhtml +34 -0
- data/app/views/admin/sidebar/publish.rjs +6 -0
- data/app/views/admin/sidebar/remove.rjs +5 -0
- data/app/views/admin/sidebar/set_active.rjs +10 -0
- data/app/views/admin/textfilters/_form.rhtml +45 -0
- data/app/views/admin/textfilters/_macros.rhtml +16 -0
- data/app/views/admin/textfilters/_textfilters.rhtml +20 -0
- data/app/views/admin/textfilters/destroy.rhtml +10 -0
- data/app/views/admin/textfilters/edit.rhtml +17 -0
- data/app/views/admin/textfilters/list.rhtml +15 -0
- data/app/views/admin/textfilters/macro_help.rhtml +3 -0
- data/app/views/admin/textfilters/new.rhtml +15 -0
- data/app/views/admin/textfilters/preview.rhtml +3 -0
- data/app/views/admin/textfilters/show.rhtml +34 -0
- data/app/views/admin/textfilters/show_help.rhtml +8 -0
- data/app/views/admin/themes/index.rhtml +12 -0
- data/app/views/admin/trackbacks/_form.rhtml +19 -0
- data/app/views/admin/trackbacks/destroy.rhtml +6 -0
- data/app/views/admin/trackbacks/edit.rhtml +14 -0
- data/app/views/admin/trackbacks/list.rhtml +31 -0
- data/app/views/admin/trackbacks/new.rhtml +15 -0
- data/app/views/admin/trackbacks/show.rhtml +14 -0
- data/app/views/admin/users/_form.rhtml +48 -0
- data/app/views/admin/users/_user.rhtml +9 -0
- data/app/views/admin/users/destroy.rhtml +14 -0
- data/app/views/admin/users/edit.rhtml +14 -0
- data/app/views/admin/users/list.rhtml +9 -0
- data/app/views/admin/users/new.rhtml +15 -0
- data/app/views/admin/users/show.rhtml +18 -0
- data/app/views/articles/_article.rhtml +4 -0
- data/app/views/articles/_comment.rhtml +7 -0
- data/app/views/articles/_comment_box.rhtml +43 -0
- data/app/views/articles/_comment_error.rhtml +1 -0
- data/app/views/articles/_trackback.rhtml +7 -0
- data/app/views/articles/archives.rhtml +22 -0
- data/app/views/articles/comment_preview.rhtml +3 -0
- data/app/views/articles/error.rhtml +3 -0
- data/app/views/articles/groupings.rhtml +14 -0
- data/app/views/articles/index.rhtml +11 -0
- data/app/views/articles/read.rhtml +70 -0
- data/app/views/articles/trackback.rxml +5 -0
- data/app/views/articles/view_page.rhtml +3 -0
- data/app/views/layouts/accounts.rhtml +22 -0
- data/app/views/layouts/administration.rhtml +75 -0
- data/app/views/layouts/sidebar.rhtml +40 -0
- data/app/views/live/search.rhtml +10 -0
- data/app/views/notification_mailer/_mail_footer.rhtml +7 -0
- data/app/views/notification_mailer/_mail_header.rhtml +1 -0
- data/app/views/notification_mailer/article.rhtml +6 -0
- data/app/views/notification_mailer/comment.rhtml +11 -0
- data/app/views/notification_mailer/trackback.rhtml +3 -0
- data/app/views/settings/done.rhtml +2 -0
- data/app/views/settings/install.rhtml +12 -0
- data/app/views/shared/_search.rhtml +10 -0
- data/app/views/sidebar/_row.rhtml +1 -0
- data/app/views/sidebar/_sidebar.rhtml +5 -0
- data/app/views/sidebar/display_plugins.rhtml +5 -0
- data/app/views/sidebar/show.rhtml +1 -0
- data/app/views/theme/static_view_test.rhtml +1 -0
- data/app/views/xml/_atom10_item_article.rxml +39 -0
- data/app/views/xml/_atom10_item_comment.rxml +13 -0
- data/app/views/xml/_atom10_item_trackback.rxml +16 -0
- data/app/views/xml/_itunes_item_resource.rxml +30 -0
- data/app/views/xml/_rss20_item_article.rxml +35 -0
- data/app/views/xml/_rss20_item_comment.rxml +7 -0
- data/app/views/xml/_rss20_item_trackback.rxml +7 -0
- data/app/views/xml/atom10_feed.rxml +18 -0
- data/app/views/xml/itunes_feed.rxml +29 -0
- data/app/views/xml/rsd.rxml +19 -0
- data/app/views/xml/rss20_feed.rxml +18 -0
- data/bin/typo +12 -0
- data/cache/META/DATA/ACTION_PARAM/localhost.3000/articles/index/.cache +540 -0
- data/cache/META/DATA/ACTION_PARAM/localhost.3000/articles/permalink/day=09&month=09&title=i-need-a-new-keyboard-and-mouse&year=2005.cache +414 -0
- data/cache/META/META/ACTION_PARAM/localhost.3000/articles/index/.cache +3 -0
- data/cache/META/META/ACTION_PARAM/localhost.3000/articles/permalink/day=09&month=09&title=i-need-a-new-keyboard-and-mouse&year=2005.cache +3 -0
- data/components/plugins/sidebars/aimpresence/content.rhtml +4 -0
- data/components/plugins/sidebars/aimpresence_controller.rb +10 -0
- data/components/plugins/sidebars/amazon/content.rhtml +4 -0
- data/components/plugins/sidebars/amazon_controller.rb +17 -0
- data/components/plugins/sidebars/archives/content.rhtml +11 -0
- data/components/plugins/sidebars/archives_controller.rb +24 -0
- data/components/plugins/sidebars/audioscrobbler/content.rhtml +10 -0
- data/components/plugins/sidebars/audioscrobbler_controller.rb +10 -0
- data/components/plugins/sidebars/backpack/content.rhtml +12 -0
- data/components/plugins/sidebars/backpack_controller.rb +17 -0
- data/components/plugins/sidebars/category/content.rhtml +10 -0
- data/components/plugins/sidebars/category_controller.rb +13 -0
- data/components/plugins/sidebars/delicious/content.rhtml +20 -0
- data/components/plugins/sidebars/delicious_controller.rb +29 -0
- data/components/plugins/sidebars/flickr/content.rhtml +15 -0
- data/components/plugins/sidebars/flickr_controller.rb +16 -0
- data/components/plugins/sidebars/fortythree/content.rhtml +8 -0
- data/components/plugins/sidebars/fortythree_controller.rb +12 -0
- data/components/plugins/sidebars/fortythreeplaces/content.rhtml +8 -0
- data/components/plugins/sidebars/fortythreeplaces_controller.rb +12 -0
- data/components/plugins/sidebars/magnolia/content.rhtml +12 -0
- data/components/plugins/sidebars/magnolia_controller.rb +17 -0
- data/components/plugins/sidebars/recent_comments/content.rhtml +12 -0
- data/components/plugins/sidebars/recent_comments_controller.rb +23 -0
- data/components/plugins/sidebars/static/content.rhtml +2 -0
- data/components/plugins/sidebars/static_controller.rb +23 -0
- data/components/plugins/sidebars/tada/content.rhtml +12 -0
- data/components/plugins/sidebars/tada_controller.rb +12 -0
- data/components/plugins/sidebars/tag/content.rhtml +8 -0
- data/components/plugins/sidebars/tag_controller.rb +18 -0
- data/components/plugins/sidebars/technorati/content.rhtml +8 -0
- data/components/plugins/sidebars/technorati_controller.rb +12 -0
- data/components/plugins/sidebars/upcoming/content.rhtml +8 -0
- data/components/plugins/sidebars/upcoming_controller.rb +11 -0
- data/components/plugins/sidebars/xbox/content.rhtml +2 -0
- data/components/plugins/sidebars/xbox_controller.rb +6 -0
- data/components/plugins/sidebars/xml/content.rhtml +12 -0
- data/components/plugins/sidebars/xml_controller.rb +11 -0
- data/components/plugins/textfilters/amazon_controller.rb +39 -0
- data/components/plugins/textfilters/code_controller.rb +59 -0
- data/components/plugins/textfilters/flickr_controller.rb +75 -0
- data/components/plugins/textfilters/htmlfilter_controller.rb +8 -0
- data/components/plugins/textfilters/lightbox_controller.rb +122 -0
- data/components/plugins/textfilters/macropost_controller.rb +14 -0
- data/components/plugins/textfilters/macropre_controller.rb +14 -0
- data/components/plugins/textfilters/markdown_controller.rb +32 -0
- data/components/plugins/textfilters/none_controller.rb +8 -0
- data/components/plugins/textfilters/smartypants_controller.rb +8 -0
- data/components/plugins/textfilters/sparkline_controller.rb +87 -0
- data/components/plugins/textfilters/textile_controller.rb +8 -0
- data/components/sidebars/README +36 -0
- data/config/boot.rb +44 -0
- data/config/database.yml +17 -0
- data/config/database.yml-pgsql +17 -0
- data/config/database.yml.example +18 -0
- data/config/environment.rb +145 -0
- data/config/environments/development.rb +17 -0
- data/config/environments/production.rb +19 -0
- data/config/environments/test.rb +26 -0
- data/config/iTunes.yml +72 -0
- data/config/lighttpd.conf +46 -0
- data/config/mail.yml +8 -0
- data/config/mail.yml.example +8 -0
- data/config/routes.rb +92 -0
- data/db/DB +0 -0
- data/db/DB.test +0 -0
- data/db/converters/README +14 -0
- data/db/converters/feed.rb +68 -0
- data/db/converters/mt-import.rb +72 -0
- data/db/converters/mt3.rb +172 -0
- data/db/converters/rss.rb +67 -0
- data/db/converters/s9y.rb +182 -0
- data/db/converters/textpattern.rb +137 -0
- data/db/converters/wordpress.rb +187 -0
- data/db/development_structure.sql +691 -0
- data/db/migrate/001_initial_schema.rb +127 -0
- data/db/migrate/002_add_user_email.rb +17 -0
- data/db/migrate/003_add_article_user_id.rb +20 -0
- data/db/migrate/004_add_sidebars.rb +31 -0
- data/db/migrate/005_add_cache_table.rb +20 -0
- data/db/migrate/006_add_pages.rb +17 -0
- data/db/migrate/007_add_permalink.rb +36 -0
- data/db/migrate/008_add_page_title.rb +9 -0
- data/db/migrate/009_add_article_guid.rb +10 -0
- data/db/migrate/010_add_tags.rb +19 -0
- data/db/migrate/011_add_article_id.rb +17 -0
- data/db/migrate/012_enlarge_settings.rb +11 -0
- data/db/migrate/013_add_textfilters.rb +33 -0
- data/db/migrate/014_move_text_filter_to_text_filter_id.rb +43 -0
- data/db/migrate/015_convert_mysql_to_innodb.rb +19 -0
- data/db/migrate/016_fix_is_primary_postgres.rb +19 -0
- data/db/migrate/017_add_comment_user_id.rb +23 -0
- data/db/migrate/018_add_guids.rb +13 -0
- data/db/migrate/019_add_whiteboards_to_content.rb +15 -0
- data/db/migrate/020_superclass_articles.rb +167 -0
- data/db/migrate/021_superclass_comments.rb +94 -0
- data/db/migrate/022_superclass_trackbacks.rb +71 -0
- data/db/migrate/023_superclass_pages.rb +64 -0
- data/db/migrate/024_cleanup_contents.rb +54 -0
- data/db/migrate/025_add_itunes_metadata.rb +29 -0
- data/db/migrate/026_add_redirect_table.rb +13 -0
- data/db/migrate/027_set_comment_published_flag.rb +19 -0
- data/db/migrate/028_rename_redirect_to.rb +12 -0
- data/db/migrate/029_add_user_notification.rb +29 -0
- data/db/migrate/030_index_sessions.rb +9 -0
- data/db/migrate/031_add_notifications_table.rb +14 -0
- data/db/migrate/032_add_jabber_notification.rb +11 -0
- data/db/migrate/033_add_count_caching.rb +34 -0
- data/db/migrate/034_boolify_published.rb +36 -0
- data/db/migrate/035_boolify_content_allow_foo.rb +36 -0
- data/db/migrate/036_add_tag_display_name.rb +53 -0
- data/db/migrate/037_enlarge_ip_field.rb +9 -0
- data/db/migrate/038_add_blog_object.rb +52 -0
- data/db/migrate/039_serialize_blog_attributes.rb +160 -0
- data/db/migrate/040_attach_content_to_blog.rb +28 -0
- data/db/migrate/041_fixup_default_sidebars.rb +18 -0
- data/db/migrate/042_remove_sidebar_staged_config.rb +22 -0
- data/db/migrate/043_create_triggers.rb +14 -0
- data/db/migrate/044_add_published_at_to_content.rb +18 -0
- data/db/migrate/045_fix_contents_published_default.rb +9 -0
- data/db/migrate/046_fixup_forthcoming_publications.rb +40 -0
- data/db/schema.mysql-v3.sql +218 -0
- data/db/schema.mysql.sql +218 -0
- data/db/schema.postgresql.sql +218 -0
- data/db/schema.rb +169 -0
- data/db/schema.sqlite.sql +218 -0
- data/db/schema.sqlserver.sql +232 -0
- data/db/schema_version +1 -0
- data/db/scripts/fix_permalinks.rb +5 -0
- data/db/updates/update.168.to.200.mysql.sql +33 -0
- data/db/updates/update.168.to.200.psql.sql +30 -0
- data/doc/Installer.txt +55 -0
- data/doc/README_FOR_APP +2 -0
- data/installer/rails-installer.rb +488 -0
- data/installer/rails_installer_defaults.yml +4 -0
- data/installer/typo-installer.rb +35 -0
- data/lib/backpack_api.rb +202 -0
- data/lib/bare_migration.rb +142 -0
- data/lib/email_notify.rb +32 -0
- data/lib/format.rb +19 -0
- data/lib/generators/sidebar/sidebar_generator.rb +13 -0
- data/lib/generators/sidebar/templates/components/plugins/sidebars/controller_template.rb +20 -0
- data/lib/generators/sidebar/templates/components/plugins/sidebars/views/content_template.rhtml +4 -0
- data/lib/jabber_notify.rb +32 -0
- data/lib/login_system.rb +85 -0
- data/lib/migrator.rb +28 -0
- data/lib/rails_patch/active_record.rb +36 -0
- data/lib/rails_patch/components.rb +14 -0
- data/lib/sidebars/component_plugin.rb +5 -0
- data/lib/sidebars/plugin.rb +241 -0
- data/lib/spam_protection.rb +126 -0
- data/lib/tasks/release.rake +171 -0
- data/lib/tasks/schemas.rake +6 -0
- data/lib/tasks/sweep_cache.rake +6 -0
- data/lib/text_filter_plugin.rb +97 -0
- data/lib/transforms.rb +26 -0
- data/lib/typo_guid.rb +10 -0
- data/lib/typo_plugins.rb +19 -0
- data/lib/typo_version.rb +1 -0
- data/lib/xmlrpc_fix.rb +13 -0
- data/public/.htaccess +34 -0
- data/public/404.html +8 -0
- data/public/500.html +8 -0
- data/public/dispatch.cgi +10 -0
- data/public/dispatch.fcgi +24 -0
- data/public/dispatch.rb +10 -0
- data/public/favicon.ico +0 -0
- data/public/images/admin/dot-vertical.gif +0 -0
- data/public/images/admin/h-tile.gif +0 -0
- data/public/images/admin/hdr-tile.gif +0 -0
- data/public/images/admin/toggle.gif +0 -0
- data/public/images/bg.jpg +0 -0
- data/public/images/bgcolor.jpg +0 -0
- data/public/images/body_bg.png +0 -0
- data/public/images/branding_bg.png +0 -0
- data/public/images/branding_logo.png +0 -0
- data/public/images/checked.gif +0 -0
- data/public/images/content_bg.png +0 -0
- data/public/images/delete.png +0 -0
- data/public/images/footer.jpg +0 -0
- data/public/images/footer.png +0 -0
- data/public/images/global_bg.png +0 -0
- data/public/images/global_logo.png +0 -0
- data/public/images/go.png +0 -0
- data/public/images/header.jpg +0 -0
- data/public/images/loading.gif +0 -0
- data/public/images/not-checked copy.gif +0 -0
- data/public/images/not-checked.gif +0 -0
- data/public/images/overlay.png +0 -0
- data/public/images/powered.gif +0 -0
- data/public/images/section_bg.png +0 -0
- data/public/images/sections_bg.png +0 -0
- data/public/images/sections_hilite.png +0 -0
- data/public/images/sections_hover.png +0 -0
- data/public/images/spinner-blue.gif +0 -0
- data/public/images/spinner.gif +0 -0
- data/public/images/spot-header.gif +0 -0
- data/public/images/spot-title.gif +0 -0
- data/public/images/x-ed.gif +0 -0
- data/public/javascripts/application.js +2 -0
- data/public/javascripts/controls.js +815 -0
- data/public/javascripts/cookies.js +60 -0
- data/public/javascripts/dragdrop.js +724 -0
- data/public/javascripts/effects.js +953 -0
- data/public/javascripts/lightbox.js +348 -0
- data/public/javascripts/prototype.js +1985 -0
- data/public/javascripts/scriptaculous.js +47 -0
- data/public/javascripts/slider.js +258 -0
- data/public/javascripts/typo.js +85 -0
- data/public/robots.txt +2 -0
- data/public/stylesheets/administration.css +585 -0
- data/public/stylesheets/lightbox.css +22 -0
- data/public/stylesheets/rss.css +54 -0
- data/public/stylesheets/user-styles.css +0 -0
- data/script/about +3 -0
- data/script/benchmarker +19 -0
- data/script/breakpointer +3 -0
- data/script/console +3 -0
- data/script/destroy +3 -0
- data/script/generate +3 -0
- data/script/lighttpd +2 -0
- data/script/logreport +79 -0
- data/script/migrate +31 -0
- data/script/performance/benchmarker +3 -0
- data/script/performance/profiler +3 -0
- data/script/plugin +3 -0
- data/script/process/reaper +3 -0
- data/script/process/spawner +3 -0
- data/script/process/spinner +3 -0
- data/script/profiler +34 -0
- data/script/runner +3 -0
- data/script/server +3 -0
- data/script/spacecheck +40 -0
- data/test/fixtures/articles_categories.yml +31 -0
- data/test/fixtures/articles_tags.yml +19 -0
- data/test/fixtures/blacklist_patterns.yml +10 -0
- data/test/fixtures/blogs.yml +74 -0
- data/test/fixtures/categories.yml +35 -0
- data/test/fixtures/contents.yml +297 -0
- data/test/fixtures/notification_mailer/article +3 -0
- data/test/fixtures/notification_mailer/comment +3 -0
- data/test/fixtures/notification_mailer/trackback +3 -0
- data/test/fixtures/notifications.yml +0 -0
- data/test/fixtures/page_caches.yml +7 -0
- data/test/fixtures/redirects.yml +13 -0
- data/test/fixtures/resources.yml +24 -0
- data/test/fixtures/sidebars.yml +5 -0
- data/test/fixtures/tags.yml +13 -0
- data/test/fixtures/text_filters.yml +42 -0
- data/test/fixtures/triggers.yml +1 -0
- data/test/fixtures/users.yml +56 -0
- data/test/functional/accounts_controller_test.rb +82 -0
- data/test/functional/admin/article_preview_test.rb +67 -0
- data/test/functional/admin/blacklist_controller_test.rb +63 -0
- data/test/functional/admin/categories_controller_test.rb +112 -0
- data/test/functional/admin/comments_controller_test.rb +78 -0
- data/test/functional/admin/content_controller_test.rb +234 -0
- data/test/functional/admin/general_controller_test.rb +26 -0
- data/test/functional/admin/pages_controller_test.rb +103 -0
- data/test/functional/admin/resources_controller_test.rb +49 -0
- data/test/functional/admin/textfilters_controller_test.rb +29 -0
- data/test/functional/admin/themes_controller_test.rb +34 -0
- data/test/functional/admin/trackbacks_controller_test.rb +76 -0
- data/test/functional/admin/users_controller_test.rb +72 -0
- data/test/functional/articles_controller_test.rb +525 -0
- data/test/functional/backend_controller_test.rb +273 -0
- data/test/functional/redirect_controller_test.rb +40 -0
- data/test/functional/textfilter_controller_test.rb +275 -0
- data/test/functional/theme_controller_test.rb +45 -0
- data/test/functional/xml_controller_test.rb +353 -0
- data/test/mocks/test/dns_mock.rb +13 -0
- data/test/mocks/test/flickr_mock.rb +30 -0
- data/test/mocks/test/http_mock.rb +38 -0
- data/test/mocks/test/theme_mock.rb +5 -0
- data/test/mocks/test/xmlrpc_mock.rb +27 -0
- data/test/mocks/themes/123-numbers-in-path/about.markdown +0 -0
- data/test/mocks/themes/CamelCaseDirectory/about.markdown +0 -0
- data/test/mocks/themes/azure/about.markdown +5 -0
- data/test/mocks/themes/azure/layouts/default.rhtml +50 -0
- data/test/mocks/themes/azure/preview.png +0 -0
- data/test/mocks/themes/azure/views/theme/static_view_test.rhtml +1 -0
- data/test/mocks/themes/i-have-special-chars/about.markdown +0 -0
- data/test/test_helper.rb +95 -0
- data/test/unit/article_test.rb +245 -0
- data/test/unit/assumptions_tests.rb +54 -0
- data/test/unit/audioscrobbler_test.rb +132 -0
- data/test/unit/blacklist_pattern_test.rb +14 -0
- data/test/unit/blog_test.rb +83 -0
- data/test/unit/category_test.rb +37 -0
- data/test/unit/comment_test.rb +117 -0
- data/test/unit/configuration_test.rb +21 -0
- data/test/unit/content_state/factory_test.rb +84 -0
- data/test/unit/delicious_test.rb +96 -0
- data/test/unit/flickr_test.rb +134 -0
- data/test/unit/fortythree_test.rb +66 -0
- data/test/unit/magnolia_test.rb +87 -0
- data/test/unit/metafragment_test.rb +63 -0
- data/test/unit/notification_mailer_test.rb +55 -0
- data/test/unit/observer_test.rb +40 -0
- data/test/unit/page_cache_test.rb +34 -0
- data/test/unit/page_test.rb +25 -0
- data/test/unit/ping_test.rb +111 -0
- data/test/unit/redirect_test.rb +19 -0
- data/test/unit/resource_test.rb +71 -0
- data/test/unit/sidebar_test.rb +14 -0
- data/test/unit/tag_test.rb +66 -0
- data/test/unit/text_filter_test.rb +126 -0
- data/test/unit/theme_test.rb +44 -0
- data/test/unit/trackback_test.rb +45 -0
- data/test/unit/trigger_test.rb +40 -0
- data/test/unit/user_test.rb +111 -0
- data/themes/azure/about.markdown +5 -0
- data/themes/azure/images/bg-tile.gif +0 -0
- data/themes/azure/images/bracket.gif +0 -0
- data/themes/azure/images/bullet.gif +0 -0
- data/themes/azure/images/hdr.gif +0 -0
- data/themes/azure/images/q-close.gif +0 -0
- data/themes/azure/images/q-open.gif +0 -0
- data/themes/azure/images/sbar-tile.gif +0 -0
- data/themes/azure/images/spinner.gif +0 -0
- data/themes/azure/images/xlink.gif +0 -0
- data/themes/azure/layouts/default.rhtml +50 -0
- data/themes/azure/preview.png +0 -0
- data/themes/azure/stylesheets/azure.css +436 -0
- data/themes/azure/stylesheets/print.css +30 -0
- data/themes/azure/views/theme/static_view_test.rhtml +1 -0
- data/vendor/akismet/Akismet.rb +140 -0
- data/vendor/bluecloth/CHANGES +366 -0
- data/vendor/bluecloth/LICENSE +340 -0
- data/vendor/bluecloth/README +99 -0
- data/vendor/bluecloth/bin/bluecloth +83 -0
- data/vendor/bluecloth/install.rb +150 -0
- data/vendor/bluecloth/lib/bluecloth.rb +1144 -0
- data/vendor/bluecloth/test.rb +117 -0
- data/vendor/bluecloth/tests/00_Class.tests.rb +71 -0
- data/vendor/bluecloth/tests/05_Markdown.tests.rb +1527 -0
- data/vendor/bluecloth/tests/10_Bug.tests.rb +57 -0
- data/vendor/bluecloth/tests/15_Contrib.tests.rb +132 -0
- data/vendor/bluecloth/tests/bctestcase.rb +274 -0
- data/vendor/bluecloth/tests/data/antsugar.txt +34 -0
- data/vendor/bluecloth/tests/data/ml-announce.txt +17 -0
- data/vendor/bluecloth/tests/data/re-overflow.txt +67 -0
- data/vendor/bluecloth/tests/data/re-overflow2.txt +281 -0
- data/vendor/bluecloth/utils.rb +553 -0
- data/vendor/flickr/Rakefile +36 -0
- data/vendor/flickr/flickr.rb +490 -0
- data/vendor/flickr/index.html +129 -0
- data/vendor/flickr/test_flickr.rb +173 -0
- data/vendor/jabber4r/CHANGES +8 -0
- data/vendor/jabber4r/LICENSE.txt +12 -0
- data/vendor/jabber4r/README +180 -0
- data/vendor/jabber4r/Rakefile.rb +143 -0
- data/vendor/jabber4r/lib/jabber4r/jabber4r.rb +22 -0
- data/vendor/jabber4r/lib/jabber4r/jid.rb +93 -0
- data/vendor/jabber4r/lib/jabber4r/protocol.rb +1384 -0
- data/vendor/jabber4r/lib/jabber4r/rexml_1.8_patch.rb +16 -0
- data/vendor/jabber4r/lib/jabber4r/roster.rb +322 -0
- data/vendor/jabber4r/lib/jabber4r/session.rb +615 -0
- data/vendor/jabber4r/lib/jabber4r/vcard.rb +42 -0
- data/vendor/plugins/expiring_action_cache/init.rb +2 -0
- data/vendor/plugins/expiring_action_cache/lib/actionparamcache.rb +113 -0
- data/vendor/plugins/expiring_action_cache/lib/metafragment.rb +46 -0
- data/vendor/plugins/upload_progress/CHANGELOG +3 -0
- data/vendor/plugins/upload_progress/MIT-LICENSE +20 -0
- data/vendor/plugins/upload_progress/README +45 -0
- data/vendor/plugins/upload_progress/Rakefile +23 -0
- data/vendor/plugins/upload_progress/init.rb +7 -0
- data/vendor/plugins/upload_progress/lib/multipart_progress.rb +169 -0
- data/vendor/plugins/upload_progress/lib/progress.rb +145 -0
- data/vendor/plugins/upload_progress/lib/upload_progress.rb +303 -0
- data/vendor/plugins/upload_progress/lib/upload_progress_helper.rb +424 -0
- data/vendor/plugins/upload_progress/public/stylesheets/upload_progress.css +21 -0
- data/vendor/plugins/upload_progress/test/multipart_progress_testx.rb +364 -0
- data/vendor/plugins/upload_progress/test/upload_progress_helper_testx.rb +134 -0
- data/vendor/plugins/upload_progress/test/upload_progress_testx.rb +88 -0
- data/vendor/redcloth/RedCloth.gemspec +52 -0
- data/vendor/redcloth/bin/redcloth +3 -0
- data/vendor/redcloth/doc/CHANGELOG +160 -0
- data/vendor/redcloth/doc/COPYING +25 -0
- data/vendor/redcloth/doc/README +106 -0
- data/vendor/redcloth/doc/REFERENCE +216 -0
- data/vendor/redcloth/doc/make.rb +359 -0
- data/vendor/redcloth/install.rb +1032 -0
- data/vendor/redcloth/lib/redcloth.rb +1130 -0
- data/vendor/redcloth/run-tests.rb +28 -0
- data/vendor/redcloth/setup.rb +1376 -0
- data/vendor/redcloth/tests/code.yml +105 -0
- data/vendor/redcloth/tests/hard_breaks.yml +26 -0
- data/vendor/redcloth/tests/images.yml +171 -0
- data/vendor/redcloth/tests/instiki.yml +39 -0
- data/vendor/redcloth/tests/links.yml +155 -0
- data/vendor/redcloth/tests/lists.yml +77 -0
- data/vendor/redcloth/tests/markdown.yml +218 -0
- data/vendor/redcloth/tests/poignant.yml +64 -0
- data/vendor/redcloth/tests/table.yml +198 -0
- data/vendor/redcloth/tests/textism.yml +406 -0
- data/vendor/ruby-mp3info/lib/mp3info.rb +720 -0
- data/vendor/rubypants/README +114 -0
- data/vendor/rubypants/Rakefile +55 -0
- data/vendor/rubypants/html/classes/RubyPants.html +924 -0
- data/vendor/rubypants/html/created.rid +1 -0
- data/vendor/rubypants/html/files/README.html +248 -0
- data/vendor/rubypants/html/files/rubypants_rb.html +125 -0
- data/vendor/rubypants/html/fr_class_index.html +27 -0
- data/vendor/rubypants/html/fr_file_index.html +28 -0
- data/vendor/rubypants/html/fr_method_index.html +38 -0
- data/vendor/rubypants/html/index.html +24 -0
- data/vendor/rubypants/html/rdoc-style.css +172 -0
- data/vendor/rubypants/install.rb +9 -0
- data/vendor/rubypants/rubypants.rb +490 -0
- data/vendor/rubypants/test_rubypants.rb +162 -0
- data/vendor/sparklines/README.txt +47 -0
- data/vendor/sparklines/USAGE +14 -0
- data/vendor/sparklines/lib/sparklines.rb +435 -0
- data/vendor/sparklines/samples/sparklinestest.rb +26 -0
- data/vendor/sparklines/sparklines_generator.rb +9 -0
- data/vendor/sparklines/templates/sparklines_controller.rb +30 -0
- data/vendor/sparklines/templates/sparklines_helper.rb +30 -0
- data/vendor/syntax/LICENSE +27 -0
- data/vendor/syntax/NEWS +16 -0
- data/vendor/syntax/README +38 -0
- data/vendor/syntax/Rakefile +194 -0
- data/vendor/syntax/api/classes/Syntax.html +173 -0
- data/vendor/syntax/api/classes/Syntax/Convertors.html +91 -0
- data/vendor/syntax/api/classes/Syntax/Convertors/Abstract.html +159 -0
- data/vendor/syntax/api/classes/Syntax/Convertors/HTML.html +149 -0
- data/vendor/syntax/api/classes/Syntax/Default.html +123 -0
- data/vendor/syntax/api/classes/Syntax/Ruby.html +319 -0
- data/vendor/syntax/api/classes/Syntax/Token.html +151 -0
- data/vendor/syntax/api/classes/Syntax/Tokenizer.html +324 -0
- data/vendor/syntax/api/classes/Syntax/Version.html +109 -0
- data/vendor/syntax/api/classes/Syntax/XML.html +205 -0
- data/vendor/syntax/api/classes/Syntax/YAML.html +189 -0
- data/vendor/syntax/api/created.rid +1 -0
- data/vendor/syntax/api/files/README.html +155 -0
- data/vendor/syntax/api/files/lib/syntax/common_rb.html +96 -0
- data/vendor/syntax/api/files/lib/syntax/convertors/abstract_rb.html +96 -0
- data/vendor/syntax/api/files/lib/syntax/convertors/html_rb.html +96 -0
- data/vendor/syntax/api/files/lib/syntax/lang/ruby_rb.html +96 -0
- data/vendor/syntax/api/files/lib/syntax/lang/xml_rb.html +96 -0
- data/vendor/syntax/api/files/lib/syntax/lang/yaml_rb.html +96 -0
- data/vendor/syntax/api/files/lib/syntax/version_rb.html +92 -0
- data/vendor/syntax/api/files/lib/syntax_rb.html +96 -0
- data/vendor/syntax/api/fr_class_index.html +56 -0
- data/vendor/syntax/api/fr_file_index.html +54 -0
- data/vendor/syntax/api/fr_method_index.html +65 -0
- data/vendor/syntax/api/index.html +26 -0
- data/vendor/syntax/api/rdoc-style.css +175 -0
- data/vendor/syntax/doc/manual-html/chapter-1.html +198 -0
- data/vendor/syntax/doc/manual-html/chapter-2.html +262 -0
- data/vendor/syntax/doc/manual-html/chapter-3.html +266 -0
- data/vendor/syntax/doc/manual-html/chapter-4.html +267 -0
- data/vendor/syntax/doc/manual-html/index.html +152 -0
- data/vendor/syntax/doc/manual-html/stylesheets/manual.css +270 -0
- data/vendor/syntax/doc/manual-html/stylesheets/ruby.css +17 -0
- data/vendor/syntax/doc/manual/chapter.erb +38 -0
- data/vendor/syntax/doc/manual/example.erb +18 -0
- data/vendor/syntax/doc/manual/index.erb +29 -0
- data/vendor/syntax/doc/manual/manual.rb +311 -0
- data/vendor/syntax/doc/manual/manual.yml +43 -0
- data/vendor/syntax/doc/manual/page.erb +87 -0
- data/vendor/syntax/doc/manual/parts/0000.txt +5 -0
- data/vendor/syntax/doc/manual/parts/0001.txt +16 -0
- data/vendor/syntax/doc/manual/parts/0002.txt +24 -0
- data/vendor/syntax/doc/manual/parts/0003.txt +6 -0
- data/vendor/syntax/doc/manual/parts/0004.txt +32 -0
- data/vendor/syntax/doc/manual/parts/0005.txt +18 -0
- data/vendor/syntax/doc/manual/parts/0006.txt +62 -0
- data/vendor/syntax/doc/manual/parts/0007.txt +3 -0
- data/vendor/syntax/doc/manual/parts/0008.txt +5 -0
- data/vendor/syntax/doc/manual/parts/0009.txt +29 -0
- data/vendor/syntax/doc/manual/parts/0010.txt +21 -0
- data/vendor/syntax/doc/manual/stylesheets/manual.css +270 -0
- data/vendor/syntax/doc/manual/stylesheets/ruby.css +17 -0
- data/vendor/syntax/doc/manual/tutorial.erb +30 -0
- data/vendor/syntax/lib/syntax.rb +38 -0
- data/vendor/syntax/lib/syntax/common.rb +163 -0
- data/vendor/syntax/lib/syntax/convertors/abstract.rb +27 -0
- data/vendor/syntax/lib/syntax/convertors/html.rb +51 -0
- data/vendor/syntax/lib/syntax/lang/ruby.rb +317 -0
- data/vendor/syntax/lib/syntax/lang/xml.rb +108 -0
- data/vendor/syntax/lib/syntax/lang/yaml.rb +105 -0
- data/vendor/syntax/lib/syntax/version.rb +9 -0
- data/vendor/syntax/setup.rb +1331 -0
- data/vendor/syntax/syntax.gemspec +24 -0
- data/vendor/syntax/test/ALL-TESTS.rb +5 -0
- data/vendor/syntax/test/syntax/tc_ruby.rb +871 -0
- data/vendor/syntax/test/syntax/tc_xml.rb +202 -0
- data/vendor/syntax/test/syntax/tc_yaml.rb +228 -0
- data/vendor/syntax/test/syntax/tokenizer_testcase.rb +40 -0
- data/vendor/syntax/test/tc_syntax.rb +22 -0
- data/vendor/uuidtools/CHANGELOG +4 -0
- data/vendor/uuidtools/README +13 -0
- data/vendor/uuidtools/install.rb +30 -0
- data/vendor/uuidtools/lib/uuidtools.rb +555 -0
- data/vendor/uuidtools/rakefile +112 -0
- metadata +1022 -0
@@ -0,0 +1,143 @@
|
|
1
|
+
$:.unshift('lib')
|
2
|
+
require 'rubygems'
|
3
|
+
begin
|
4
|
+
require 'xforge'
|
5
|
+
rescue LoadError
|
6
|
+
puts "**** Warning. XForge not installed. Release tasks won't work ****"
|
7
|
+
end
|
8
|
+
require 'rake/gempackagetask'
|
9
|
+
require 'rake/contrib/rubyforgepublisher'
|
10
|
+
require 'rake/clean'
|
11
|
+
require 'rake/testtask'
|
12
|
+
require 'rake/rdoctask'
|
13
|
+
|
14
|
+
PKG_NAME = "jabber4r"
|
15
|
+
|
16
|
+
PKG_VERSION = "0.8.0"
|
17
|
+
PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}"
|
18
|
+
PKG_FILES = FileList[
|
19
|
+
'[A-Z]*',
|
20
|
+
'lib/**/*.rb'
|
21
|
+
]
|
22
|
+
|
23
|
+
task :default => [:gem]
|
24
|
+
|
25
|
+
Rake::TestTask.new do |t|
|
26
|
+
t.libs << "test"
|
27
|
+
t.test_files = FileList['**/*test*.rb']
|
28
|
+
t.verbose = true
|
29
|
+
end
|
30
|
+
|
31
|
+
# Create a task to build the RDOC documentation tree.
|
32
|
+
rd = Rake::RDocTask.new("rdoc") do |rdoc|
|
33
|
+
rdoc.rdoc_dir = 'html'
|
34
|
+
rdoc.title = "Jabber4r"
|
35
|
+
rdoc.options << '--line-numbers' << '--inline-source' << '--main' << 'README'
|
36
|
+
rdoc.rdoc_files.include('README')
|
37
|
+
rdoc.rdoc_files.include('lib/**/*.rb')
|
38
|
+
end
|
39
|
+
|
40
|
+
# ====================================================================
|
41
|
+
# Create a task that will package the Rake software into distributable
|
42
|
+
# tar, zip and gem files.
|
43
|
+
|
44
|
+
spec = Gem::Specification.new do |s|
|
45
|
+
|
46
|
+
#### Basic information.
|
47
|
+
|
48
|
+
s.name = PKG_NAME
|
49
|
+
s.version = PKG_VERSION
|
50
|
+
s.summary = "Jabber4r is a pure-Ruby Jabber client library"
|
51
|
+
s.description = <<-EOF
|
52
|
+
The purpose of this library is to allow Ruby applications to
|
53
|
+
talk to a Jabber IM system. Jabber is an open-source instant
|
54
|
+
messaging service, which can be learned about at http://www.jabber.org
|
55
|
+
EOF
|
56
|
+
|
57
|
+
s.files = PKG_FILES.to_a
|
58
|
+
s.require_path = 'lib'
|
59
|
+
|
60
|
+
#### Documentation and testing.
|
61
|
+
|
62
|
+
s.has_rdoc = true
|
63
|
+
s.extra_rdoc_files = rd.rdoc_files.reject { |fn| fn =~ /\.rb$/ }.to_a
|
64
|
+
s.rdoc_options <<
|
65
|
+
'--title' << 'Jabber4r' <<
|
66
|
+
'--main' << 'README' <<
|
67
|
+
'--line-numbers'
|
68
|
+
|
69
|
+
#### Author and project details.
|
70
|
+
|
71
|
+
s.author = "Richard Kilmer"
|
72
|
+
s.email = "rich@infoether.com"
|
73
|
+
s.rubyforge_project = "jabber4r"
|
74
|
+
s.homepage = "http://jabber4r.rubyforge.org"
|
75
|
+
end
|
76
|
+
|
77
|
+
desc "Build Gem"
|
78
|
+
Rake::GemPackageTask.new(spec) do |pkg|
|
79
|
+
pkg.need_zip = true
|
80
|
+
pkg.need_tar = true
|
81
|
+
end
|
82
|
+
task :gem => [:test]
|
83
|
+
|
84
|
+
# Support Tasks ------------------------------------------------------
|
85
|
+
|
86
|
+
def egrep(pattern)
|
87
|
+
Dir['**/*.rb'].each do |fn|
|
88
|
+
count = 0
|
89
|
+
open(fn) do |f|
|
90
|
+
while line = f.gets
|
91
|
+
count += 1
|
92
|
+
if line =~ pattern
|
93
|
+
puts "#{fn}:#{count}:#{line}"
|
94
|
+
end
|
95
|
+
end
|
96
|
+
end
|
97
|
+
end
|
98
|
+
end
|
99
|
+
|
100
|
+
desc "Look for TODO and FIXME tags in the code"
|
101
|
+
task :todo do
|
102
|
+
egrep /#.*(FIXME|TODO|TBD)/
|
103
|
+
end
|
104
|
+
|
105
|
+
task :release => [:verify_env_vars, :release_files, :publish_doc, :publish_news]
|
106
|
+
|
107
|
+
task :verify_env_vars do
|
108
|
+
raise "RUBYFORGE_USER environment variable not set!" unless ENV['RUBYFORGE_USER']
|
109
|
+
raise "RUBYFORGE_PASSWORD environment variable not set!" unless ENV['RUBYFORGE_PASSWORD']
|
110
|
+
end
|
111
|
+
|
112
|
+
task :publish_doc => [:rdoc] do
|
113
|
+
publisher = Rake::RubyForgePublisher.new(PKG_NAME, ENV['RUBYFORGE_USER'])
|
114
|
+
publisher.upload
|
115
|
+
end
|
116
|
+
|
117
|
+
desc "Release gem to RubyForge. MAKE SURE PKG_VERSION is aligned with the CHANGELOG file"
|
118
|
+
task :release_files => [:gem] do
|
119
|
+
release_files = FileList[
|
120
|
+
"pkg/#{PKG_FILE_NAME}.gem"
|
121
|
+
]
|
122
|
+
|
123
|
+
Rake::XForge::Release.new(PKG_NAME) do |xf|
|
124
|
+
# Never hardcode user name and password in the Rakefile!
|
125
|
+
xf.user_name = ENV['RUBYFORGE_USER']
|
126
|
+
xf.password = ENV['RUBYFORGE_PASSWORD']
|
127
|
+
xf.files = release_files.to_a
|
128
|
+
xf.release_name = "Jabber4r #{PKG_VERSION}"
|
129
|
+
end
|
130
|
+
end
|
131
|
+
|
132
|
+
desc "Publish news on RubyForge"
|
133
|
+
task :publish_news => [:gem] do
|
134
|
+
release_files = FileList[
|
135
|
+
"pkg/#{PKG_FILE_NAME}.gem"
|
136
|
+
]
|
137
|
+
|
138
|
+
Rake::XForge::NewsPublisher.new(PKG_NAME) do |news|
|
139
|
+
# Never hardcode user name and password in the Rakefile!
|
140
|
+
news.user_name = ENV['RUBYFORGE_USER']
|
141
|
+
news.password = ENV['RUBYFORGE_PASSWORD']
|
142
|
+
end
|
143
|
+
end
|
@@ -0,0 +1,22 @@
|
|
1
|
+
# License: see LICENSE.txt
|
2
|
+
# Jabber4R - Jabber Instant Messaging Library for Ruby
|
3
|
+
# Copyright (C) 2002 Rich Kilmer <rich@infoether.com>
|
4
|
+
#
|
5
|
+
|
6
|
+
##
|
7
|
+
# The Jabber module is the main namespace for all Jabber modules
|
8
|
+
# and classes.
|
9
|
+
#
|
10
|
+
module Jabber
|
11
|
+
VERSION_MAJOR = 0
|
12
|
+
VERSION_MINOR = 6
|
13
|
+
RELEASE = 0
|
14
|
+
DEBUG = false
|
15
|
+
end
|
16
|
+
|
17
|
+
require "jabber4r/session"
|
18
|
+
require "jabber4r/protocol"
|
19
|
+
require "jabber4r/roster"
|
20
|
+
require "jabber4r/jid"
|
21
|
+
require "jabber4r/vcard"
|
22
|
+
|
@@ -0,0 +1,93 @@
|
|
1
|
+
# License: see LICENSE.txt
|
2
|
+
# Jabber4R - Jabber Instant Messaging Library for Ruby
|
3
|
+
# Copyright (C) 2002 Rich Kilmer <rich@infoether.com>
|
4
|
+
#
|
5
|
+
|
6
|
+
module Jabber
|
7
|
+
|
8
|
+
##
|
9
|
+
# The Jabber ID class is used to hold a parsed jabber identifier (account+host+resource)
|
10
|
+
#
|
11
|
+
class JID
|
12
|
+
|
13
|
+
# The node (account)
|
14
|
+
attr_accessor :node
|
15
|
+
|
16
|
+
# The resource id
|
17
|
+
attr_accessor :resource
|
18
|
+
|
19
|
+
# The host name (or IP address)
|
20
|
+
attr_accessor :host
|
21
|
+
|
22
|
+
def JID.to_jid(id)
|
23
|
+
return id if id.kind_of? JID
|
24
|
+
return JID.new(id)
|
25
|
+
end
|
26
|
+
|
27
|
+
#@@Pattern = /([^@""'\s:]+)\@([-.\w]+)\/?(.*)/
|
28
|
+
|
29
|
+
##
|
30
|
+
# Constructs a JID from the supplied string of the format:
|
31
|
+
# node@host[/resource] (e.g. "rich_kilmer@jabber.com/laptop")
|
32
|
+
#
|
33
|
+
# id:: [String] The jabber id string to parse
|
34
|
+
#
|
35
|
+
def initialize(id)
|
36
|
+
at_loc = id.index('@')
|
37
|
+
slash_loc = id.index('/')
|
38
|
+
if at_loc.nil? and slash_loc.nil?
|
39
|
+
@host = id
|
40
|
+
end
|
41
|
+
if at_loc
|
42
|
+
@node = id[0,at_loc]
|
43
|
+
host_end = slash_loc ? slash_loc-(at_loc+1) : id.size-(at_loc+1)
|
44
|
+
@host = id[at_loc+1,host_end]
|
45
|
+
@resource = id[slash_loc+1, id.size] if slash_loc
|
46
|
+
end
|
47
|
+
end
|
48
|
+
|
49
|
+
##
|
50
|
+
# Evalutes whether the node, resource and host are the same
|
51
|
+
#
|
52
|
+
# other:: [Jabber::JID] The other jabber id
|
53
|
+
# return:: [Boolean] True if they match
|
54
|
+
def ==(other)
|
55
|
+
return true if other.node==@node and other.resource==@resource and other.host==@host
|
56
|
+
return false
|
57
|
+
end
|
58
|
+
|
59
|
+
def same_account?(other)
|
60
|
+
other = JID.to_jid(other)
|
61
|
+
return true if other.node==@node and other.host==@host
|
62
|
+
return false
|
63
|
+
end
|
64
|
+
|
65
|
+
##
|
66
|
+
# Removes the resource from this JID
|
67
|
+
#
|
68
|
+
def strip_resource
|
69
|
+
@resource=nil
|
70
|
+
return self
|
71
|
+
end
|
72
|
+
|
73
|
+
##
|
74
|
+
# Returns the string ("node@host/resource") representation of this JID
|
75
|
+
#
|
76
|
+
# return:: [String] String form of JID
|
77
|
+
#
|
78
|
+
def to_s
|
79
|
+
result = (@node.to_s+"@"+@host.to_s)
|
80
|
+
result += ("/"+@resource) if @resource
|
81
|
+
return result
|
82
|
+
end
|
83
|
+
|
84
|
+
##
|
85
|
+
# Override #hash to hash based on the to_s method
|
86
|
+
#
|
87
|
+
def hash
|
88
|
+
return to_s.hash
|
89
|
+
end
|
90
|
+
end
|
91
|
+
|
92
|
+
end
|
93
|
+
|
@@ -0,0 +1,1384 @@
|
|
1
|
+
# License: see LICENSE.txt
|
2
|
+
# Jabber4R - Jabber Instant Messaging Library for Ruby
|
3
|
+
# Copyright (C) 2002 Rich Kilmer <rich@infoether.com>
|
4
|
+
#
|
5
|
+
|
6
|
+
|
7
|
+
require 'singleton'
|
8
|
+
require 'socket'
|
9
|
+
|
10
|
+
module Jabber
|
11
|
+
|
12
|
+
class JabberConnectionException < RuntimeError
|
13
|
+
attr_reader :data
|
14
|
+
|
15
|
+
def initialize(writing, data)
|
16
|
+
@writing = writing
|
17
|
+
@data = data
|
18
|
+
end
|
19
|
+
|
20
|
+
def writing?
|
21
|
+
@writing
|
22
|
+
end
|
23
|
+
end
|
24
|
+
|
25
|
+
##
|
26
|
+
# The Protocol module contains helper methods for constructing
|
27
|
+
# Jabber protocol elements and classes that implement protocol
|
28
|
+
# elements.
|
29
|
+
#
|
30
|
+
module Protocol
|
31
|
+
|
32
|
+
USE_PARSER = :rexml # either :rexml or :xmlparser
|
33
|
+
|
34
|
+
##
|
35
|
+
# The parser to use for stream processing. The current
|
36
|
+
# available parsers are:
|
37
|
+
#
|
38
|
+
# * Jabber::Protocol::ExpatJabberParser uses XMLParser
|
39
|
+
# * Jabber::Protocol::REXMLJabberParser uses REXML
|
40
|
+
#
|
41
|
+
# return:: [Class] The parser class
|
42
|
+
#
|
43
|
+
def Protocol.Parser
|
44
|
+
if USE_PARSER==:xmlparser
|
45
|
+
Jabber::Protocol::ExpatJabberParser
|
46
|
+
else
|
47
|
+
Jabber::Protocol::REXMLJabberParser
|
48
|
+
end
|
49
|
+
end
|
50
|
+
|
51
|
+
##
|
52
|
+
# The connection class encapsulates the connection to the Jabber
|
53
|
+
# service including managing the socket and controlling the parsing
|
54
|
+
# of the Jabber XML stream.
|
55
|
+
#
|
56
|
+
class Connection
|
57
|
+
DISCONNECTED = 1
|
58
|
+
CONNECTED = 2
|
59
|
+
|
60
|
+
attr_reader :host, :port, :status, :input, :output
|
61
|
+
|
62
|
+
def initialize(host, port=5222)
|
63
|
+
@host = host
|
64
|
+
@port = port
|
65
|
+
@status = DISCONNECTED
|
66
|
+
@filters = {}
|
67
|
+
@threadBlocks = {}
|
68
|
+
@pollCounter = 10
|
69
|
+
end
|
70
|
+
|
71
|
+
##
|
72
|
+
# Connects to the Jabber server through a TCP Socket and
|
73
|
+
# starts the Jabber parser.
|
74
|
+
#
|
75
|
+
def connect
|
76
|
+
@socket = TCPSocket.new(@host, @port)
|
77
|
+
@parser = Jabber::Protocol.Parser.new(@socket, self)
|
78
|
+
@parserThread = Thread.new {@parser.parse}
|
79
|
+
@pollThread = Thread.new {poll}
|
80
|
+
@status = CONNECTED
|
81
|
+
end
|
82
|
+
|
83
|
+
##
|
84
|
+
# Mounts a block to handle exceptions if they occur during the
|
85
|
+
# poll send. This will likely be the first indication that
|
86
|
+
# the socket dropped in a Jabber Session.
|
87
|
+
#
|
88
|
+
def on_connection_exception(&block)
|
89
|
+
@exception_block = block
|
90
|
+
end
|
91
|
+
|
92
|
+
def parse_failure
|
93
|
+
Thread.new {@exception_block.call if @exception_block}
|
94
|
+
end
|
95
|
+
|
96
|
+
##
|
97
|
+
# Returns if this connection is connected to a Jabber service
|
98
|
+
#
|
99
|
+
# return:: [Boolean] Connection status
|
100
|
+
#
|
101
|
+
def is_connected?
|
102
|
+
return @status == CONNECTED
|
103
|
+
end
|
104
|
+
|
105
|
+
##
|
106
|
+
# Returns if this connection is NOT connected to a Jabber service
|
107
|
+
#
|
108
|
+
# return:: [Boolean] Connection status
|
109
|
+
#
|
110
|
+
def is_disconnected?
|
111
|
+
return @status == DISCONNECTED
|
112
|
+
end
|
113
|
+
|
114
|
+
##
|
115
|
+
# Processes a received ParsedXMLElement and executes
|
116
|
+
# registered thread blocks and filters against it.
|
117
|
+
#
|
118
|
+
# element:: [ParsedXMLElement] The received element
|
119
|
+
#
|
120
|
+
def receive(element)
|
121
|
+
while @threadBlocks.size==0 && @filters.size==0
|
122
|
+
sleep 0.1
|
123
|
+
end
|
124
|
+
Jabber::DEBUG && puts("RECEIVED:\n#{element.to_s}")
|
125
|
+
@threadBlocks.each do |thread, proc|
|
126
|
+
begin
|
127
|
+
proc.call(element)
|
128
|
+
if element.element_consumed?
|
129
|
+
@threadBlocks.delete(thread)
|
130
|
+
thread.wakeup if thread.alive?
|
131
|
+
return
|
132
|
+
end
|
133
|
+
rescue Exception => error
|
134
|
+
puts error.to_s
|
135
|
+
puts error.backtrace.join("\n")
|
136
|
+
end
|
137
|
+
end
|
138
|
+
@filters.each_value do |proc|
|
139
|
+
begin
|
140
|
+
proc.call(element)
|
141
|
+
return if element.element_consumed?
|
142
|
+
rescue Exception => error
|
143
|
+
puts error.to_s
|
144
|
+
puts error.backtrace.join("\n")
|
145
|
+
end
|
146
|
+
end
|
147
|
+
end
|
148
|
+
|
149
|
+
##
|
150
|
+
# Sends XML data to the socket and (optionally) waits
|
151
|
+
# to process received data.
|
152
|
+
#
|
153
|
+
# xml:: [String] The xml data to send
|
154
|
+
# proc:: [Proc = nil] The optional proc
|
155
|
+
# &block:: [Block] The optional block
|
156
|
+
#
|
157
|
+
def send(xml, proc=nil, &block)
|
158
|
+
Jabber::DEBUG && puts("SENDING:\n#{ xml.kind_of?(String) ? xml : xml.to_s }")
|
159
|
+
xml = xml.to_s if not xml.kind_of? String
|
160
|
+
block = proc if proc
|
161
|
+
@threadBlocks[Thread.current]=block if block
|
162
|
+
begin
|
163
|
+
@socket << xml
|
164
|
+
rescue
|
165
|
+
raise JabberConnectionException.new(true, xml)
|
166
|
+
end
|
167
|
+
@pollCounter = 10
|
168
|
+
end
|
169
|
+
|
170
|
+
##
|
171
|
+
# Starts a polling thread to send "keep alive" data to prevent
|
172
|
+
# the Jabber connection from closing for inactivity.
|
173
|
+
#
|
174
|
+
def poll
|
175
|
+
sleep 10
|
176
|
+
while true
|
177
|
+
sleep 2
|
178
|
+
@pollCounter = @pollCounter - 1
|
179
|
+
if @pollCounter < 0
|
180
|
+
begin
|
181
|
+
send(" \t ")
|
182
|
+
rescue
|
183
|
+
Thread.new {@exception_block.call if @exception_block}
|
184
|
+
break
|
185
|
+
end
|
186
|
+
end
|
187
|
+
end
|
188
|
+
end
|
189
|
+
|
190
|
+
##
|
191
|
+
# Adds a filter block/proc to process received XML messages
|
192
|
+
#
|
193
|
+
# xml:: [String] The xml data to send
|
194
|
+
# proc:: [Proc = nil] The optional proc
|
195
|
+
# &block:: [Block] The optional block
|
196
|
+
#
|
197
|
+
def add_filter(ref, proc=nil, &block)
|
198
|
+
block = proc if proc
|
199
|
+
raise "Must supply a block or Proc object to the addFilter method" if block.nil?
|
200
|
+
@filters[ref] = block
|
201
|
+
end
|
202
|
+
|
203
|
+
def delete_filter(ref)
|
204
|
+
@filters.delete(ref)
|
205
|
+
end
|
206
|
+
|
207
|
+
##
|
208
|
+
# Closes the connection to the Jabber service
|
209
|
+
#
|
210
|
+
def close
|
211
|
+
@parserThread.kill if @parserThread
|
212
|
+
@pollThread.kill
|
213
|
+
@socket.close if @socket
|
214
|
+
@status = DISCONNECTED
|
215
|
+
end
|
216
|
+
end
|
217
|
+
|
218
|
+
##
|
219
|
+
# Generates an open stream XML element
|
220
|
+
#
|
221
|
+
# host:: [String] The host being connected to
|
222
|
+
# return:: [String] The XML data to send
|
223
|
+
#
|
224
|
+
def Protocol.gen_open_stream(host)
|
225
|
+
return ('<?xml version="1.0" encoding="UTF-8" ?><stream:stream to="'+host+'" xmlns="jabber:client" xmlns:stream="http://etherx.jabber.org/streams">')
|
226
|
+
end
|
227
|
+
|
228
|
+
##
|
229
|
+
# Generates an close stream XML element
|
230
|
+
#
|
231
|
+
# return:: [String] The XML data to send
|
232
|
+
#
|
233
|
+
def Protocol.gen_close_stream
|
234
|
+
return "</stream:stream>"
|
235
|
+
end
|
236
|
+
|
237
|
+
##
|
238
|
+
# The presence class is used to construct presence messages to
|
239
|
+
# send to the Jabber service.
|
240
|
+
#
|
241
|
+
class Presence
|
242
|
+
attr_accessor :to, :from, :id, :type
|
243
|
+
|
244
|
+
# The state to show (chat, xa, dnd, away)
|
245
|
+
attr_accessor :show
|
246
|
+
|
247
|
+
# The status message
|
248
|
+
attr_accessor :status
|
249
|
+
attr_accessor :priority
|
250
|
+
|
251
|
+
##
|
252
|
+
# Constructs a Presence object w/the supplied id
|
253
|
+
#
|
254
|
+
# id:: [String] The message ID
|
255
|
+
# show:: [String] The state to show
|
256
|
+
# status:: [String] The status message
|
257
|
+
#
|
258
|
+
def initialize(id, show=nil, status=nil)
|
259
|
+
@id = id
|
260
|
+
@show = show if show
|
261
|
+
@status = status if status
|
262
|
+
end
|
263
|
+
|
264
|
+
##
|
265
|
+
# Generate a presence object for initial presence notification
|
266
|
+
#
|
267
|
+
# id:: [String] The message ID
|
268
|
+
# show:: [String] The state to show
|
269
|
+
# status:: [String] The status message
|
270
|
+
# return:: [Jabber::Protocol::Presence] The newly created Presence object
|
271
|
+
#
|
272
|
+
def Presence.gen_initial(id, show=nil, status=nil)
|
273
|
+
Presence.new(id, show, status)
|
274
|
+
end
|
275
|
+
|
276
|
+
##
|
277
|
+
# Generate a presence object w/show="normal" (normal availability)
|
278
|
+
#
|
279
|
+
# id:: [String] The message ID
|
280
|
+
# status:: [String=nil] The status message
|
281
|
+
# return:: [Jabber::Protocol::Presence] The newly created Presence object
|
282
|
+
#
|
283
|
+
def Presence.gen_normal(id, status=nil)
|
284
|
+
Presence.new(id, "normal", status)
|
285
|
+
end
|
286
|
+
|
287
|
+
##
|
288
|
+
# Generate a presence object w/show="chat" (free for chat)
|
289
|
+
#
|
290
|
+
# id:: [String] The message ID
|
291
|
+
# status:: [String=nil] The status message
|
292
|
+
# return:: [Jabber::Protocol::Presence] The newly created Presence object
|
293
|
+
#
|
294
|
+
def Presence.gen_chat(id, status=nil)
|
295
|
+
Presence.new(id, "chat", status)
|
296
|
+
end
|
297
|
+
|
298
|
+
##
|
299
|
+
# Generate a presence object w/show="xa" (extended away)
|
300
|
+
#
|
301
|
+
# id:: [String] The message ID
|
302
|
+
# status:: [String=nil] The status message
|
303
|
+
# return:: [Jabber::Protocol::Presence] The newly created Presence object
|
304
|
+
#
|
305
|
+
def Presence.gen_xa(id, status=nil)
|
306
|
+
Presence.new(id, "xa", status)
|
307
|
+
end
|
308
|
+
|
309
|
+
##
|
310
|
+
# Generate a presence object w/show="dnd" (do not disturb)
|
311
|
+
#
|
312
|
+
# id:: [String] The message ID
|
313
|
+
# status:: [String=nil] The status message
|
314
|
+
# return:: [Jabber::Protocol::Presence] The newly created Presence object
|
315
|
+
#
|
316
|
+
def Presence.gen_dnd(id, status=nil)
|
317
|
+
Presence.new(id, "dnd", status)
|
318
|
+
end
|
319
|
+
|
320
|
+
##
|
321
|
+
# Generate a presence object w/show="away" (away from resource)
|
322
|
+
#
|
323
|
+
# id:: [String] The message ID
|
324
|
+
# status:: [String=nil] The status message
|
325
|
+
# return:: [Jabber::Protocol::Presence] The newly created Presence object
|
326
|
+
#
|
327
|
+
def Presence.gen_away(id, status=nil)
|
328
|
+
Presence.new(id, "away", status)
|
329
|
+
end
|
330
|
+
|
331
|
+
##
|
332
|
+
# Generate a presence object w/show="unavailable" (not free for chat)
|
333
|
+
#
|
334
|
+
# id:: [String] The message ID
|
335
|
+
# status:: [String=nil] The status message
|
336
|
+
# return:: [Jabber::Protocol::Presence] The newly created Presence object
|
337
|
+
#
|
338
|
+
def Presence.gen_unavailable(id, status=nil)
|
339
|
+
p = Presence.new(id)
|
340
|
+
p.type="unavailable"
|
341
|
+
p
|
342
|
+
end
|
343
|
+
|
344
|
+
def Presence.gen_new_subscription(to)
|
345
|
+
p = Presence.new(Jabber.gen_random_id)
|
346
|
+
p.type = "subscribe"
|
347
|
+
p.to = to
|
348
|
+
p
|
349
|
+
end
|
350
|
+
|
351
|
+
def Presence.gen_accept_subscription(id, jid)
|
352
|
+
p = Presence.new(id)
|
353
|
+
p.type = "subscribed"
|
354
|
+
p.to = jid
|
355
|
+
p
|
356
|
+
end
|
357
|
+
|
358
|
+
def Presence.gen_accept_unsubscription(id, jid)
|
359
|
+
p = Presence.new(id)
|
360
|
+
p.type = "unsubscribed"
|
361
|
+
p.to = jid
|
362
|
+
p
|
363
|
+
end
|
364
|
+
|
365
|
+
##
|
366
|
+
# Generates the xml representation of this Presence object
|
367
|
+
#
|
368
|
+
# return:: [String] The presence XML message to send the Jabber service
|
369
|
+
#
|
370
|
+
def to_xml
|
371
|
+
e = XMLElement.new("presence")
|
372
|
+
e.add_attribute("id", @id) if @id
|
373
|
+
e.add_attribute("from", @from) if @from
|
374
|
+
e.add_attribute("to", @to) if @to
|
375
|
+
e.add_attribute("type", @type) if @type
|
376
|
+
e.add_child("show").add_data(@show) if @show
|
377
|
+
e.add_child("status").add_data(@status) if @status
|
378
|
+
e.add_child("priority") if @priority
|
379
|
+
e.to_s
|
380
|
+
end
|
381
|
+
|
382
|
+
##
|
383
|
+
# see _to_xml
|
384
|
+
#
|
385
|
+
def to_s
|
386
|
+
to_xml
|
387
|
+
end
|
388
|
+
end
|
389
|
+
|
390
|
+
##
|
391
|
+
# A class used to build/parse IQ requests/responses
|
392
|
+
#
|
393
|
+
class Iq
|
394
|
+
attr_accessor :session,:to, :from, :id, :type, :xmlns, :data,:error,:errorcode
|
395
|
+
ERROR="error"
|
396
|
+
GET="get"
|
397
|
+
SET="set"
|
398
|
+
RESULT="result"
|
399
|
+
|
400
|
+
##
|
401
|
+
# Factory to build an IQ object from xml element
|
402
|
+
#
|
403
|
+
# session:: [Jabber::Session] The Jabber session instance
|
404
|
+
# element:: [Jabber::Protocol::ParsedXMLElement] The received XML object
|
405
|
+
# return:: [Jabber::Protocol::Iq] The newly created Iq object
|
406
|
+
#
|
407
|
+
def Iq.from_element(session, element)
|
408
|
+
iq = Iq.new(session)
|
409
|
+
iq.from = Jabber::JID.new(element.attr_from) if element.attr_from
|
410
|
+
iq.to = Jabber::JID.new(element.attr_to) if element.attr_to
|
411
|
+
iq.type = element.attr_type
|
412
|
+
iq.id = element.attr_id
|
413
|
+
iq.session=session
|
414
|
+
iq.xmlns=element.query.attr_xmlns
|
415
|
+
iq.data=element.query
|
416
|
+
return iq
|
417
|
+
end
|
418
|
+
|
419
|
+
##
|
420
|
+
# Default constructor to build an Iq object
|
421
|
+
# session:: [Jabber::Session] The Jabber session instance
|
422
|
+
# id:: [String=nil] The (optional) id of the Iq object
|
423
|
+
def initialize(session,id=nil)
|
424
|
+
@session=session
|
425
|
+
@id=id
|
426
|
+
end
|
427
|
+
|
428
|
+
##
|
429
|
+
# Return an IQ object that uses the jabber:iq:private namespace
|
430
|
+
#
|
431
|
+
def Iq.get_private(session,id,ename,ns)
|
432
|
+
iq=Iq.new(session,id)
|
433
|
+
iq.type="get"
|
434
|
+
iq.xmlns="jabber:iq:private"
|
435
|
+
iq.data=XMLElement.new(ename,{'xmlns' => ns});
|
436
|
+
return iq
|
437
|
+
end
|
438
|
+
|
439
|
+
|
440
|
+
##
|
441
|
+
# Generates an IQ roster request XML element
|
442
|
+
#
|
443
|
+
# id:: [String] The message id
|
444
|
+
# return:: [String] The XML data to send
|
445
|
+
#
|
446
|
+
def Iq.gen_roster(session, id)
|
447
|
+
iq = Iq.new(session, id)
|
448
|
+
iq.type = "get"
|
449
|
+
iq.xmlns = "jabber:iq:roster"
|
450
|
+
return iq
|
451
|
+
#return XMLElement.new("iq", {"type"=>"get", "id"=>id}).add_child("query", {"xmlns"=>"jabber:iq:roster"}).to_s
|
452
|
+
end
|
453
|
+
|
454
|
+
##
|
455
|
+
# Generates an IQ authortization request XML element
|
456
|
+
#
|
457
|
+
# id:: [String] The message id
|
458
|
+
# username:: [String] The username
|
459
|
+
# password:: [String] The password
|
460
|
+
# email:: [String] The email address of the account
|
461
|
+
# name:: [String] The full name
|
462
|
+
# return:: [String] The XML data to send
|
463
|
+
#
|
464
|
+
def Iq.gen_registration(session, id, username, password, email, name)
|
465
|
+
iq = Iq.new(session, id)
|
466
|
+
iq.type = "set"
|
467
|
+
iq.xmlns = "jabber:iq:register"
|
468
|
+
iq.data = XMLElement.new("username").add_data(username).to_s
|
469
|
+
iq.data << XMLElement.new("password").add_data(password).to_s
|
470
|
+
iq.data << XMLElement.new("email").add_data(email).to_s
|
471
|
+
iq.data << XMLElement.new("name").add_data(name).to_s
|
472
|
+
return iq
|
473
|
+
end
|
474
|
+
|
475
|
+
##
|
476
|
+
# Generates an IQ Roster Item add request XML element
|
477
|
+
#
|
478
|
+
# session:: [Session] The session
|
479
|
+
# id:: [String] The message id
|
480
|
+
# jid:: [JID] The Jabber ID to add to the roster
|
481
|
+
# name:: [String] The full name
|
482
|
+
# return:: [String] The XML data to send
|
483
|
+
#
|
484
|
+
def Iq.gen_add_rosteritem(session, id, jid, name)
|
485
|
+
iq = Iq.new(session, id)
|
486
|
+
iq.type = "set"
|
487
|
+
iq.xmlns = "jabber:iq:roster"
|
488
|
+
iq.data = XMLElement.new("item").add_attribute("jid", jid).add_attribute("name", name).to_s
|
489
|
+
return iq
|
490
|
+
end
|
491
|
+
|
492
|
+
##
|
493
|
+
# Generates an IQ authortization request XML element
|
494
|
+
#
|
495
|
+
# id:: [String] The message id
|
496
|
+
# username:: [String] The username
|
497
|
+
# password:: [String] The password
|
498
|
+
# resource:: [String] The resource to bind this session to
|
499
|
+
# return:: [String] The XML data to send
|
500
|
+
#
|
501
|
+
def Iq.gen_auth(session, id, username, password, resource)
|
502
|
+
iq = Iq.new(session, id)
|
503
|
+
iq.type = "set"
|
504
|
+
iq.xmlns = "jabber:iq:auth"
|
505
|
+
iq.data = XMLElement.new("username").add_data(username).to_s
|
506
|
+
iq.data << XMLElement.new("password").add_data(password).to_s
|
507
|
+
iq.data << XMLElement.new("resource").add_data(resource).to_s
|
508
|
+
return iq
|
509
|
+
#element = XMLElement.new("iq", {"type"=>"set", "id"=>id}).add_child("query", {"xmlns"=>"jabber:iq:auth"}).add_child("username").add_data(username).to_parent.add_child("password").add_data(password).to_parent.add_child("resource").add_data(resource).to_parent.to_s
|
510
|
+
end
|
511
|
+
|
512
|
+
##
|
513
|
+
# Generates an IQ digest authortization request XML element
|
514
|
+
#
|
515
|
+
# id:: [String] The message id
|
516
|
+
# username:: [String] The username
|
517
|
+
# digest:: [String] The SHA-1 hash of the sessionid and the password
|
518
|
+
# resource:: [String] The resource to bind this session to
|
519
|
+
# return:: [String] The XML data to send
|
520
|
+
#
|
521
|
+
def Iq.gen_auth_digest(session, id, username, digest, resource)
|
522
|
+
iq = Iq.new(session, id)
|
523
|
+
iq.type = "set"
|
524
|
+
iq.xmlns = "jabber:iq:auth"
|
525
|
+
iq.data = XMLElement.new("username").add_data(username).to_s
|
526
|
+
iq.data << XMLElement.new("digest").add_data(digest).to_s
|
527
|
+
iq.data << XMLElement.new("resource").add_data(resource).to_s
|
528
|
+
return iq
|
529
|
+
#return XMLElement.new("iq", {"type"=>"set", "id"=>id}).add_child("query", {"xmlns"=>"jabber:iq:auth"}).add_child("username").add_data(username).to_parent.add_child("digest").add_data(digest).to_parent.add_child("resource").add_data(resource).to_parent.to_s
|
530
|
+
end
|
531
|
+
|
532
|
+
##
|
533
|
+
# Generates an IQ out of bounds XML element
|
534
|
+
#
|
535
|
+
# to:: [JID] The Jabber ID to send to
|
536
|
+
# url:: [String] The data to send
|
537
|
+
# desc:: [String=""] The description of the data
|
538
|
+
# return:: [String] The XML data to send
|
539
|
+
#
|
540
|
+
def Iq.gen_oob(session, to, url, desc="")
|
541
|
+
iq = Iq.new(session, nil)
|
542
|
+
iq.type = "set"
|
543
|
+
iq.xmlns = "jabber:iq:oob"
|
544
|
+
iq.data = XMLElement.new("url").add_data(url).to_s
|
545
|
+
iq.data << XMLElement.new("desc").add_data(desc).to_s
|
546
|
+
return iq
|
547
|
+
#return XMLElement.new("iq", {"type"=>"set"}).add_child("query", {"xmlns"=>"jabber:iq:oob"}).add_child("url").add_data(url).to_parent.add_child("desc").add_data(data).to_parent.to_s
|
548
|
+
end
|
549
|
+
|
550
|
+
##
|
551
|
+
# Generates an VCard request XML element
|
552
|
+
#
|
553
|
+
# id:: [String] The message ID
|
554
|
+
# to:: [JID] The jabber id of the account to get the VCard for
|
555
|
+
# return:: [String] The XML data to send
|
556
|
+
#
|
557
|
+
def Iq.gen_vcard(session, id, to)
|
558
|
+
iq = Iq.new(session, id)
|
559
|
+
iq.xmlns = "vcard-temp"
|
560
|
+
iq.type = "get"
|
561
|
+
iq.to = to
|
562
|
+
return iq
|
563
|
+
#return XMLElement.new("iq", {"type"=>"get", "id"=>id, "to"=>to}).add_child("query", {"xmlns"=>"vcard-temp"}).to_s
|
564
|
+
end
|
565
|
+
|
566
|
+
|
567
|
+
|
568
|
+
|
569
|
+
##
|
570
|
+
# Sends the IQ to the Jabber service for delivery
|
571
|
+
#
|
572
|
+
# wait:: [Boolean = false] Wait for reply before return?
|
573
|
+
# &block:: [Block] A block to process the message replies
|
574
|
+
#
|
575
|
+
def send(wait=false, &block)
|
576
|
+
if wait
|
577
|
+
iq = nil
|
578
|
+
blockedThread = Thread.current
|
579
|
+
@session.connection.send(self.to_s, block) do |je|
|
580
|
+
if je.element_tag == "iq" and je.attr_id == @id
|
581
|
+
je.consume_element
|
582
|
+
iq = Iq.from_element(@session, je)
|
583
|
+
blockedThread.wakeup
|
584
|
+
end
|
585
|
+
end
|
586
|
+
Thread.stop
|
587
|
+
rturn iq
|
588
|
+
else
|
589
|
+
@session.connection.send(self.to_s, block) if @session
|
590
|
+
end
|
591
|
+
end
|
592
|
+
|
593
|
+
##
|
594
|
+
# Builds a reply to an existing Iq
|
595
|
+
#
|
596
|
+
# return:: [Jabber::Protocol::Iq] The result Iq
|
597
|
+
#
|
598
|
+
def reply
|
599
|
+
iq = Iq.new(@session,@id)
|
600
|
+
iq.to = @from
|
601
|
+
iq.id = @id
|
602
|
+
iq.type = 'result'
|
603
|
+
@is_reply = true
|
604
|
+
return iq
|
605
|
+
end
|
606
|
+
|
607
|
+
##
|
608
|
+
# Generates XML that complies with the Jabber protocol for
|
609
|
+
# sending the Iq through the Jabber service.
|
610
|
+
#
|
611
|
+
# return:: [String] The XML string.
|
612
|
+
#
|
613
|
+
def to_xml
|
614
|
+
elem = XMLElement.new("iq", { "type"=>@type})
|
615
|
+
elem.add_attribute("to" ,@to) if @to
|
616
|
+
elem.add_attribute("id", @id) if @id
|
617
|
+
elem.add_child("query").add_attribute("xmlns",@xmlns).add_data(@data.to_s)
|
618
|
+
if @type=="error" then
|
619
|
+
e=elem.add_child("error");
|
620
|
+
e.add_attribute("code",@errorcode) if @errorcode
|
621
|
+
e.add_data(@error) if @error
|
622
|
+
end
|
623
|
+
return elem.to_s
|
624
|
+
end
|
625
|
+
|
626
|
+
##
|
627
|
+
# see to_xml
|
628
|
+
#
|
629
|
+
def to_s
|
630
|
+
to_xml
|
631
|
+
end
|
632
|
+
|
633
|
+
end
|
634
|
+
|
635
|
+
class Message
|
636
|
+
attr_accessor :to, :from, :id, :type, :body, :xhtml, :subject, :thread, :x, :oobData, :errorcode, :error
|
637
|
+
NORMAL = "normal"
|
638
|
+
ERROR="error"
|
639
|
+
CHAT="chat"
|
640
|
+
GROUPCHAT="groupchat"
|
641
|
+
HEADLINE="headline"
|
642
|
+
|
643
|
+
##
|
644
|
+
# Factory to build a Message from an XMLElement
|
645
|
+
#
|
646
|
+
# session:: [Jabber::Session] The Jabber session instance
|
647
|
+
# element:: [Jabber::Protocol::ParsedXMLElement] The received XML object
|
648
|
+
# return:: [Jabber::Protocol::Message] The newly created Message object
|
649
|
+
#
|
650
|
+
def Message.from_element(session, element)
|
651
|
+
message = Message.new(element.attr_to)
|
652
|
+
message.from = Jabber::JID.new(element.attr_from) if element.attr_from
|
653
|
+
message.type = element.attr_type
|
654
|
+
message.id = element.attr_id
|
655
|
+
message.thread = element.thread.element_data
|
656
|
+
message.body = element.body.element_data
|
657
|
+
message.xhtml = element.xhtml.element_data
|
658
|
+
message.subject = element.subject.element_data
|
659
|
+
message.oobData = element.x.element_data
|
660
|
+
message.session=session
|
661
|
+
return message
|
662
|
+
end
|
663
|
+
|
664
|
+
##
|
665
|
+
# Creates a Message
|
666
|
+
#
|
667
|
+
# to:: [String | Jabber::JID] The jabber id to send this message to (or from)
|
668
|
+
# type:: [Integer=NORMAL] The type of message...Message::(NORMAL, CHAT, GROUPCHAT, HEADLINE)
|
669
|
+
#
|
670
|
+
def initialize(to, type=NORMAL)
|
671
|
+
return unless to
|
672
|
+
to = Jabber::JID.new(to) if to.kind_of? String
|
673
|
+
@to = to if to.kind_of? Jabber::JID
|
674
|
+
@type = type
|
675
|
+
end
|
676
|
+
|
677
|
+
##
|
678
|
+
# Chaining method...sets the body of the message
|
679
|
+
#
|
680
|
+
# body:: [String] The message body
|
681
|
+
# return:: [Jabber::Protocol::Message] The current Message object
|
682
|
+
#
|
683
|
+
def set_body(body)
|
684
|
+
@body = body.gsub(/[&]/, '&').gsub(/[<]/, '<').gsub(/[']/, ''')
|
685
|
+
self
|
686
|
+
end
|
687
|
+
|
688
|
+
##
|
689
|
+
# Chaining method...sets the subject of the message
|
690
|
+
#
|
691
|
+
# subject:: [String] The message subject
|
692
|
+
# return:: [Jabber::Protocol::Message] The current Message object
|
693
|
+
#
|
694
|
+
def set_subject(subject)
|
695
|
+
@subject = subject.gsub(/[&]/, '&').gsub(/[<]/, '<').gsub(/[']/, ''')
|
696
|
+
self
|
697
|
+
end
|
698
|
+
|
699
|
+
##
|
700
|
+
# Chaining method...sets the XHTML body of the message
|
701
|
+
#
|
702
|
+
# body:: [String] The message body
|
703
|
+
# return:: [Jabber::Protocol::Message] The current message object
|
704
|
+
#
|
705
|
+
def set_xhtml(xhtml)
|
706
|
+
@xhtml=xhtml
|
707
|
+
self
|
708
|
+
end
|
709
|
+
|
710
|
+
##
|
711
|
+
# Chaining method...sets the thread of the message
|
712
|
+
#
|
713
|
+
# thread:: [String] The message thread id
|
714
|
+
# return:: [Jabber::Protocol::Message] The current Message object
|
715
|
+
#
|
716
|
+
def set_thread(thread)
|
717
|
+
@thread = thread
|
718
|
+
self
|
719
|
+
end
|
720
|
+
|
721
|
+
##
|
722
|
+
# Chaining method...sets the OOB data of the message
|
723
|
+
#
|
724
|
+
# data:: [String] The message OOB data
|
725
|
+
# return:: [Jabber::Protocol::Message] The current Message object
|
726
|
+
#
|
727
|
+
def set_outofband(data)
|
728
|
+
@oobData = data
|
729
|
+
self
|
730
|
+
end
|
731
|
+
|
732
|
+
##
|
733
|
+
# Chaining method...sets the extended data of the message
|
734
|
+
#
|
735
|
+
# x:: [String] The message x data
|
736
|
+
# return:: [Jabber::Protocol::Message] The current Message object
|
737
|
+
#
|
738
|
+
def set_x(x)
|
739
|
+
@x = x
|
740
|
+
self
|
741
|
+
end
|
742
|
+
|
743
|
+
##
|
744
|
+
# Sets an error code to be returned(chaining method)
|
745
|
+
#
|
746
|
+
# code:: [Integer] the jabber error code
|
747
|
+
# reason:: [String] Why the error was reported
|
748
|
+
# return:: [Jabber::Protocol::Message] The current Message object
|
749
|
+
#
|
750
|
+
|
751
|
+
def set_error(code,reason)
|
752
|
+
@errorcode=code
|
753
|
+
@error=reason
|
754
|
+
@type="error"
|
755
|
+
self
|
756
|
+
end
|
757
|
+
|
758
|
+
##
|
759
|
+
# Convenience method for send(true)
|
760
|
+
#
|
761
|
+
# ttl:: [Integer = nil] The time (in seconds) to wait for a reply before assuming nil
|
762
|
+
# &block:: [Block] A block to process the message replies
|
763
|
+
#
|
764
|
+
def request(ttl=nil, &block)
|
765
|
+
send(true, ttl, &block)
|
766
|
+
end
|
767
|
+
|
768
|
+
##
|
769
|
+
# Sends the message to the Jabber service for delivery
|
770
|
+
#
|
771
|
+
# wait:: [Boolean = false] Wait for reply before return?
|
772
|
+
# ttl:: [Integer = nil] The time (in seconds) to wait for a reply before assuming nil
|
773
|
+
# &block:: [Block] A block to process the message replies
|
774
|
+
#
|
775
|
+
def send(wait=false, ttl=nil, &block)
|
776
|
+
if wait
|
777
|
+
message = nil
|
778
|
+
blockedThread = Thread.current
|
779
|
+
timer_thread = nil
|
780
|
+
timeout = false
|
781
|
+
unless ttl.nil?
|
782
|
+
timer_thread = Thread.new {
|
783
|
+
sleep ttl
|
784
|
+
timeout = true
|
785
|
+
blockedThread.wakeup
|
786
|
+
}
|
787
|
+
end
|
788
|
+
@session.connection.send(self.to_s, block) do |je|
|
789
|
+
if je.element_tag == "message" and je.thread.element_data == @thread
|
790
|
+
je.consume_element
|
791
|
+
message = Message.from_element(@session, je)
|
792
|
+
blockedThread.wakeup unless timeout
|
793
|
+
unless timer_thread.nil?
|
794
|
+
timer_thread.kill
|
795
|
+
timer_thread = nil
|
796
|
+
end
|
797
|
+
end
|
798
|
+
end
|
799
|
+
Thread.stop
|
800
|
+
return message
|
801
|
+
else
|
802
|
+
@session.connection.send(self.to_s, block) if @session
|
803
|
+
end
|
804
|
+
end
|
805
|
+
|
806
|
+
##
|
807
|
+
# Sets the session instance
|
808
|
+
#
|
809
|
+
# session:: [Jabber::Session] The session instance
|
810
|
+
# return:: [Jabber::Protocol::Message] The current Message object
|
811
|
+
#
|
812
|
+
def session=(session)
|
813
|
+
@session = session
|
814
|
+
self
|
815
|
+
end
|
816
|
+
|
817
|
+
##
|
818
|
+
# Builds a reply to an existing message by setting:
|
819
|
+
# 1. to = from
|
820
|
+
# 2. id = id
|
821
|
+
# 3. thread = thread
|
822
|
+
# 4. type = type
|
823
|
+
# 5. session = session
|
824
|
+
#
|
825
|
+
# return:: [Jabber::Protocol::Message] The reply message
|
826
|
+
#
|
827
|
+
def reply
|
828
|
+
message = Message.new(nil)
|
829
|
+
message.to = @from
|
830
|
+
message.id = @id
|
831
|
+
message.thread = @thread
|
832
|
+
message.type = @type
|
833
|
+
message.session = @session
|
834
|
+
@is_reply = true
|
835
|
+
return message
|
836
|
+
end
|
837
|
+
|
838
|
+
##
|
839
|
+
# Generates XML that complies with the Jabber protocol for
|
840
|
+
# sending the message through the Jabber service.
|
841
|
+
#
|
842
|
+
# return:: [String] The XML string.
|
843
|
+
#
|
844
|
+
def to_xml
|
845
|
+
@thread = Jabber.gen_random_thread if @thread.nil? and (not @is_reply)
|
846
|
+
elem = XMLElement.new("message", {"to"=>@to, "type"=>@type})
|
847
|
+
elem.add_attribute("id", @id) if @id
|
848
|
+
elem.add_child("thread").add_data(@thread) if @thread
|
849
|
+
elem.add_child("subject").add_data(@subject) if @subject
|
850
|
+
elem.add_child("body").add_data(@body) if @body
|
851
|
+
if @xhtml then
|
852
|
+
t=elem.add_child("xhtml").add_attribute("xmlns","http://www.w3.org/1999/xhtml")
|
853
|
+
t.add_child("body").add_data(@xhtml)
|
854
|
+
end
|
855
|
+
if @type=="error" then
|
856
|
+
e=elem.add_child("error");
|
857
|
+
e.add_attribute("code",@errorcode) if @errorcode
|
858
|
+
e.add_data(@error) if @error
|
859
|
+
end
|
860
|
+
elem.add_child("x").add_attribute("xmlns", "jabber:x:oob").add_data(@oobData) if @oobData
|
861
|
+
elem.add_xml(@x.to_s) if @x
|
862
|
+
return elem.to_s
|
863
|
+
end
|
864
|
+
|
865
|
+
##
|
866
|
+
# see to_xml
|
867
|
+
#
|
868
|
+
def to_s
|
869
|
+
to_xml
|
870
|
+
end
|
871
|
+
|
872
|
+
end
|
873
|
+
|
874
|
+
##
|
875
|
+
# Utility class to create valid XML strings
|
876
|
+
#
|
877
|
+
class XMLElement
|
878
|
+
|
879
|
+
# The parent XMLElement
|
880
|
+
attr_accessor :parent
|
881
|
+
|
882
|
+
##
|
883
|
+
# Construct an XMLElement for the supplied tag and attributes
|
884
|
+
#
|
885
|
+
# tag:: [String] XML tag
|
886
|
+
# attributes:: [Hash = {}] The attribute hash[attribute]=value
|
887
|
+
def initialize(tag, attributes={})
|
888
|
+
@tag = tag
|
889
|
+
@elements = []
|
890
|
+
@attributes = attributes
|
891
|
+
@data = ""
|
892
|
+
end
|
893
|
+
|
894
|
+
##
|
895
|
+
# Adds an attribute to this element
|
896
|
+
#
|
897
|
+
# attrib:: [String] The attribute name
|
898
|
+
# value:: [String] The attribute value
|
899
|
+
# return:: [Jabber::Protocol::XMLElement] self for chaining
|
900
|
+
#
|
901
|
+
def add_attribute(attrib, value)
|
902
|
+
@attributes[attrib]=value
|
903
|
+
self
|
904
|
+
end
|
905
|
+
|
906
|
+
##
|
907
|
+
# Adds data to this element
|
908
|
+
#
|
909
|
+
# data:: [String] The data to add
|
910
|
+
# return:: [Jabber::Protocol::XMLElement] self for chaining
|
911
|
+
#
|
912
|
+
def add_data(data)
|
913
|
+
@data += data.to_s
|
914
|
+
self
|
915
|
+
end
|
916
|
+
|
917
|
+
##
|
918
|
+
# Sets the namespace for this tag
|
919
|
+
#
|
920
|
+
# ns:: [String] The namespace
|
921
|
+
# return:: [Jabber::Protocol::XMLElement] self for chaining
|
922
|
+
#
|
923
|
+
def set_namespace(ns)
|
924
|
+
@tag+=":#{ns}"
|
925
|
+
self
|
926
|
+
end
|
927
|
+
|
928
|
+
##
|
929
|
+
# Adds cdata to this element
|
930
|
+
#
|
931
|
+
# cdata:: [String] The cdata to add
|
932
|
+
# return:: [Jabber::Protocol::XMLElement] self for chaining
|
933
|
+
#
|
934
|
+
def add_cdata(cdata)
|
935
|
+
@data += "<![CDATA[#{cdata.to_s}]]>"
|
936
|
+
self
|
937
|
+
end
|
938
|
+
|
939
|
+
##
|
940
|
+
# Returns the parent element
|
941
|
+
#
|
942
|
+
# return:: [Jabber::Protocol::XMLElement] The parent XMLElement
|
943
|
+
#
|
944
|
+
def to_parent
|
945
|
+
@parent
|
946
|
+
end
|
947
|
+
|
948
|
+
##
|
949
|
+
# Adds a child to this element of the supplied tag
|
950
|
+
#
|
951
|
+
# tag:: [String] The element tag
|
952
|
+
# attributes:: [Hash = {}] The attributes hash[attribute]=value
|
953
|
+
# return:: [Jabber::Protocol::XMLElement] newly created child element
|
954
|
+
#
|
955
|
+
def add_child(tag, attributes={})
|
956
|
+
child = XMLElement.new(tag, attributes)
|
957
|
+
child.parent = self
|
958
|
+
@elements << child
|
959
|
+
return child
|
960
|
+
end
|
961
|
+
|
962
|
+
##
|
963
|
+
# Adds arbitrary XML data to this object
|
964
|
+
#
|
965
|
+
# xml:: [String] the xml to add
|
966
|
+
#
|
967
|
+
def add_xml(xml)
|
968
|
+
@xml = xml
|
969
|
+
end
|
970
|
+
|
971
|
+
##
|
972
|
+
# Recursively builds the XML string by traversing this element's
|
973
|
+
# children.
|
974
|
+
#
|
975
|
+
# format:: [Boolean] True to pretty-print (format) the output string
|
976
|
+
# indent:: [Integer = 0] The indent level (recursively more)
|
977
|
+
#
|
978
|
+
def to_xml(format, indent=0)
|
979
|
+
result = ""
|
980
|
+
result += " "*indent if format
|
981
|
+
result += "<#{@tag}"
|
982
|
+
@attributes.each {|attrib, value| result += (' '+attrib.to_s+'="'+value.to_s+'"') }
|
983
|
+
if @data=="" and @elements.size==0
|
984
|
+
result +="/>"
|
985
|
+
result +="\n" if format
|
986
|
+
return result
|
987
|
+
end
|
988
|
+
result += ">"
|
989
|
+
result += "\n" if format and @data==""
|
990
|
+
result += @data if @data!=""
|
991
|
+
@elements.each {|element| result+=element.to_xml(format, indent+4)}
|
992
|
+
result += @xml if not @xml.nil?
|
993
|
+
result += " "*indent if format and @data==""
|
994
|
+
result+="</#{@tag}>"
|
995
|
+
result+="\n" if format
|
996
|
+
return result
|
997
|
+
end
|
998
|
+
|
999
|
+
##
|
1000
|
+
# Climbs to the top of this elements parent tree and then returns
|
1001
|
+
# the to_xml XML string.
|
1002
|
+
#
|
1003
|
+
# return:: [String] The XML string of this element (from the topmost parent).
|
1004
|
+
#
|
1005
|
+
def to_s
|
1006
|
+
return @parent.to_s if @parent
|
1007
|
+
return to_xml(true)
|
1008
|
+
end
|
1009
|
+
end
|
1010
|
+
|
1011
|
+
##
|
1012
|
+
# This class is constructed from XML data elements that are received from
|
1013
|
+
# the Jabber service.
|
1014
|
+
#
|
1015
|
+
class ParsedXMLElement
|
1016
|
+
|
1017
|
+
##
|
1018
|
+
# This class is used to return nil element values to prevent errors (and
|
1019
|
+
# reduce the number of checks.
|
1020
|
+
#
|
1021
|
+
class NilParsedXMLElement
|
1022
|
+
|
1023
|
+
##
|
1024
|
+
# Override to return nil
|
1025
|
+
#
|
1026
|
+
# return:: [nil]
|
1027
|
+
#
|
1028
|
+
def method_missing(methId, *args)
|
1029
|
+
return nil
|
1030
|
+
end
|
1031
|
+
|
1032
|
+
##
|
1033
|
+
# Evaluate as nil
|
1034
|
+
#
|
1035
|
+
# return:: [Boolean] true
|
1036
|
+
#
|
1037
|
+
def nil?
|
1038
|
+
return true
|
1039
|
+
end
|
1040
|
+
|
1041
|
+
##
|
1042
|
+
# Return a zero count
|
1043
|
+
#
|
1044
|
+
# return:: [Integer] 0
|
1045
|
+
#
|
1046
|
+
def count
|
1047
|
+
0
|
1048
|
+
end
|
1049
|
+
|
1050
|
+
include Singleton
|
1051
|
+
end
|
1052
|
+
|
1053
|
+
# The <tag> as String
|
1054
|
+
attr_reader :element_tag
|
1055
|
+
|
1056
|
+
# The parent ParsedXMLElement
|
1057
|
+
attr_reader :element_parent
|
1058
|
+
|
1059
|
+
# A hash of ParsedXMLElement children
|
1060
|
+
attr_reader :element_children
|
1061
|
+
|
1062
|
+
# The data <tag>data</tag> for a tag
|
1063
|
+
attr_reader :element_data
|
1064
|
+
|
1065
|
+
##
|
1066
|
+
# Construct an instance for the given tag
|
1067
|
+
#
|
1068
|
+
# tag:: [String] The tag
|
1069
|
+
# parent:: [Jabber::Protocol::ParsedXMLElement = nil] The parent element
|
1070
|
+
#
|
1071
|
+
def initialize(tag, parent=nil)
|
1072
|
+
@element_tag = tag
|
1073
|
+
@element_parent = parent
|
1074
|
+
@element_children = {}
|
1075
|
+
@attributes = {}
|
1076
|
+
@element_consumed = false
|
1077
|
+
end
|
1078
|
+
|
1079
|
+
##
|
1080
|
+
# Add the attribute to the element
|
1081
|
+
# <tag name="value">data</tag>
|
1082
|
+
#
|
1083
|
+
# name:: [String] The attribute name
|
1084
|
+
# value:: [String] The attribute value
|
1085
|
+
# return:: [Jabber::Protocol::ParsedXMLElement] self for chaining
|
1086
|
+
#
|
1087
|
+
def add_attribute(name, value)
|
1088
|
+
@attributes[name]=value
|
1089
|
+
self
|
1090
|
+
end
|
1091
|
+
|
1092
|
+
##
|
1093
|
+
# Factory to build a child element from this element with the given tag
|
1094
|
+
#
|
1095
|
+
# tag:: [String] The tag name
|
1096
|
+
# return:: [Jabber::Protocol::ParsedXMLElement] The newly created child element
|
1097
|
+
#
|
1098
|
+
def add_child(tag)
|
1099
|
+
child = ParsedXMLElement.new(tag, self)
|
1100
|
+
@element_children[tag] = Array.new if not @element_children.has_key? tag
|
1101
|
+
@element_children[tag] << child
|
1102
|
+
return child
|
1103
|
+
end
|
1104
|
+
|
1105
|
+
##
|
1106
|
+
# When an xml is received from the Jabber service and a ParsedXMLElement is created,
|
1107
|
+
# it is propogated to all filters and listeners. Any one of those can consume the element
|
1108
|
+
# to prevent its propogation to other filters or listeners. This method marks the element
|
1109
|
+
# as consumed.
|
1110
|
+
#
|
1111
|
+
def consume_element
|
1112
|
+
@element_consumed = true
|
1113
|
+
end
|
1114
|
+
|
1115
|
+
##
|
1116
|
+
# Checks if the element is consumed
|
1117
|
+
#
|
1118
|
+
# return:: [Boolean] True if the element is consumed
|
1119
|
+
#
|
1120
|
+
def element_consumed?
|
1121
|
+
@element_consumed
|
1122
|
+
end
|
1123
|
+
|
1124
|
+
##
|
1125
|
+
# Appends data to the element
|
1126
|
+
#
|
1127
|
+
# data:: [String] The data to append
|
1128
|
+
# return:: [Jabber::Protocol::ParsedXMLElement] self for chaining
|
1129
|
+
#
|
1130
|
+
def append_data(data)
|
1131
|
+
@element_data = "" unless @element_data
|
1132
|
+
@element_data += data
|
1133
|
+
self
|
1134
|
+
end
|
1135
|
+
|
1136
|
+
##
|
1137
|
+
# Calls the parent's element_children (hash) index off of this elements
|
1138
|
+
# tag and gets the supplied index. In this sense it gets its sibling based
|
1139
|
+
# on offset.
|
1140
|
+
#
|
1141
|
+
# number:: [Integer] The number of the sibling to get
|
1142
|
+
# return:: [Jabber::Protocol::ParsedXMLElement] The sibling element
|
1143
|
+
#
|
1144
|
+
def [](number)
|
1145
|
+
return @element_parent.element_children[@element_tag][number] if @element_parent
|
1146
|
+
end
|
1147
|
+
|
1148
|
+
##
|
1149
|
+
# Returns the count of siblings with this element's tag
|
1150
|
+
#
|
1151
|
+
# return:: [Integer] The number of sibling elements
|
1152
|
+
#
|
1153
|
+
def count
|
1154
|
+
return @element_parent.element_children[@element_tag].size if @element_parent
|
1155
|
+
return 0
|
1156
|
+
end
|
1157
|
+
|
1158
|
+
##
|
1159
|
+
# see _count
|
1160
|
+
#
|
1161
|
+
def size
|
1162
|
+
count
|
1163
|
+
end
|
1164
|
+
|
1165
|
+
##
|
1166
|
+
# Overrides to allow for directly accessing child elements
|
1167
|
+
# and attributes. If prefaced by attr_ it looks for an attribute
|
1168
|
+
# that matches or checks for a child with a tag that matches
|
1169
|
+
# the method name. If no match occurs, it returns a
|
1170
|
+
# NilParsedXMLElement (singleton) instance.
|
1171
|
+
#
|
1172
|
+
# Example:: <alpha number="1"><beta number="2">Beta Data</beta></alpha>
|
1173
|
+
#
|
1174
|
+
# element.element_tag #=> alpha
|
1175
|
+
# element.attr_number #=> 1
|
1176
|
+
# element.beta.element_data #=> Beta Data
|
1177
|
+
#
|
1178
|
+
def method_missing(methId, *args)
|
1179
|
+
tag = methId.id2name
|
1180
|
+
if tag[0..4]=="attr_"
|
1181
|
+
return @attributes[tag[5..-1]]
|
1182
|
+
end
|
1183
|
+
list = @element_children[tag]
|
1184
|
+
return list[0] if list
|
1185
|
+
return NilParsedXMLElement.instance
|
1186
|
+
end
|
1187
|
+
|
1188
|
+
##
|
1189
|
+
# Returns the valid XML as a string
|
1190
|
+
#
|
1191
|
+
# return:: [String] XML string
|
1192
|
+
def to_s
|
1193
|
+
begin
|
1194
|
+
result = "\n<#{@element_tag}"
|
1195
|
+
@attributes.each {|key, value| result += (' '+key+'="'+value+'"') }
|
1196
|
+
if @element_children.size>0 or @element_data
|
1197
|
+
result += ">"
|
1198
|
+
else
|
1199
|
+
result += "/>"
|
1200
|
+
end
|
1201
|
+
result += @element_data if @element_data
|
1202
|
+
@element_children.each_value {|array| array.each {|je| result += je.to_s} }
|
1203
|
+
result += "\n" if @element_children.size>0
|
1204
|
+
result += "</#{@element_tag}>" if @element_children.size>0 or @element_data
|
1205
|
+
result
|
1206
|
+
rescue => exception
|
1207
|
+
puts exception.to_s
|
1208
|
+
end
|
1209
|
+
end
|
1210
|
+
end
|
1211
|
+
|
1212
|
+
if USE_PARSER == :xmlparser
|
1213
|
+
require 'xmlparser'
|
1214
|
+
##
|
1215
|
+
# The ExpatJabberParser uses XMLParser (expat) to parse the incoming XML stream
|
1216
|
+
# of the Jabber protocol and fires ParsedXMLElements at the Connection
|
1217
|
+
# instance.
|
1218
|
+
#
|
1219
|
+
class ExpatJabberParser
|
1220
|
+
|
1221
|
+
# status if the parser is started
|
1222
|
+
attr_reader :started
|
1223
|
+
|
1224
|
+
##
|
1225
|
+
# Constructs a parser for the supplied stream (socket input)
|
1226
|
+
#
|
1227
|
+
# stream:: [IO] Socket input stream
|
1228
|
+
# listener:: [#receive(ParsedXMLElement)] The listener (usually a Jabber::Protocol::Connection instance
|
1229
|
+
#
|
1230
|
+
def initialize(stream, listener)
|
1231
|
+
@stream = stream
|
1232
|
+
def @stream.gets
|
1233
|
+
super(">")
|
1234
|
+
end
|
1235
|
+
@listener = listener
|
1236
|
+
end
|
1237
|
+
|
1238
|
+
##
|
1239
|
+
# Begins parsing the XML stream and does not return until
|
1240
|
+
# the stream closes.
|
1241
|
+
#
|
1242
|
+
def parse
|
1243
|
+
@started = false
|
1244
|
+
|
1245
|
+
parser = XMLParser.new("UTF-8")
|
1246
|
+
def parser.unknownEncoding(e)
|
1247
|
+
raise "Unknown encoding #{e.to_s}"
|
1248
|
+
end
|
1249
|
+
def parser.default
|
1250
|
+
end
|
1251
|
+
|
1252
|
+
begin
|
1253
|
+
parser.parse(@stream) do |type, name, data|
|
1254
|
+
begin
|
1255
|
+
case type
|
1256
|
+
when XMLParser::START_ELEM
|
1257
|
+
case name
|
1258
|
+
when "stream:stream"
|
1259
|
+
openstream = ParsedXMLElement.new(name)
|
1260
|
+
data.each {|key, value| openstream.add_attribute(key, value)}
|
1261
|
+
@listener.receive(openstream)
|
1262
|
+
@started = true
|
1263
|
+
else
|
1264
|
+
if @current.nil?
|
1265
|
+
@current = ParsedXMLElement.new(name.clone)
|
1266
|
+
else
|
1267
|
+
@current = @current.add_child(name.clone)
|
1268
|
+
end
|
1269
|
+
data.each {|key, value| @current.add_attribute(key.clone, value.clone)}
|
1270
|
+
end
|
1271
|
+
when XMLParser::CDATA
|
1272
|
+
@current.append_data(data.clone) if @current
|
1273
|
+
when XMLParser::END_ELEM
|
1274
|
+
case name
|
1275
|
+
when "stream:stream"
|
1276
|
+
@started = false
|
1277
|
+
else
|
1278
|
+
@listener.receive(@current) unless @current.element_parent
|
1279
|
+
@current = @current.element_parent
|
1280
|
+
end
|
1281
|
+
end
|
1282
|
+
rescue
|
1283
|
+
puts "Error #{$!}"
|
1284
|
+
end
|
1285
|
+
end
|
1286
|
+
rescue XMLParserError
|
1287
|
+
line = parser.line
|
1288
|
+
print "XML Parsing error(#{line}): #{$!}\n"
|
1289
|
+
end
|
1290
|
+
end
|
1291
|
+
end
|
1292
|
+
else # USE REXML
|
1293
|
+
require 'rexml/document'
|
1294
|
+
require 'rexml/parsers/sax2parser'
|
1295
|
+
require 'rexml/source'
|
1296
|
+
|
1297
|
+
##
|
1298
|
+
# The REXMLJabberParser uses REXML to parse the incoming XML stream
|
1299
|
+
# of the Jabber protocol and fires ParsedXMLElements at the Connection
|
1300
|
+
# instance.
|
1301
|
+
#
|
1302
|
+
class REXMLJabberParser
|
1303
|
+
# status if the parser is started
|
1304
|
+
attr_reader :started
|
1305
|
+
|
1306
|
+
##
|
1307
|
+
# Constructs a parser for the supplied stream (socket input)
|
1308
|
+
#
|
1309
|
+
# stream:: [IO] Socket input stream
|
1310
|
+
# listener:: [Object.receive(ParsedXMLElement)] The listener (usually a Jabber::Protocol::Connection instance
|
1311
|
+
#
|
1312
|
+
def initialize(stream, listener)
|
1313
|
+
@stream = stream
|
1314
|
+
|
1315
|
+
# this hack fixes REXML version "2.7.3" and "2.7.4"
|
1316
|
+
if REXML::Version=="2.7.3" || REXML::Version=="2.7.4"
|
1317
|
+
def @stream.read(len=nil)
|
1318
|
+
len = 100 unless len
|
1319
|
+
super(len)
|
1320
|
+
end
|
1321
|
+
def @stream.gets(char=nil)
|
1322
|
+
super(">")
|
1323
|
+
end
|
1324
|
+
def @stream.readline(char=nil)
|
1325
|
+
super(">")
|
1326
|
+
end
|
1327
|
+
def @stream.readlines(char=nil)
|
1328
|
+
super(">")
|
1329
|
+
end
|
1330
|
+
end
|
1331
|
+
|
1332
|
+
@listener = listener
|
1333
|
+
@current = nil
|
1334
|
+
end
|
1335
|
+
|
1336
|
+
##
|
1337
|
+
# Begins parsing the XML stream and does not return until
|
1338
|
+
# the stream closes.
|
1339
|
+
#
|
1340
|
+
def parse
|
1341
|
+
@started = false
|
1342
|
+
begin
|
1343
|
+
parser = REXML::Parsers::SAX2Parser.new @stream
|
1344
|
+
parser.listen( :start_element ) do |uri, localname, qname, attributes|
|
1345
|
+
case qname
|
1346
|
+
when "stream:stream"
|
1347
|
+
openstream = ParsedXMLElement.new(qname)
|
1348
|
+
attributes.each { |attr, value| openstream.add_attribute(attr, value) }
|
1349
|
+
@listener.receive(openstream)
|
1350
|
+
@started = true
|
1351
|
+
else
|
1352
|
+
if @current.nil?
|
1353
|
+
@current = ParsedXMLElement.new(qname)
|
1354
|
+
else
|
1355
|
+
@current = @current.add_child(qname)
|
1356
|
+
end
|
1357
|
+
attributes.each { |attr, value| @current.add_attribute(attr, value) }
|
1358
|
+
end
|
1359
|
+
end
|
1360
|
+
parser.listen( :end_element ) do |uri, localname, qname|
|
1361
|
+
case qname
|
1362
|
+
when "stream:stream"
|
1363
|
+
@started = false
|
1364
|
+
else
|
1365
|
+
@listener.receive(@current) unless @current.element_parent
|
1366
|
+
@current = @current.element_parent
|
1367
|
+
end
|
1368
|
+
end
|
1369
|
+
parser.listen( :characters ) do | text |
|
1370
|
+
@current.append_data(text) if @current
|
1371
|
+
end
|
1372
|
+
parser.listen( :cdata ) do | text |
|
1373
|
+
@current.append_data(text) if @current
|
1374
|
+
end
|
1375
|
+
parser.parse
|
1376
|
+
rescue REXML::ParseException
|
1377
|
+
@listener.parse_failure
|
1378
|
+
end
|
1379
|
+
end
|
1380
|
+
end
|
1381
|
+
end # USE_PARSER
|
1382
|
+
end
|
1383
|
+
end
|
1384
|
+
|