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,16 @@
|
|
1
|
+
if RUBY_VERSION=="1.8.0"
|
2
|
+
module REXML
|
3
|
+
module Parsers
|
4
|
+
class BaseParser
|
5
|
+
# Returns true if there are more events. Synonymous with !empty?
|
6
|
+
def has_next?
|
7
|
+
return true if @closed # THIS WAS ADDED TO FIX PROBLEM
|
8
|
+
@source.read if @source.buffer.size==0 and !@source.empty?
|
9
|
+
(!@source.empty? and @source.buffer.strip.size>0) or @stack.size>0 or @closed
|
10
|
+
end
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
14
|
+
else
|
15
|
+
puts "WARNING: rexml_1.8_patch is needed on Ruby 1.8.0 and not by Ruby #{RUBY_VERSION}"
|
16
|
+
end
|
@@ -0,0 +1,322 @@
|
|
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
|
+
module Jabber
|
8
|
+
|
9
|
+
##
|
10
|
+
# The Roster class encapsulates the runtime roster of the session instance.
|
11
|
+
# The Roster contains all subscriptions in a Jabber::Roster::RosterItem hash.
|
12
|
+
#
|
13
|
+
class Roster
|
14
|
+
ITEM_ADDED=1
|
15
|
+
ITEM_DELETED=2
|
16
|
+
RESOURCE_ADDED=4
|
17
|
+
RESOURCE_UPDATED=8
|
18
|
+
RESOURCE_DELETED=16
|
19
|
+
|
20
|
+
# The Jabber::Session instance
|
21
|
+
attr_reader :session
|
22
|
+
|
23
|
+
##
|
24
|
+
# Creates a Roster for the session
|
25
|
+
#
|
26
|
+
# session:: [Jabber::Session] The session instance
|
27
|
+
#
|
28
|
+
def initialize(session)
|
29
|
+
@session = session
|
30
|
+
@map = {}
|
31
|
+
@listeners = {}
|
32
|
+
end
|
33
|
+
|
34
|
+
##
|
35
|
+
# The RosterItem class embodies another Jabber user's status (from
|
36
|
+
# the local user's perspective). RosterItems contain
|
37
|
+
# Jabber::Roster::RosterItem::Resource objects for each resource
|
38
|
+
# location a foreign user is accessing through.
|
39
|
+
#
|
40
|
+
class RosterItem
|
41
|
+
# The Jabber::Roster instance
|
42
|
+
attr_reader :roster
|
43
|
+
|
44
|
+
# The Jabber ID (Jabber::JID)
|
45
|
+
attr_accessor :jid
|
46
|
+
|
47
|
+
# The subscription type
|
48
|
+
attr_accessor :subscription
|
49
|
+
|
50
|
+
# The (nick)name of this account
|
51
|
+
attr_accessor :name
|
52
|
+
|
53
|
+
# The group name for this account
|
54
|
+
attr_accessor :group
|
55
|
+
|
56
|
+
##
|
57
|
+
# Constructs a RosterItem
|
58
|
+
#
|
59
|
+
# roster:: [Jabber::Roster] The roster instance
|
60
|
+
# subscription:: [String] The subscription type
|
61
|
+
# name:: [String] The (nick)name
|
62
|
+
# group:: [String=nil] The group this account belongs to
|
63
|
+
#
|
64
|
+
def initialize(roster, jid, subscription, name, group=nil)
|
65
|
+
@jid = jid
|
66
|
+
@subscription = subscription
|
67
|
+
@name = name
|
68
|
+
@group = group if group
|
69
|
+
@resources = {}
|
70
|
+
@roster = roster
|
71
|
+
end
|
72
|
+
|
73
|
+
##
|
74
|
+
# The Resource class embodies a Resource endpoint in Jabber.
|
75
|
+
# The resource endpoint it what maintains a status (not an account).
|
76
|
+
#
|
77
|
+
class Resource
|
78
|
+
|
79
|
+
# The name of the resource
|
80
|
+
attr_reader :name
|
81
|
+
|
82
|
+
# How the resource should be shown
|
83
|
+
attr_reader :show
|
84
|
+
|
85
|
+
# The status message of the resource
|
86
|
+
attr_reader :status
|
87
|
+
|
88
|
+
##
|
89
|
+
# Constructs a new Resource instance
|
90
|
+
#
|
91
|
+
# item:: [Jabber::Roster::RosterItem] The roster item this resource belongs to
|
92
|
+
# name:: [String] The resource name
|
93
|
+
# show:: [String] How the resource should be shown
|
94
|
+
# status:: [String] The status message of the resource
|
95
|
+
#
|
96
|
+
def initialize(item, name, show, status)
|
97
|
+
@item = item
|
98
|
+
@name = name
|
99
|
+
@show = show
|
100
|
+
@status = status
|
101
|
+
end
|
102
|
+
|
103
|
+
##
|
104
|
+
# Updates the state of a resource and notifies listeners.
|
105
|
+
#
|
106
|
+
# show:: [String] How the resource should be shown
|
107
|
+
# status:: [String] The status message of the resource
|
108
|
+
#
|
109
|
+
def update(show, status)
|
110
|
+
@show = show
|
111
|
+
@status = status
|
112
|
+
@item.roster.notify_listeners(RESOURCE_UPDATED, self)
|
113
|
+
end
|
114
|
+
|
115
|
+
##
|
116
|
+
# Dumps the Resource as a string
|
117
|
+
#
|
118
|
+
# return:: [String] The resource encoded as a string.
|
119
|
+
#
|
120
|
+
def to_s
|
121
|
+
"RESOURCE:#{@name} SHOW:#{@show} STATUS:#{@status}"
|
122
|
+
end
|
123
|
+
end
|
124
|
+
|
125
|
+
##
|
126
|
+
# Retrieves the VCard for this (RosterItem) account. This method
|
127
|
+
# blocks until the the vcard is returned.
|
128
|
+
#
|
129
|
+
# return:: [Jabber::VCard] The VCard object for this account
|
130
|
+
#
|
131
|
+
def get_vcard
|
132
|
+
ct = Thread.current
|
133
|
+
queryID = @roster.session.id
|
134
|
+
result = nil
|
135
|
+
@roster.session.connection.send(Jabber::Protocol::Iq.gen_vcard(self, queryID, jid)) { |je|
|
136
|
+
if je.element_tag == "iq" and je.attr_type=="result" and je.attr_id == queryID
|
137
|
+
je.consume_element
|
138
|
+
result = Jabber::VCard.from_element(je.VCARD)
|
139
|
+
ct.wakeup
|
140
|
+
else
|
141
|
+
end
|
142
|
+
}
|
143
|
+
Thread.stop
|
144
|
+
return result
|
145
|
+
end
|
146
|
+
|
147
|
+
##
|
148
|
+
# Adds a new resource to the Roster item and notifies listeners
|
149
|
+
#
|
150
|
+
# resourceName:: [String] The name of the resource
|
151
|
+
# show:: [String] How the resource is to be viewed
|
152
|
+
# status:: [String] The status message
|
153
|
+
# return:: [Jabber::Roster:RosterItem::Resource] The new Resource instance
|
154
|
+
#
|
155
|
+
def add(resourceName, show, status)
|
156
|
+
resource = Resource.new(self, resourceName, show, status)
|
157
|
+
@resources[resourceName] = resource
|
158
|
+
@roster.notify_listeners(RESOURCE_ADDED, resource)
|
159
|
+
resource
|
160
|
+
end
|
161
|
+
|
162
|
+
##
|
163
|
+
# Deletes a resource from this roster item and notifies listeners
|
164
|
+
#
|
165
|
+
# resourceName:: [String] The name of the resource
|
166
|
+
# return:: [Jabber::Roster:RosterItem::Resource] The deleted Resource
|
167
|
+
#
|
168
|
+
def delete(resourceName)
|
169
|
+
resource = @resources.delete(resourceName)
|
170
|
+
@roster.notify_listeners(RESOURCE_DELETED, resource) if resource
|
171
|
+
resource
|
172
|
+
end
|
173
|
+
|
174
|
+
##
|
175
|
+
# Retrieves a resource object
|
176
|
+
#
|
177
|
+
# resourceName:: [String] The name of the resource
|
178
|
+
# return:: [Jabber::Roster:RosterItem::Resource] The Resource instance
|
179
|
+
#
|
180
|
+
def [](resourceName)
|
181
|
+
return @resources[resourceName]
|
182
|
+
end
|
183
|
+
|
184
|
+
##
|
185
|
+
# Iterates over the list of available resources
|
186
|
+
#
|
187
|
+
# yield:: |Jabber::Roster:RosterItem::Resource| The resource instance
|
188
|
+
#
|
189
|
+
def each_resource
|
190
|
+
@resources.each_value {|resource| yield resource}
|
191
|
+
end
|
192
|
+
|
193
|
+
##
|
194
|
+
# Dumps the roster item
|
195
|
+
#
|
196
|
+
# return:: [String] The roster item dumped as a String
|
197
|
+
def to_s
|
198
|
+
"ITEM:#{@jid.to_s} SUBSCRIPTION:#{@subscription} NAME:#{@name} GROUP:#{@group}"
|
199
|
+
end
|
200
|
+
end
|
201
|
+
|
202
|
+
##
|
203
|
+
# Adds a listener to the roster to process roster changes
|
204
|
+
#
|
205
|
+
# &block:: [Block |event, rosteritem|] The block to process roster changes
|
206
|
+
# return:: [String] The listener id to use to deregister
|
207
|
+
#
|
208
|
+
def add_listener(&block)
|
209
|
+
id = Jabber.gen_random_id("", 10)
|
210
|
+
@listeners[id]=block if block
|
211
|
+
return id
|
212
|
+
end
|
213
|
+
|
214
|
+
##
|
215
|
+
# Deletes a listener for processing roster messages
|
216
|
+
#
|
217
|
+
# id:: [String] A listener id (given by add_listener)
|
218
|
+
#
|
219
|
+
def delete_listener(id)
|
220
|
+
@listeners.delete(id)
|
221
|
+
end
|
222
|
+
|
223
|
+
##
|
224
|
+
# Adds a subscription to be tracked in the Roster
|
225
|
+
#
|
226
|
+
# jid:: [JID | String] The Jabber ID
|
227
|
+
# subscription:: [String] The subscription type (both)
|
228
|
+
# name:: [String] The nickname
|
229
|
+
# group:: [String = nil] The name of the group of the roster item.
|
230
|
+
#
|
231
|
+
def add(jid, subscription, name, group=nil)
|
232
|
+
if jid.kind_of? String
|
233
|
+
jid = JID.new(jid)
|
234
|
+
jid.strip_resource
|
235
|
+
elsif jid.kind_of? JID
|
236
|
+
jid = JID.new(jid.node+"@"+jid.host)
|
237
|
+
else
|
238
|
+
return
|
239
|
+
end
|
240
|
+
begin
|
241
|
+
item = RosterItem.new(self, jid, subscription, name, group)
|
242
|
+
@map[jid.to_s] = item
|
243
|
+
notify_listeners(ITEM_ADDED, item)
|
244
|
+
rescue => ex
|
245
|
+
puts ex.backtrace.join("\n")
|
246
|
+
end
|
247
|
+
end
|
248
|
+
|
249
|
+
##
|
250
|
+
# Returns a Jabber::Roster::RosterItem based on the JID
|
251
|
+
#
|
252
|
+
# jid:: [Jabber::JID | String] The Jabber ID
|
253
|
+
# return:: [Jabber::Roster::RosterItem] The roster item
|
254
|
+
#
|
255
|
+
def [](jid)
|
256
|
+
if jid.kind_of? String
|
257
|
+
jid = JID.new(jid)
|
258
|
+
jid.strip_resource
|
259
|
+
elsif jid.kind_of? JID
|
260
|
+
jid = JID.new(jid.node+"@"+jid.host)
|
261
|
+
else
|
262
|
+
return
|
263
|
+
end
|
264
|
+
return @map[jid.to_s]
|
265
|
+
end
|
266
|
+
|
267
|
+
##
|
268
|
+
# Deletes a roster item based on the supplied Jabber ID
|
269
|
+
#
|
270
|
+
# jid:: [Jabber::JID | String]
|
271
|
+
#
|
272
|
+
def delete(jid)
|
273
|
+
if jid.kind_of? String
|
274
|
+
jid = JID.new(jid)
|
275
|
+
jid.strip_resource
|
276
|
+
elsif jid.kind_of? JID
|
277
|
+
jid = JID.new(jid.node+"@"+jid.host)
|
278
|
+
else
|
279
|
+
return
|
280
|
+
end
|
281
|
+
item = @map.delete(jid.to_s)
|
282
|
+
notify_listeners(ITEM_DELETED, item) if item
|
283
|
+
item
|
284
|
+
end
|
285
|
+
|
286
|
+
##
|
287
|
+
# Iterates over each RosterItem
|
288
|
+
#
|
289
|
+
# yield:: [Jabber::Roster::RosterItem] The roster item.
|
290
|
+
#
|
291
|
+
def each_item
|
292
|
+
@map.each_value {|item| yield item}
|
293
|
+
end
|
294
|
+
|
295
|
+
##
|
296
|
+
# Dumps the Roster state as a string
|
297
|
+
#
|
298
|
+
# return:: [String] The roster state
|
299
|
+
#
|
300
|
+
def to_s
|
301
|
+
result = "ROSTER DUMP\n"
|
302
|
+
each_item do |item|
|
303
|
+
result += (item.to_s+"\n")
|
304
|
+
item.each_resource {|resource| result+= " #{resource.to_s}\n"}
|
305
|
+
end
|
306
|
+
return result
|
307
|
+
end
|
308
|
+
|
309
|
+
##
|
310
|
+
# Notifies listeners of a roster change event
|
311
|
+
#
|
312
|
+
# event:: [Integer] The roster event
|
313
|
+
# object:: [RosterItem] The modified item
|
314
|
+
#
|
315
|
+
def notify_listeners(event, object)
|
316
|
+
@listeners.each_value {|listener| listener.call(event, object)}
|
317
|
+
end
|
318
|
+
|
319
|
+
end
|
320
|
+
|
321
|
+
end
|
322
|
+
|
@@ -0,0 +1,615 @@
|
|
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
|
+
module Jabber
|
8
|
+
HEX = "0123456789abcdef"
|
9
|
+
|
10
|
+
##
|
11
|
+
# Generates a random hex string in the following format:
|
12
|
+
# JRR_01234567
|
13
|
+
#
|
14
|
+
# return:: [String] The resource id
|
15
|
+
#
|
16
|
+
def Jabber.gen_random_resource
|
17
|
+
return Jabber.gen_random_id("JRR_", 8)
|
18
|
+
end
|
19
|
+
|
20
|
+
##
|
21
|
+
# Generates a random thread as a hex string in the following format:
|
22
|
+
# JRT_01234567890123456789
|
23
|
+
#
|
24
|
+
# return:: [String] The thread id
|
25
|
+
#
|
26
|
+
def Jabber.gen_random_thread
|
27
|
+
return Jabber.gen_random_id("JRT_", 20)
|
28
|
+
end
|
29
|
+
|
30
|
+
##
|
31
|
+
# Generates a random id as a hex string
|
32
|
+
#
|
33
|
+
# prefix:: [String="Jabber4R_] The prefix for the random hex data
|
34
|
+
# length:: [Integer=16] The number of hex characters
|
35
|
+
# return:: [String] The random id
|
36
|
+
#
|
37
|
+
def Jabber.gen_random_id(prefix="Jabber4R_", length=16)
|
38
|
+
length.times {prefix += HEX[rand(16),1]}
|
39
|
+
prefix
|
40
|
+
end
|
41
|
+
|
42
|
+
class Subscription
|
43
|
+
attr_accessor :type, :from, :id, :session
|
44
|
+
def initialize(session, type, from, id)
|
45
|
+
@session = session
|
46
|
+
@type = type
|
47
|
+
@from = from
|
48
|
+
@id = id
|
49
|
+
end
|
50
|
+
def accept
|
51
|
+
case type
|
52
|
+
when :subscribe
|
53
|
+
@session.connection.send(Jabber::Protocol::Presence.gen_accept_subscription(@id, @from))
|
54
|
+
when :unsubscribe
|
55
|
+
@session.connection.send(Jabber::Protocol::Presence.gen_accept_unsubscription(@id, @from))
|
56
|
+
else
|
57
|
+
raise "Cannot accept a subscription of type #{type.to_s}"
|
58
|
+
end
|
59
|
+
end
|
60
|
+
end
|
61
|
+
|
62
|
+
##
|
63
|
+
# This is a base class for subscription handlers
|
64
|
+
|
65
|
+
class SubscriptionHandler
|
66
|
+
def subscribe(subscription)
|
67
|
+
end
|
68
|
+
|
69
|
+
def subscribed(subscription)
|
70
|
+
end
|
71
|
+
|
72
|
+
def unsubscribe(subscription)
|
73
|
+
end
|
74
|
+
|
75
|
+
def unsubscribed(subscription)
|
76
|
+
end
|
77
|
+
end
|
78
|
+
|
79
|
+
class AutoSubscriptionHandler < SubscriptionHandler
|
80
|
+
|
81
|
+
def subscribe(subscription)
|
82
|
+
subscription.accept
|
83
|
+
end
|
84
|
+
|
85
|
+
def unsubscribe(subscription)
|
86
|
+
subscription.accept
|
87
|
+
end
|
88
|
+
end
|
89
|
+
|
90
|
+
|
91
|
+
##
|
92
|
+
# The Jabber Session is the main class for dealing with a Jabber service.
|
93
|
+
#
|
94
|
+
class Session
|
95
|
+
|
96
|
+
# The host this session is connected to
|
97
|
+
attr_reader :host
|
98
|
+
|
99
|
+
# The port (defaults to 5222) that this session is connected to
|
100
|
+
attr_reader :port
|
101
|
+
|
102
|
+
# The Jabber::Protocol::Connection instance
|
103
|
+
attr_reader :connection
|
104
|
+
|
105
|
+
# The Jabber::Roster instance
|
106
|
+
attr_reader :roster
|
107
|
+
|
108
|
+
# The session id sent from the Jabber service upon connection
|
109
|
+
attr_reader :session_id
|
110
|
+
|
111
|
+
# The Jabber::JID of the current session
|
112
|
+
attr_reader :jid
|
113
|
+
|
114
|
+
# The username to use for authenticating this session
|
115
|
+
attr_accessor :username
|
116
|
+
|
117
|
+
# The password to use for authenticating this session
|
118
|
+
attr_accessor :password
|
119
|
+
|
120
|
+
# The resource id for this session
|
121
|
+
attr_accessor :resource
|
122
|
+
|
123
|
+
# The iq handlers for this session
|
124
|
+
attr_accessor :iqHandlers
|
125
|
+
|
126
|
+
##
|
127
|
+
# Session creation factory that creates a session, logs in,
|
128
|
+
# requests the roster, registers message and presence filters
|
129
|
+
# and announces initial presence. Login is done via plaintext
|
130
|
+
# password authentication.
|
131
|
+
#
|
132
|
+
# jid:: [String | JID] The account information ("account@host/resouce")
|
133
|
+
# password:: [String] The account password
|
134
|
+
# port:: [Integer = 5222] The host port
|
135
|
+
# digest:: [Boolean = false] Use digest authentication?
|
136
|
+
# return:: [Jabber::Session] The new session
|
137
|
+
#
|
138
|
+
def Session.bind(jid, password, port=5222, digest=false)
|
139
|
+
jid = Jabber::JID.new(jid) if jid.kind_of? String
|
140
|
+
session = Session.new(jid.host, port)
|
141
|
+
raise "Authentication failed" unless session.authenticate(jid.node, password, jid.resource, digest)
|
142
|
+
session.request_roster
|
143
|
+
session.register_message_filter
|
144
|
+
session.register_presence_filter
|
145
|
+
session.register_iq_filter
|
146
|
+
session.announce_initial_presence
|
147
|
+
session
|
148
|
+
end
|
149
|
+
|
150
|
+
##
|
151
|
+
# Account registration method
|
152
|
+
#
|
153
|
+
def Session.register(jid, password, email="", name="", port=5222)
|
154
|
+
jid = Jabber::JID.new(jid) if jid.kind_of? String
|
155
|
+
session = Session.new(jid.host, port)
|
156
|
+
msg_id = session.id
|
157
|
+
registered = false
|
158
|
+
current = Thread.current
|
159
|
+
session.connection.send(Jabber::Protocol::Iq.gen_registration(session, msg_id, jid.node, password, email, name)) do |element|
|
160
|
+
if element.element_tag=="iq" and element.attr_id==msg_id
|
161
|
+
element.consume_element
|
162
|
+
if element.attr_type=="result"
|
163
|
+
registered = true
|
164
|
+
elsif element.attr_type=="error"
|
165
|
+
registered = false
|
166
|
+
end
|
167
|
+
current.wakeup
|
168
|
+
end
|
169
|
+
end
|
170
|
+
Thread.stop
|
171
|
+
session.release
|
172
|
+
return registered
|
173
|
+
end
|
174
|
+
|
175
|
+
##
|
176
|
+
# Session creation factory that creates a session, logs in,
|
177
|
+
# requests the roster, registers message and presence filters
|
178
|
+
# and announces initial presence. Login is done via digest (SHA)
|
179
|
+
# password authentication.
|
180
|
+
#
|
181
|
+
# jid:: [String | JID] The account information ("account@host/resouce")
|
182
|
+
# password:: [String] The account password
|
183
|
+
# port:: [Integer = 5222] The host port
|
184
|
+
# return:: [Jabber::Session] The new session
|
185
|
+
#
|
186
|
+
def Session.bind_digest(jid, password, port=5222)
|
187
|
+
Session.bind(jid, password, port, true)
|
188
|
+
end
|
189
|
+
|
190
|
+
# Creates a new session connected to the supplied host and port.
|
191
|
+
# The method attempts to build a Jabber::Protocol::Connection
|
192
|
+
# object and send the open_stream XML message. It then blocks
|
193
|
+
# to recieve the coorisponding reply open_stream and sets the
|
194
|
+
# session_id from that xml element.
|
195
|
+
#
|
196
|
+
# host:: [String] The hostname of the Jabber service
|
197
|
+
# port:: [Integer=5222] The port of the Jabber service
|
198
|
+
# raise:: [RuntimeException] If connection fails
|
199
|
+
#
|
200
|
+
def initialize(host, port=5222)
|
201
|
+
@id = 1
|
202
|
+
@host = host
|
203
|
+
@port = port
|
204
|
+
@roster = Roster.new(self)
|
205
|
+
@messageListeners = Hash.new
|
206
|
+
@iqHandlers=Hash.new
|
207
|
+
@subscriptionHandler = nil
|
208
|
+
@connection = Jabber::Protocol::Connection.new(host, port)
|
209
|
+
@connection.connect
|
210
|
+
unless @connection.is_connected?
|
211
|
+
raise "Session Error: Could not connected to #{host}:#{port}"
|
212
|
+
else
|
213
|
+
@connection.send(Jabber::Protocol.gen_open_stream(host)) do |element|
|
214
|
+
if element.element_tag=="stream:stream"
|
215
|
+
element.consume_element
|
216
|
+
@session_id = element.attr_id
|
217
|
+
end
|
218
|
+
end
|
219
|
+
@connection.on_connection_exception do
|
220
|
+
if @session_failure_block
|
221
|
+
self.release
|
222
|
+
@session_failure_block.call
|
223
|
+
end
|
224
|
+
end
|
225
|
+
Thread.stop
|
226
|
+
end
|
227
|
+
end
|
228
|
+
|
229
|
+
##
|
230
|
+
# Set a handler for session exceptions that get caught in
|
231
|
+
# communicating with the Jabber server.
|
232
|
+
#
|
233
|
+
def on_session_failure(&block)
|
234
|
+
@session_failure_block = block
|
235
|
+
end
|
236
|
+
|
237
|
+
##
|
238
|
+
# Counter for message IDs
|
239
|
+
#
|
240
|
+
# return:: [String] A unique message id for this session
|
241
|
+
#
|
242
|
+
def id
|
243
|
+
@id = @id + 1
|
244
|
+
return @id.to_s
|
245
|
+
end
|
246
|
+
|
247
|
+
##
|
248
|
+
# Authenticate (logs into) this session with the supplied credentials.
|
249
|
+
# The method blocks waiting for a reply to the login message. Sets the
|
250
|
+
# authenticated attribute based on result.
|
251
|
+
#
|
252
|
+
# username:: [String] The username to use for authentication
|
253
|
+
# password:: [String] The password to use for authentication
|
254
|
+
# resource:: [String] The resource ID for this session
|
255
|
+
# digest:: [Boolean=false] True to use digest authentication (not sending password in the clear)
|
256
|
+
# return:: [Boolean] Whether the authentication succeeded or failed
|
257
|
+
#
|
258
|
+
def authenticate(username, password, resource, digest=false)
|
259
|
+
@username = username
|
260
|
+
@password = password
|
261
|
+
@resource = resource
|
262
|
+
@jid = JID.new("#{username}@#{@host}/#{resource}")
|
263
|
+
@roster.add(@jid, "both", "Me", "My Resources")
|
264
|
+
|
265
|
+
msg_id = self.id
|
266
|
+
authHandler = Proc.new do |element|
|
267
|
+
if element.element_tag=="iq" and element.attr_id==msg_id
|
268
|
+
element.consume_element
|
269
|
+
if element.attr_type=="result"
|
270
|
+
@authenticated = true
|
271
|
+
elsif element.attr_type=="error"
|
272
|
+
@authenticated = false
|
273
|
+
end
|
274
|
+
end
|
275
|
+
end
|
276
|
+
if digest
|
277
|
+
require 'digest/sha1'
|
278
|
+
authRequest = Jabber::Protocol::Iq.gen_auth_digest(self, msg_id, username, Digest::SHA1.new(@session_id + password).hexdigest, resource)
|
279
|
+
else
|
280
|
+
authRequest = Jabber::Protocol::Iq.gen_auth(self, msg_id, username, password, resource)
|
281
|
+
end
|
282
|
+
@connection.send(authRequest, &authHandler)
|
283
|
+
Thread.stop
|
284
|
+
return @authenticated
|
285
|
+
end
|
286
|
+
|
287
|
+
##
|
288
|
+
# Is this an authenticated session?
|
289
|
+
#
|
290
|
+
# return:: [Boolean] True if the session is authenticated
|
291
|
+
#
|
292
|
+
def is_authenticated?
|
293
|
+
return @authenticated
|
294
|
+
end
|
295
|
+
|
296
|
+
##
|
297
|
+
# Sends the initial presence message to the Jabber service
|
298
|
+
#
|
299
|
+
def announce_initial_presence
|
300
|
+
@connection.send(Jabber::Protocol::Presence.gen_initial(id))
|
301
|
+
end
|
302
|
+
|
303
|
+
##
|
304
|
+
# Sends an extended away presence message
|
305
|
+
#
|
306
|
+
# status:: [String] The status message
|
307
|
+
#
|
308
|
+
def announce_extended_away(status=nil)
|
309
|
+
@connection.send(Jabber::Protocol::Presence.gen_xa(id, status))
|
310
|
+
end
|
311
|
+
|
312
|
+
##
|
313
|
+
# Sends a free for chat presence message
|
314
|
+
#
|
315
|
+
# status:: [String] The status message
|
316
|
+
#
|
317
|
+
def announce_free_for_chat(status=nil)
|
318
|
+
@connection.send(Jabber::Protocol::Presence.gen_chat(id, status))
|
319
|
+
end
|
320
|
+
|
321
|
+
##
|
322
|
+
# Sends a 'normal' presence message
|
323
|
+
#
|
324
|
+
# status:: [String] The status message
|
325
|
+
#
|
326
|
+
def announce_normal(status=nil)
|
327
|
+
@connection.send(Jabber::Protocol::Presence.gen_normal(id, status))
|
328
|
+
end
|
329
|
+
|
330
|
+
##
|
331
|
+
# Sends an away from computer presence message
|
332
|
+
#
|
333
|
+
# status:: [String] The status message
|
334
|
+
#
|
335
|
+
def announce_away_from_computer(status=nil)
|
336
|
+
@connection.send(Jabber::Protocol::Presence.gen_away(id, status))
|
337
|
+
end
|
338
|
+
|
339
|
+
##
|
340
|
+
# Sends a do not disturb presence message
|
341
|
+
#
|
342
|
+
# status:: [String] The status message
|
343
|
+
#
|
344
|
+
def announce_do_not_disturb(status=nil)
|
345
|
+
@connection.send(Jabber::Protocol::Presence.gen_dnd(id, status))
|
346
|
+
end
|
347
|
+
|
348
|
+
##
|
349
|
+
# Sets the handler for subscription requests, notifications, etc.
|
350
|
+
#
|
351
|
+
def set_subscription_handler(handler=nil, &block)
|
352
|
+
@subscriptionHandler = handler.new(self) if handler
|
353
|
+
@subscriptionHandler = block if block_given? and !handler
|
354
|
+
end
|
355
|
+
|
356
|
+
def enable_autosubscription
|
357
|
+
set_subscription_handler AutoSubscriptionHandler
|
358
|
+
end
|
359
|
+
|
360
|
+
def subscribe(to, name="")
|
361
|
+
to = JID.to_jid(to)
|
362
|
+
roster_item = @roster[to]
|
363
|
+
|
364
|
+
if roster_item #if you already have a roster item just send the subscribe request
|
365
|
+
if roster_item.subscription=="to" or roster_item.subscription=="both"
|
366
|
+
return
|
367
|
+
end
|
368
|
+
@connection.send(Jabber::Protocol::Presence.gen_new_subscription(to))
|
369
|
+
return
|
370
|
+
end
|
371
|
+
myid = self.id
|
372
|
+
@connection.send(Jabber::Protocol::Iq.gen_add_rosteritem(self, myid, to, name)) do |element|
|
373
|
+
if element.attr_id==myid
|
374
|
+
element.consume_element
|
375
|
+
if element.attr_type=="result"
|
376
|
+
@connection.send(Jabber::Protocol::Presence.gen_new_subscription(to))
|
377
|
+
end
|
378
|
+
end
|
379
|
+
end
|
380
|
+
end
|
381
|
+
|
382
|
+
##
|
383
|
+
# Adds a filter to the Connection to manage tracking resources that come online/offline
|
384
|
+
#
|
385
|
+
def register_presence_filter
|
386
|
+
@connection.add_filter("presenceAvailableFilter") do |element|
|
387
|
+
if element.element_tag=="presence"
|
388
|
+
type = element.attr_type
|
389
|
+
type = nil if type.nil?
|
390
|
+
case type
|
391
|
+
when nil, "available"
|
392
|
+
element.consume_element
|
393
|
+
from = JID.new(element.attr_from)
|
394
|
+
rItem = @roster[from]
|
395
|
+
show = element.show.element_data
|
396
|
+
show = "chat" unless show
|
397
|
+
status = element.status.element_data
|
398
|
+
status = "" unless status
|
399
|
+
if rItem
|
400
|
+
resource = rItem[from.resource]
|
401
|
+
if resource
|
402
|
+
resource.update(show, status)
|
403
|
+
else
|
404
|
+
rItem.add(from.resource, show, status)
|
405
|
+
end
|
406
|
+
end
|
407
|
+
when "unavailable"
|
408
|
+
element.consume_element
|
409
|
+
from = JID.new(element.attr_from)
|
410
|
+
rItem = @roster[from]
|
411
|
+
resource = rItem.delete(from.resource) if rItem
|
412
|
+
when "subscribe", "unsubscribe", "subscribed", "unsubscribed"
|
413
|
+
element.consume_element
|
414
|
+
from = JID.new(element.attr_from)
|
415
|
+
break unless @subscriptionHandler
|
416
|
+
if @subscriptionHandler.kind_of? Proc
|
417
|
+
@subscriptionHandler.call(Subscription.new(self, type.intern, from, id))
|
418
|
+
else
|
419
|
+
@subscriptionHandler.send(Subscription.new(self, type.intern, from, id))
|
420
|
+
end
|
421
|
+
end
|
422
|
+
end #if presence
|
423
|
+
end #do
|
424
|
+
end
|
425
|
+
|
426
|
+
##
|
427
|
+
# Creates a new message to the supplied JID of type NORMAL
|
428
|
+
#
|
429
|
+
# to:: [Jabber::JID] Who to send the message to
|
430
|
+
# type:: [String = Jabber::Protocol::Message::NORMAL] The type of message to send (see Jabber::Protocol::Message)
|
431
|
+
# return:: [Jabber::Protocol::Message] The new message
|
432
|
+
#
|
433
|
+
def new_message(to, type=Jabber::Protocol::Message::NORMAL)
|
434
|
+
msg = Jabber::Protocol::Message.new(to, type)
|
435
|
+
msg.session=self
|
436
|
+
return msg
|
437
|
+
end
|
438
|
+
|
439
|
+
##
|
440
|
+
# Creates a new message addressed to the supplied JID of type CHAT
|
441
|
+
#
|
442
|
+
# to:: [JID] Who to send the message to
|
443
|
+
# return:: [Jabber::Protocol::Message] The new (chat) message
|
444
|
+
#
|
445
|
+
def new_chat_message(to)
|
446
|
+
self.new_message(to, Jabber::Protocol::Message::CHAT)
|
447
|
+
end
|
448
|
+
|
449
|
+
##
|
450
|
+
# Creates a new message addressed to the supplied JID of type GROUPCHAT
|
451
|
+
#
|
452
|
+
# to:: [JID] Who to send the message to
|
453
|
+
# return:: [Jabber::Protocol::Message] The new (group chat) message
|
454
|
+
#
|
455
|
+
def new_group_chat_message(to)
|
456
|
+
self.new_message(to, Jabber::Protocol::Message::GROUPCHAT)
|
457
|
+
end
|
458
|
+
|
459
|
+
##
|
460
|
+
# Adds a filter to the Connection to manage tracking messages to forward
|
461
|
+
# to registered message listeners.
|
462
|
+
#
|
463
|
+
def register_message_filter
|
464
|
+
@connection.add_filter("messageFilter") do |element|
|
465
|
+
if element.element_tag=="message" and @messageListeners.size > 0
|
466
|
+
element.consume_element
|
467
|
+
message = Jabber::Protocol::Message.from_element(self, element)
|
468
|
+
notify_message_listeners(message)
|
469
|
+
end #if message
|
470
|
+
end #do
|
471
|
+
end
|
472
|
+
|
473
|
+
##
|
474
|
+
# Add a listener for new messages
|
475
|
+
#
|
476
|
+
# Usage::
|
477
|
+
# id = session.add_message_listener do |message|
|
478
|
+
# puts message
|
479
|
+
# end
|
480
|
+
#
|
481
|
+
# &block [Block] The block to process a message
|
482
|
+
# return:: [String] The listener ID...used to remove the listener
|
483
|
+
#
|
484
|
+
def add_message_listener(&block)
|
485
|
+
id = Jabber.gen_random_id("", 10)
|
486
|
+
@messageListeners[id]=block if block
|
487
|
+
return id
|
488
|
+
end
|
489
|
+
|
490
|
+
##
|
491
|
+
# Deletes a message listener
|
492
|
+
#
|
493
|
+
# id:: [String] A messanger ID returned from add_message_listener
|
494
|
+
#
|
495
|
+
def delete_message_listener(lid)
|
496
|
+
@messageListeners.delete(lid)
|
497
|
+
end
|
498
|
+
|
499
|
+
#Cleanup methods
|
500
|
+
|
501
|
+
##
|
502
|
+
# Releases the connection and resets the session. The Session instance
|
503
|
+
# is no longer usable after this method is called
|
504
|
+
#
|
505
|
+
def release
|
506
|
+
begin
|
507
|
+
@connection.on_connection_exception do
|
508
|
+
#Do nothing...we are shutting down
|
509
|
+
end
|
510
|
+
@connection.send(Jabber::Protocol::Presence.gen_unavailable(id))
|
511
|
+
@connection.send(Jabber::Protocol.gen_close_stream)
|
512
|
+
rescue
|
513
|
+
#ignore error
|
514
|
+
end
|
515
|
+
begin
|
516
|
+
@connection.close
|
517
|
+
rescue
|
518
|
+
#ignore error
|
519
|
+
end
|
520
|
+
end
|
521
|
+
|
522
|
+
##
|
523
|
+
# Same as _release
|
524
|
+
#
|
525
|
+
def close
|
526
|
+
release
|
527
|
+
end
|
528
|
+
|
529
|
+
##
|
530
|
+
# Requests the Roster for the (authenticated) account. This method blocks
|
531
|
+
# until a reply to the roster request is received.
|
532
|
+
#
|
533
|
+
def request_roster
|
534
|
+
if @authenticated
|
535
|
+
msg_id = id
|
536
|
+
@connection.send(Jabber::Protocol::Iq.gen_roster(self, msg_id)) do |element|
|
537
|
+
if element.attr_id == msg_id
|
538
|
+
element.consume_element
|
539
|
+
element.query.item.count.times do |i|
|
540
|
+
item = element.query.item[i]
|
541
|
+
@roster.add(item.attr_jid, item.attr_subscription, item.attr_name, item.group.element_data)
|
542
|
+
end
|
543
|
+
end
|
544
|
+
end
|
545
|
+
Thread.stop
|
546
|
+
register_roster_filter
|
547
|
+
end
|
548
|
+
end
|
549
|
+
|
550
|
+
##
|
551
|
+
# Registers the roster filter with the Connection to forward IQ requests
|
552
|
+
# to the IQ listeners(they register by namespace)
|
553
|
+
#
|
554
|
+
def register_iq_filter()
|
555
|
+
@connection.add_filter("iqFilter") do |element|
|
556
|
+
if element.element_tag=="iq" then
|
557
|
+
element.consume_element
|
558
|
+
query=element.query
|
559
|
+
h=@iqHandlers[query.attr_xmlns]
|
560
|
+
h.call(Jabber::Protocol::Iq.from_element(self,element)) if h
|
561
|
+
end
|
562
|
+
end
|
563
|
+
end
|
564
|
+
|
565
|
+
|
566
|
+
##
|
567
|
+
# Registers the roster filter with the Connection to forward roster changes to
|
568
|
+
# the roster listeners.
|
569
|
+
#
|
570
|
+
def register_roster_filter
|
571
|
+
@connection.add_filter("rosterFilter") do |element|
|
572
|
+
if element.element_tag=="iq" and element.query.attr_xmlns=="jabber:iq:roster" and element.attr_type=="set"
|
573
|
+
element.consume_element
|
574
|
+
item = element.query.item
|
575
|
+
if item.attr_subscription=="remove" then
|
576
|
+
@roster.remove(item.attr_jid)
|
577
|
+
else
|
578
|
+
@roster.add(item.attr_jid, item.attr_subscription, item.attr_name, item.group.element_data)
|
579
|
+
end
|
580
|
+
end
|
581
|
+
end
|
582
|
+
end
|
583
|
+
|
584
|
+
##
|
585
|
+
# Registers a listener for roster events
|
586
|
+
#
|
587
|
+
# &block:: [Block] The listener block to process roster changes
|
588
|
+
# return:: [String] A roster ID to use when removing this listener
|
589
|
+
#
|
590
|
+
def add_roster_listener(&block)
|
591
|
+
roster.add_listener(&block)
|
592
|
+
end
|
593
|
+
|
594
|
+
##
|
595
|
+
# Deletes the roster listener
|
596
|
+
#
|
597
|
+
# id:: [String] A roster ID received from the add_roster_listener method
|
598
|
+
#
|
599
|
+
def delete_roster_listener(id)
|
600
|
+
roster.delete_listener(id)
|
601
|
+
end
|
602
|
+
|
603
|
+
##
|
604
|
+
# Notifies message listeners of the received message
|
605
|
+
#
|
606
|
+
# message:: [Jabber::Protocol::Message] The received message
|
607
|
+
#
|
608
|
+
def notify_message_listeners(message)
|
609
|
+
@messageListeners.each_value {|listener| listener.call(message)}
|
610
|
+
end
|
611
|
+
|
612
|
+
end
|
613
|
+
|
614
|
+
end
|
615
|
+
|